* what to do when stuck under tiles (after using duck-sliding)
* do we want multi hit scores again?
* tux doesn't stop at igloo anymore
- * background particle systems are too slow
+ * background particle systems are too slow - ok
--Code Refactoring/Cleanup/Optimisation--
[H] make the title using GameSession instead of reimplementing all the stuff
int snowsize = rand() % 3;
particle->texture = snowimages[snowsize];
do {
- particle->speed = snowsize/60.0 + (float(rand()%10)/300.0);
- } while(particle->speed < 0.01);
+ particle->speed = snowsize*.2 + (float(rand()%10)*.4);
+ } while(particle->speed < 1);
+ particle->speed *= 10; // gravity
particles.push_back(particle);
}