diff options
author | tcsullivan <tullivan99@gmail.com> | 2019-09-01 12:56:49 -0400 |
---|---|---|
committer | tcsullivan <tullivan99@gmail.com> | 2019-09-01 12:56:49 -0400 |
commit | e7fee98e0ee15665b40b383baf925356bb81f20d (patch) | |
tree | 1542a5d0af9fb33d4477d62f07f2c9b8c037d49c /Scripts | |
parent | 86e07cc6860b01c1569645e858ea8e9235d5194e (diff) |
added player system; player moves left and right
Diffstat (limited to 'Scripts')
-rw-r--r-- | Scripts/init.lua | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Scripts/init.lua b/Scripts/init.lua index a590ca2..59920c1 100644 --- a/Scripts/init.lua +++ b/Scripts/init.lua @@ -1,8 +1,13 @@ bird = { + Player = 0, Position = { x = 150, y = 75 }, + Velocity = { + x = 0.0, + y = 0.0 + }, Name = "bord", Init = function(self) print(self.Position.x .. "," .. self.Position.y) |