From 7b63e52b38d131ee44eb341f22d3d39f37979507 Mon Sep 17 00:00:00 2001 From: Andy Belle-Isle Date: Sat, 31 Aug 2019 03:17:16 -0400 Subject: Upon spawning, automatically call Entity Init function if it exists --- Scripts/init.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Scripts') diff --git a/Scripts/init.lua b/Scripts/init.lua index f92e366..596fe38 100644 --- a/Scripts/init.lua +++ b/Scripts/init.lua @@ -6,6 +6,7 @@ bird = { Name = "bord", Init = function(self) print(self.Position.x .. "," .. self.Position.y) + print("Bird spawn") end } @@ -38,10 +39,9 @@ animal = { } birdSpawn = game.spawn(bird); -birdSpawn:Init() dogSpawn = game.spawn(dog); -dogSpawn:Init() dogSpawn.Position.x = 37.5 animalSpawn = game.spawn(animal); +print("Animal pos: " .. animalSpawn.Position.x) -- cgit v1.2.3