Hello,
I would like to ask about the 'On animation "" finished' conditional.
What I want to do is, setup it to auto-increment a variable like this:
From:
Is "punching" = false > Set animation to "punching_002";
On animation "punching_001" finished > set "punching" = true;
On animation "punching_001" finished > Set animation to "punching_002";
On animation "punching_002" finished > Set animation to "punching_003";
On animation "punching_003" finished > Set animation to "punching_003" & set "punching" = false;
to
Is "punching" = 0 > Set animation to "punching_002";
On animation "punching_001" finished > Set "punching" = 1;
On animation "punching_00(punching variable number)" finished > Set animation to "punching_00(punching variable number)";
Set "punching" = + 1;
Is "punching" (>) 3 > Set "punching" = 0;
I know, this don't make much sense, but I'm about to make many repetitive poses, and I think using loops is the best way to make it.
But, I can't get a variable to replace part of the animation name inside that condition =
Any idea?
Look the sample:
http://dl.dropbox.com/u/47035927/sandbox/index.html
Keep "Delete" pressed to see all the sequences (it's not finished and all the conditions are not setup yet);