In this GameMaker video tutorial you learn how to make a race car game using the advance features of GameMaker PRO. It uses cubes images instead of car images but you can still learn a lot from it.
(credit mrperfectprashant)
|
|||||
Make a race car game in GameMaker ProIn this GameMaker video tutorial you learn how to make a race car game using the advance features of GameMaker PRO. It uses cubes images instead of car images but you can still learn a lot from it. (credit mrperfectprashant) 10 comments to Make a race car game in GameMaker Pro |
|||||
|
Copyright © 2012 GameMaker Video Tutorial - All Rights Reserved | RSS 82 queries. 0.299 seconds. |
|||||
Hey can you post the coding my car moves but in the wrong way
plz help
try setting the speed variable to the opposite sign of what you have it now – minus or plus
email me if it doesnt help dr.gamemaker AT gmail.com
can you please leave a tutorial on making this 3d?
Thanks mrperfectprashant!!!!!!It works!!!!!!!!!!!!!!!!!!!!!!!!
Good Read
am making it using game maker lite
….btw can you email the codes, if you got more than just those codes can you email them too (gpalomojunior18@hotmail.com)
Go to create and write=
sp_max=4;
sp_gain=1;
sp_handling=5;
image_speed=0;
friction=0.5;
Then for up write =
if speed < sp_max
{
speed+= sp_gain;
}
Do the same for down but just switch the and – signs
For left write
direction += sp_handling
Alternate the +,- sign for right
And then go to step and write
image_index = image_number * direction / 360;
feel free to alternate the numbers from it.
how do i do the collisions for the wall becasue my car keeps getting stuck in the wall.
the answer to your question nana is simple-make the collision mask be a circle.