diff options
Diffstat (limited to 'Scripts/init.lua')
-rw-r--r-- | Scripts/init.lua | 4 |
1 files changed, 2 insertions, 2 deletions
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 |