Page 1 of 1

Set position of an actor

PostPosted: Tue Jan 16, 2007 5:18 am
by GreenGame
I want to create an actor in the same position as that of an existing actor, but am not sure how.

And thanks for the quick responses to my other questions. :)

PostPosted: Tue Jan 16, 2007 5:53 pm
by makslane
What actor you want get the position?
For example, to put the new actor in the same position of the creator, put in the 'Create Actor' event:

Code: Select all
x = creator.x;
y = creator.y;

PostPosted: Tue Jan 16, 2007 7:02 pm
by GreenGame
That's just what I needed. Thanks