How to i move a mc to a specific point from any ponit on the stage.
That i want to for the mc to move at the same speed to the destination ?
i know how to make it ease in but thats not what i want. What i want is to move at a steady speed.
FOR EASING: i used this
targetx = 0;
targety = 400;
_x += (targetx - _x)/speed;
_y += (targety - _y)/speed;
That eases into the position. What i want is to move at say a speed of 5.
