From 4eeacc60cab3d6cb070bcd19a5259b7a95832a1d Mon Sep 17 00:00:00 2001 From: Andy Belle-Isle Date: Sat, 31 Aug 2019 00:40:21 -0400 Subject: Lua spawned entities have "Idle" function Every entity spawned from Lua is given the "Scripted" component, this component holds onto the Entities master table and it's idle function --- Scripts/init.lua | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'Scripts/init.lua') diff --git a/Scripts/init.lua b/Scripts/init.lua index 851c180..807ef9a 100644 --- a/Scripts/init.lua +++ b/Scripts/init.lua @@ -4,7 +4,7 @@ bird = { y = 3.4 }, Name = "bord", - init = function(self) + Init = function(self) print(self.Position.x .. "," .. self.Position.y) end } @@ -18,8 +18,11 @@ dog = { texture = "assets/tex.png", visible = true }, - init = function(self) + Init = function(self) print(self.Position.x .. "," .. self.Position.y) + end, + Idle = function(self) + self.Position.x = self.Position.x + 0.01; end } @@ -31,12 +34,10 @@ animal = { } birdSpawn = game.spawn(bird); -birdSpawn:init() -print(birdSpawn.Name.value) +birdSpawn:Init() dogSpawn = game.spawn(dog); -dogSpawn:init() +dogSpawn:Init() dogSpawn.Position.x = 37.5 animalSpawn = game.spawn(animal); -animalSpawn.Render.texture = "assets/newText.png" -- cgit v1.2.3