Yes, MoveTo shouldn't be used for teleporting actors around. It moves actors gradually, which isn't what you want. Instead, you should just manipulate the xy variables directly. For instance, a MoveTo teleporting the event actor to (500, 100) can be done like this.
- Code: Select all
x = 500;
y = 100;