diff options
author | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-08-31 00:40:21 -0400 |
---|---|---|
committer | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-08-31 00:40:21 -0400 |
commit | 4eeacc60cab3d6cb070bcd19a5259b7a95832a1d (patch) | |
tree | 7e26aea1b95dec5bb5bfaf4749cba0b71dd06cf9 /Scripts | |
parent | 3a5718d4ab0d9f726686c601579a4c586a65e269 (diff) |
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
Diffstat (limited to 'Scripts')
-rw-r--r-- | Scripts/init.lua | 13 |
1 files changed, 7 insertions, 6 deletions
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" |