From b52920a35eb69d1a258c737e3114fbe5cfe9aca5 Mon Sep 17 00:00:00 2001 From: Andy Belle-Isle Date: Mon, 2 Sep 2019 01:42:36 -0400 Subject: Changed Lua Idle function names --- Scripts/init.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Scripts/init.lua') diff --git a/Scripts/init.lua b/Scripts/init.lua index 26b2aa7..4a874b2 100644 --- a/Scripts/init.lua +++ b/Scripts/init.lua @@ -26,7 +26,7 @@ bird = { --end --self.visibleTick = self.visibleTick + 1 end, - Update = function(self) + PhysicsIdle = function(self) if self.Velocity.x < 0 then self.Render.flipx = true elseif self.Velocity.x > 0 then @@ -56,7 +56,7 @@ cat = { self.Velocity.y = 100 * math.cos(math.rad(self.counter)); self.counter = self.counter + 5; end, - Update = function(self) + PhysicsIdle = function(self) if self.Velocity.x < 0 then self.Render.flipx = true elseif self.Velocity.x > 0 then -- cgit v1.2.3