update entity script semantics

This commit is contained in:
MihailRis
2024-06-29 21:01:30 +03:00
parent c54be7b2b1
commit fc3994446a
11 changed files with 193 additions and 69 deletions
+3 -8
View File
@@ -1,12 +1,7 @@
function on_spawn(eid)
print("spawn", eid)
function on_despawn()
print("despawn")
end
function on_despawn(eid)
print("despawn", eid)
end
function on_grounded(eid)
local entity = stdcomp.new_Entity(eid) -- test
function on_grounded()
entity.transform:set_rot(mat4.rotate({0, 1, 0}, math.random()*360))
end