On Sale: GamesAssetsToolsTabletopComics
Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
A jam submission

Snow Cleaner 2000View game page

Clean the snow through something something magical mumbo jumbo
Submitted by Game dav — 3 days, 11 hours before the deadline
Add to collection

Play game

Snow Cleaner 2000's itch.io page

Results

CriteriaRankScore*Raw Score
Theme#74.3084.308
Black and White#84.7694.769
Originality#103.3853.385
Overall#153.3463.346
Music#182.2312.231
Gameplay#182.6922.692
Art#222.6922.692

Ranked from 13 ratings. Score is adjusted from raw score by the median number of ratings per game in the jam.

Leave a comment

Log in with itch.io to leave a comment.

Comments

Submitted(+1)

I really like the interactive title screen.  The idea of shoveling snow off of the screen is fun and doesn't feel repetitive at all.  The only thing missing for me are the sound effects, but overall, I had a blast!

Submitted

The wait between levels is a little long. 

Loved the music.

Submitted (2 edits) (+1)

The game is quite fun! Hopefully the loading bug gets fixed. It reminds me of what I think was the first game I ever played, which had a similar concept, except it was a flash game. Very cool memory! Interesting music too.

Developer(+1)

for the snow ball spawning its just a script that moves an object position to a random point in a range, then spawns a snow ball then repeats for a set number of times, its just code in the update function.

Submitted (3 edits) (+1)

ohhh that makes sense. you could try using a while loop that runs in Start() or OnEnable() something like (psuedocode, probably won't run)

public int snowballs=100;

void Start()

{

while(snowballs>0)//while loops can crash the UnityEditor if they get stuck so beware

{

Instantiate(snowballPrefab,position,rotation);

snowballs= snowballs-1;

}

}


this should execute in only 1 frame.

otherwise you're only spawning 1 snowball per frame by doing it in the Update() loop.
Also, you could decrease the z-coordinate of each snowball by like .001 per loop, that way they won't z-fight.

Developer(+1)

Thank you for the advice!

Submitted

I like the idea, relaxing, but the wait between the levels is a little to long.

Submitted

Really satisfying to clean the snow- waiting takes a little long but apart from that I really liked it :) 

Submitted

Very relaxing! Thank you so much for making this. Great game.

Submitted(+1)

Game simple, but well done, and polished. Maybe I would reduce the time to wait at the begin of each level, it's too long to my opinion.

Also, I suggest you to remove the full screen button check on the itch settings. Unity has its own one in the template, and works better. You don't need that ;)

Submitted(+2)

It's a fun concept but like previously stated waiting for the snowballs to show up takes a long time. I've had to hang out on other websites while I waited for the game to be ready. It could use an extra mechanic or two, maybe a zone that will create more balls if you toss it into or walls that you have to navigate because it does get a bit stale after a few rounds of doing the same thing. Nevertheless, great work! Keep it up! 

Submitted(+1)

Feels so satisfying to clean. Only drawback is that in the bigger levels we wait so long for the snow to rain. Maybe you could add an arcade mode were the player is able to clean the snow while it piles up. I also quite like the effect of revealing the background by cleaning the snow !

Submitted(+2)

I always loved cleaning games :D, it's just kinda weird that you need to wait for the snow to pile up to clean it, and the music is kinda janky feels like a bunch of notes thrown together, but still, it's nice to see submissions like yours, pretty interesting game :)