Page 1 of 1

Tellaportation

PostPosted: Tue Feb 05, 2013 6:03 pm
by Turon
I usually do Tellaportation in games using the Move To widget but I am finding it does not always do what I
Whatnot it to do, is There a better way of doing Tellaportation? :roll:

Re: Tellaportation

PostPosted: Tue Feb 05, 2013 6:19 pm
by skydereign
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;

Re: Tellaportation

PostPosted: Thu Feb 07, 2013 6:40 am
by Turon
Thankyou Skydereign! :)