add entity 'on_render' event

This commit is contained in:
MihailRis
2024-07-07 22:59:15 +03:00
parent d099b294a2
commit 0d230f2449
5 changed files with 32 additions and 8 deletions
+4 -1
View File
@@ -88,7 +88,7 @@ function on_trigger_exit(index, oid)
end
end
function on_update()
function on_render()
if inair then
local dt = time.delta();
@@ -100,6 +100,9 @@ function on_update()
mat4.scale(matrix, scale, matrix)
rig:set_matrix(0, matrix)
end
end
function on_update()
if target ~= -1 then
local dir = vec3.sub({player.get_pos(target)}, tsf:get_pos())
vec3.normalize(dir, dir)