Diffstat (limited to 'dots/dot_extras/dotcollider.gd')
| -rw-r--r-- | dots/dot_extras/dotcollider.gd | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/dots/dot_extras/dotcollider.gd b/dots/dot_extras/dotcollider.gd new file mode 100644 index 0000000..bd3c227 --- /dev/null +++ b/dots/dot_extras/dotcollider.gd @@ -0,0 +1,7 @@ +extends CollisionShape2D + +func move_ray(position): + $dotray.global_position = position + +func get_ray(): + return $dotray |