How to make the screen not dim during rain/snow:
Line 128 Get Dimmer. Change (@power * 6).to_i to a lower number to decrease the darkness for all weather, or for a particular type of weather:
#--------------------------------------------------------------------------
# * Get Dimness
#--------------------------------------------------------------------------
def dimness
if @weather_type = :snow
(@power * 2).to_i
else
(@power * 6).to_i
end
end
# * Get Dimness
#--------------------------------------------------------------------------
def dimness
if @weather_type = :snow
(@power * 2).to_i
else
(@power * 6).to_i
end
end
Change snow to rain if you want.
How to change the color of rain/snow:
Line 149 Update Sprite (Rain) and Line 167 Update Sprite (Snow). Change sprite_opacity to whatever color, learn about colors here: color toning and tint guide
How to make the snow/rain particles bigger, or use pictures instead of particles:
MOG's Weather EX script