Page 1 of 1

Simple Question

PostPosted: Sun Aug 21, 2005 9:23 am
by Conqueran
I have what I think is a simple question. I'd like to make my actor do the path assigned to it one time only. I can't use destroy actor at path finish because I have multiple versions of the same actor going down the same path, and I'd like each one to FINISH the path before they are destroyed.
Does anyone know of an answer to this dilemma? Thanks

PostPosted: Sun Aug 21, 2005 10:29 am
by ondy1985
I don't really understand. You have multiple CLONES of the actor and each of then has the same path? Destroying one clone will not destroy the others.

PostPosted: Sun Aug 21, 2005 1:31 pm
by makslane
If you use Destroy Actor with "actor name" all clones will be destroyed.
Use "Event Actor" to destroy current actor at and of path.

PostPosted: Sun Aug 21, 2005 2:37 pm
by Conqueran
thanks, that worked.