This is a project I created with pico-8 and Lua practice. I created this because I love to watch the snow fall!
1
Nice start.
To avoid horizontal lines of snow, you can warp the snow with a random offset rather than warping it to the top of the string.
self.y=0
could become
self.y=rnd({-5,-4,-3,-2,-1,0})
for example.
[Please log in to post a comment]