Page 1 of 1

Character choice

PostPosted: Sun Oct 03, 2010 4:58 pm
by olly2000
I would like to make a game with a character choice but I dont know how to do it. :?:

Please help me!

Re: Character choice

PostPosted: Mon Oct 04, 2010 7:20 am
by skydereign
You would need an interface to actually choose the character. And either you can create the actor upon clicking your character choice, or use a variable to store which character is to be used. Then when you create the actor, use the variable. Now if your characters will use the same generally techniques, you can use the either the same actor with all the possible character animations, or create a base character. Essentially you create a default character, with all animation types and actions, and you can use inheritance to quickly create new characters.

If though you don't have mechanically similar characters, then just use separate actors, and like I said above either use the variable or click the button to create.

Re: Character choice

PostPosted: Mon Oct 11, 2010 1:41 pm
by olly2000
Tanks for help!