How can I make an actor to a certain point?
I think i have been able to do it. I would like to see the actor drift to that point quickly and then it stays there instantly. Often, the actor just shoots off.
I'm really new, but thanks! ![]()
I think i have been able to do it. I would like to see the actor drift to that point quickly and then it stays there instantly. Often, the actor just shoots off.
I'm really new, but thanks! ![]()
Comments
Try using the Interpolate behavior. If your destination position is X=600, Y=50, you would do this:
Interpolate self.position.X to 600 Interpolate self.position.Y to 50Try changing the duration to get the desired speed.
Or try the Move To...