thank you.
another question:
want when speed is less than 75, assign 75 speed and keep raising the value to 300
speed never will be between 0-69
How do I do that?
image:
dl.dropbox.com/u/36634399/platform_q2.jpg
download file .cap dl.dropbox.com/u/36634399/move_great75.cap
like this:
////for left////
if player[Platform].VectorX > -75
{
player[Platform].VectorX = -75 ////comment: + acceleration////
}
////for right////
if player[Platform].VectorX < 75
{
player[Platform].VectorX = 75 ////comment: + acceleration////
}