Page 1 of 1

Bangers game, beta version

Posted: Tue Jun 05, 2007 7:58 pm
by turshija
Ok I think i have made something that can look like some sort of game :lol:
i have attached it on message ...
I'm expecting your comments about this game ;)
i made it in really short time so it is sucky a little bit but ill maybe add some of features like sound, powerups and stuff like that :)
enjoy

Boris

Posted: Wed Jun 06, 2007 1:45 pm
by VilleK
It's fun to play.

I like the way cars bounce off the walls.

It plays very different speed between preview and run windows. This is because different frame rates.

Try replacing code like this:

Code: Select all

//Instead of this:
//Speed = Speed + 0.01;

//Do this instead
Speed += 4 * App.DeltaTime;
That will make the game the same speed independent of frame rate.

Also the car-models look cool. Maybe make the cars slightly bigger on screen, and rotate them a little bit to make them more 3D.