add collision_removal for particles spawners

This commit is contained in:
Artūras Norkus 2016-06-24 00:33:40 +03:00
parent 8fa399d2ca
commit ea242fb8c3
2 changed files with 2 additions and 0 deletions

View File

@ -41,6 +41,7 @@ rain.add_rain_particles = function(player, dtime)
expirationtime = 0.2,
size = math.random(0.5, 3),
collisiondetection = true,
collision_removal = true,
vertical = true,
texture = rain.get_texture(),
playername = player:get_player_name()

View File

@ -17,6 +17,7 @@ snow.add_rain_particles = function(player, dtime)
expirationtime = 0.6,
size = math.random(0.5, 1),
collisiondetection = true,
collision_removal = true,
vertical = true,
texture = snow.get_texture(),
playername = player:get_player_name()