From e9758416b18b27a65337c28d9641afc0ee89b34b Mon Sep 17 00:00:00 2001 From: Andy Belle-Isle Date: Thu, 29 Aug 2019 01:39:40 -0400 Subject: Created (very messy) script system --- Scripts/init.lua | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'Scripts') diff --git a/Scripts/init.lua b/Scripts/init.lua index 20ea044..5b0f915 100644 --- a/Scripts/init.lua +++ b/Scripts/init.lua @@ -24,5 +24,19 @@ bird = { end } +dog = { + Position = { + x = 6.5, + y = 1.3 + }, + init = function(self) + print(self.Position.x .. "," .. self.Position.y) + end +} + birdSpawn = game.spawn(bird); birdSpawn:init() + +dogSpawn = game.spawn(dog); +dogSpawn:init() +dogSpawn.Position.x = 37.5 -- cgit v1.2.3