entity.get_rot, .set_rot

This commit is contained in:
MihailRis
2024-06-27 05:23:44 +03:00
parent 20ab48ecab
commit f70e923c7c
4 changed files with 20 additions and 3 deletions
+1
View File
@@ -8,5 +8,6 @@ function on_hud_open()
local eid = entity.spawn("base:drop")
local throw_force = vec3.mul(player.get_dir(pid), DROP_FORCE)
entity.set_vel(eid, vec3.add(throw_force, vec3.add(pvel, DROP_INIT_VEL)))
entity.set_rot(eid, mat4.rotate({0, 1, 0}, math.random() * 360))
end)
end