add triggers

This commit is contained in:
MihailRis
2024-06-30 16:25:08 +03:00
parent 50c714692a
commit 5769be8ec8
15 changed files with 239 additions and 64 deletions
+4 -4
View File
@@ -3,15 +3,15 @@ local DROP_INIT_VEL = {0, 3, 0}
function on_hud_open()
input.add_callback("player.drop", function ()
for i=1,5 do
for i=1,80 do
local pid = hud.get_player()
local pvel = {player.get_vel(pid)}
local ppos = vec3.add({player.get_pos(pid)}, {0, 0.7, 0})
local throw_force = vec3.mul(vec3.add(player.get_dir(pid),
{
math.random() - 0.5,
math.random() - 0.5,
math.random() - 0.5
(math.random() - 0.5) * 5,
(math.random() - 0.5) * 5,
(math.random() - 0.5) * 5
}), DROP_FORCE)
local drop = entity.spawn("base:drop", ppos)