forked from VoxeLibre/VoxeLibre
Tweak initial speed of TNT entitiy
This commit is contained in:
parent
9a8e47bb02
commit
ed5c2c2019
|
@ -94,7 +94,10 @@ local TNT = {
|
||||||
blinkstatus = true,}
|
blinkstatus = true,}
|
||||||
|
|
||||||
function TNT:on_activate(staticdata)
|
function TNT:on_activate(staticdata)
|
||||||
self.object:setvelocity({x=0, y=4, z=0})
|
local phi = math.random(0, 65535) / 65535 * 2*math.pi
|
||||||
|
local hdir_x = math.cos(phi) * 0.02
|
||||||
|
local hdir_z = math.sin(phi) * 0.02
|
||||||
|
self.object:setvelocity({x=hdir_x, y=2, z=hdir_z})
|
||||||
self.object:setacceleration({x=0, y=-10, z=0})
|
self.object:setacceleration({x=0, y=-10, z=0})
|
||||||
self.object:settexturemod("^mcl_tnt_blink.png")
|
self.object:settexturemod("^mcl_tnt_blink.png")
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue