-
smooth movement
Hi,
may be this question too simple, but i'm beginner and want a help.
i trying now, make this event:
"if i click on any place on the window, an object move to the point where i click with mouse"
i successes in making that, but the object move Suddenly, i want it move smooth from point to point like tween animation.
this my events:
event: user clicks with left button
action: set x position to xmouse
set y position to ymouse
regards
MFA
-
Re: smooth movement
Use the MoveIt object.
Let us say you want to move a ball:
-----------------------------------
Event: User clicks with left button.
Action: MoveIt object: Move objects -> Add object to queue (Ball)
Action: MoveIt object: Move object in queue with speed (xmouse, ymouse)
-
Re: smooth movement