aboutsummaryrefslogtreecommitdiffstats
path: root/Scripts/init.lua
diff options
context:
space:
mode:
authorAndy Belle-Isle <drumsetmonkey@gmail.com>2019-09-07 01:15:19 -0400
committerAndy Belle-Isle <drumsetmonkey@gmail.com>2019-09-07 01:15:19 -0400
commit9037f0ae5aab24641caa299a4743b03e0094bdbb (patch)
treea0bf628c2d2bf697bd652816bb4df4d517c5e021 /Scripts/init.lua
parentdfb62a419e0c283131f9627f23b6eb42aa28290c (diff)
Player init script can now allow the player to jump
Diffstat (limited to 'Scripts/init.lua')
-rw-r--r--Scripts/init.lua8
1 files changed, 8 insertions, 0 deletions
diff --git a/Scripts/init.lua b/Scripts/init.lua
index 6f510c1..1292ba1 100644
--- a/Scripts/init.lua
+++ b/Scripts/init.lua
@@ -14,6 +14,13 @@ bird = {
end,
MoveRightReleased = function(self)
self.Velocity.x = self.Velocity.x - 100
+ end,
+ JumpKeyPressed = function(self)
+ if self.Physics.standing == true then
+ self.Velocity.y = self.Velocity.y + 210
+ end
+ end,
+ JumpKeyReleased = function(self)
end
},
Position = {
@@ -24,6 +31,7 @@ bird = {
x = 0.0,
y = 0.0
},
+ Physics = 0,
Name = "bord",
hellotrue = true,
hellofalse = false,