forked from VoxeLibre/VoxeLibre
feat: Rain particles move straight down, increase acceleration slightly
This commit is contained in:
parent
63360bcab2
commit
7dd0293616
|
@ -27,10 +27,10 @@ local psdef= {
|
|||
time=0,
|
||||
minpos = vector.new(-15,20,-15),
|
||||
maxpos = vector.new(15,25,15),
|
||||
minvel = vector.new(-2,-17,-2),
|
||||
maxvel = vector.new(2,-8,2),
|
||||
minacc = vector.new(0,0,0),
|
||||
maxacc = vector.new(0,-0.5,0),
|
||||
minvel = vector.new(0,-20,0),
|
||||
maxvel = vector.new(0,-15,0),
|
||||
minacc = vector.new(0,-0.8,0),
|
||||
maxacc = vector.new(0,-0.8,0),
|
||||
minexptime = 1,
|
||||
maxexptime = 4,
|
||||
minsize = 4,
|
||||
|
|
Loading…
Reference in New Issue