Ok, So i want to make this racing game from top view.
Is there a way to make it so when the car turns, instead of you seeing the car itself turn, you see the car still pointed to the top of the screen but the screen rotates around the car?
Thanks!
Printable View
Ok, So i want to make this racing game from top view.
Is there a way to make it so when the car turns, instead of you seeing the car itself turn, you see the car still pointed to the top of the screen but the screen rotates around the car?
Thanks!
One thing I can think of is, leave the car still on the stage. Instead of moving the car itself around, move the race track.
Try using an angle draw method when the player holds left or right. So do this.
1. Always: Set angle [object] to value A [object]
2. Repeat while player moved right: Add 1 to value A [object]
For the 3rd one, do the same thing as #2, except repeat while player moved left.
Also, I'm not sure how your track is layed out, so you might have to switch the add 1 to subtract 1 from value A. You can also change 1 to another number for a faster rotation where u need it.