Tutorials

Show Winter Snowfall Animation Using Python 3 Arcade Library

Python 3 Arcade Library to Show Winter Snowfall Animation in Window GUI Desktop App.

pip install arcade

code.py

# Import required modules
import random
import math
import arcade



# Adjust window attributes
Width = 800
Height = 600
Title = "SnowFall"



class snow_fall:
  def __init__(self):
    self.x = 0
    self.y = 0

  def reset_snow(self):
    
    # Reset flake to random position above screen
    self.y = random.randrange(Height, Height + 100)
    self.x = random.randrange(Width)



class snowfall(arcade.Window):
  def __init__(self, width, height, title):
    
    # Calls "__init__" of parent class
    # (arcade.Window) to setup screen
    super().__init__(width, height, title)

  def start_snowfall(self):
    
    # Set up snowfall and initialize variables.
    self.snowfall_list = []

    for i in range(50):
      
      # Create snowfall instance
      snowfall = snow_fall()

      # Randomly position snowfall
      snowfall.x = random.randrange(Width)
      snowfall.y = random.randrange(Height + 200)

      # Set other variables for the snowfall
      snowfall.size = random.randrange(8)
      snowfall.speed = random.randrange(20, 40)
      snowfall.angle = random.uniform(math.pi, math.pi * 2)

      # Add snowflake to snowfall list
      self.snowfall_list.append(snowfall)

    # Set the background color
    arcade.set_background_color(arcade.color.BLUE)

  def on_draw(self):
    
    # This command is necessary before drawing
    arcade.start_render()

    # Draw the current position of each snowfall
    for snowfall in self.snowfall_list:
      arcade.draw_circle_filled(snowfall.x, snowfall.y,
                  snowfall.size, arcade.color.WHITE)

  def on_update(self, delta_time):
    
    # Animate all the snowfall falling
    for snowfall in self.snowfall_list:
      snowfall.y -= snowfall.speed * delta_time

      # Check if snowfall has fallen below screen
      if snowfall.y < 0:
        snowfall.reset_snow()

      # Some math to make the snowfall move side to side
      snowfall.x += snowfall.speed * \
        math.cos(snowfall.angle) * delta_time
      snowfall.angle += 1 * delta_time



# Driver Code
if __name__ == "__main__":
  screen = snowfall(800, 600, "Snow")
  screen.start_snowfall()
  arcade.run()
Furqan

Well. I've been working for the past three years as a web designer and developer. I have successfully created websites for small to medium sized companies as part of my freelance career. During that time I've also completed my bachelor's in Information Technology.

Recent Posts

ChatGPT Atlas vs Google Chrome: Which Browser Should You Choose in 2025?

Google Chrome has dominated web browsing for over a decade with 71.77% global market share.…

October 25, 2025

Is Perplexity Comet Browser Worth It? The Honest 2025 Review

Perplexity just made its AI-powered browser, Comet, completely free for everyone on October 2, 2025.…

October 25, 2025

Is ChatGPT Atlas Worth It? A Real Look at OpenAI’s New Browser

You've probably heard about ChatGPT Atlas, OpenAI's new AI-powered browser that launched on October 21,…

October 25, 2025

Perplexity Comet Browser Alternatives: 7 Best AI Browsers in 2025

Perplexity Comet became free for everyone on October 2, 2025, bringing research-focused AI browsing to…

October 25, 2025

ChatGPT Atlas Alternatives: 7 Best AI Browsers in 2025

ChatGPT Atlas launched on October 21, 2025, but it's only available on macOS. If you're…

October 25, 2025

ChatGPT Atlas vs Comet Browser: Best AI Browser in 2025?

Two AI browsers just entered the ring in October 2025, and they're both fighting for…

October 25, 2025