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.
Viewing post in Snow Cleaner 2000 jam comments
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.