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:
ancientmarinerdev 2023-02-02 04:50:00 +00:00
commit 31fb7faf16
1 changed files with 4 additions and 4 deletions

View File

@ -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,