summaryrefslogtreecommitdiff
path: root/src/controllers/fish.moon
diff options
context:
space:
mode:
authorAlexander M Pickering <alex@cogarr.net>2025-01-26 15:12:19 -0600
committerAlexander M Pickering <alex@cogarr.net>2025-01-26 15:12:19 -0600
commit5846a4fea8d6a993466a792977128d21a18587bc (patch)
treef1c53d194fc11af1f354be91a78472bdf467175c /src/controllers/fish.moon
parentc39ff632b46c179709101c5b50a061ebd723689f (diff)
downloadggj25-5846a4fea8d6a993466a792977128d21a18587bc.tar.gz
ggj25-5846a4fea8d6a993466a792977128d21a18587bc.tar.bz2
ggj25-5846a4fea8d6a993466a792977128d21a18587bc.zip
Actual final commit
Diffstat (limited to 'src/controllers/fish.moon')
-rw-r--r--src/controllers/fish.moon4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/controllers/fish.moon b/src/controllers/fish.moon
index 3c829f3..dc3b1e9 100644
--- a/src/controllers/fish.moon
+++ b/src/controllers/fish.moon
@@ -7,7 +7,7 @@ controller = {}
class FishControllerComponent extends ecs.Component
new: () =>
- print("Fish controller started")
+ --print("Fish controller started")
@node = am.group!
join: (entity) =>
super(entity)
@@ -74,6 +74,6 @@ class FishControllerComponent extends ecs.Component
@net.properties.next_loc_time = world.sync_time!
--@net.properties.next_loc = @net.properties.pos + vec2(0,1)
--@net.properties.next_loc_time = world.sync_time!
- print("Picking next location, it was ", @net.properties.next_loc)
+ --print("Picking next location, it was ", @net.properties.next_loc)
{:FishControllerComponent}