Accessing Child (from Parent)-Actor?

You must understand the Game Editor concepts, before post here.

Accessing Child (from Parent)-Actor?

Postby sonicfire » Tue Apr 27, 2010 10:06 pm

Hi folks!

This is a bit technical question, i create an Zombie-Actor, which itself creates an Zombie-Eye actor.
I set the parent upon creation to Event Actor so that the newly Zombie-Actor is the parent of the Zombie Eye. (moves with the Zombie Actor)

But: When i destroy the Zombie Actor, the "child" (the Zombie Eyes) arent destroyed as well. How can i access the Zombie-Eye actor?? (destroy it, move it, apply effects to it)

Any help really appreciated :)
sonicfire
 
Posts: 425
Joined: Wed Nov 01, 2006 9:34 pm
Location: berlin germany
Score: 16 Give a positive score

Re: Accessing Child (from Parent)-Actor?

Postby Thanx » Wed Apr 28, 2010 1:05 pm

Since they're always created together, they probably also have the same cloneindex, right?
So access the Zombieeye something like this:
Code: Select all
sprintf(actornamevar, "Zombieeye.%i", cloneindex);
DestroyActor(getclone(actornamevar));

I think that will do it. Create a variable for actornamevar, instead of Zombieeye use the actor name of the Zombie eyes. Put this code into the Destroy Actor event of the Zombie itself, and it should destroy its eyes with it.
Didn't test it, but it should work somehow this way :)
Hope that could help! :wink:
http://www.youtube.com/watch?v=XyXexDJBv58
http://www.youtube.com/watch?v=Be4__gww1xQ
These are me and playing the piano (second one with a friend/fellow student)
Hope you watch and enjoy!
User avatar
Thanx
 
Posts: 314
Joined: Sat Jan 26, 2008 10:07 pm
Location: Home sweet home! :)
Score: 24 Give a positive score

Re: Accessing Child (from Parent)-Actor?

Postby sonicfire » Thu Apr 29, 2010 9:59 pm

Thanks! I will give it a try :)
sonicfire
 
Posts: 425
Joined: Wed Nov 01, 2006 9:34 pm
Location: berlin germany
Score: 16 Give a positive score


Return to Advanced Topics

Who is online

Users browsing this forum: No registered users and 1 guest

cron