mirror of
https://git.minetest.land/MineClone2/MineClone2.git
synced 2024-11-04 14:53:51 +01:00
Merge pull request 'feat: Rain particles move straight down, increase acceleration slightly' (#3369) from atomdmac/MineClone2:adjust-rain-velocity into master
Reviewed-on: https://git.minetest.land/MineClone2/MineClone2/pulls/3369 Reviewed-by: FossFanatic <fossfanatic@noreply.git.minetest.land> Reviewed-by: epCode <epcode@noreply.git.minetest.land> Reviewed-by: ancientmarinerdev <ancientmariner_dev@proton.me>
This commit is contained in:
commit
31fb7faf16
@ -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
Block a user