Spriteset_Weather Stuff I've Learned

● ARCHIVED · READ-ONLY
Started by Burgerland 2 posts View original ↗
  1. Script Editor > Sprites > Spriteset_Weather

    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:

    pathos said:
    #--------------------------------------------------------------------------
    # * 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
  2. This particular part of the forum is for asking "How do I...?" questions. Your post reads more like the basics for a tutorial.

    I am going to close this, and suggest that you make a new thread in VX Ace Tutorials. Read the pinned topic which gives guidelines of what should be included, and try and think of a more helpful title, so that people looking through the list of tutorials can see at a glance what it's about. It could be something as simple as "Prevent screen dimming during rain/snow".