I'm working on my Gunship chopper craft and want to trigger various animation sequences during different stages of flight. Here's a quick render so you what it looks like and get an idea of what I want to do:
For instance, on takeoff, I want the landing gear to retract and the speedbrakes (those panels on the engines) to fold back. On landing, the gear comes out and the panels rotate out again.
Now, the speedbrakes should activate during different stages of flight. If you press the "back" button, they pop out. If you press left, the left speedbrakes pop out. Et cetera, et cetera, et cetera...
The problem I'm having is that I can't call multiple anims at once. For instance...
...results in only the Right speed brake popping open. No matter what arrangement I choose, it always plays the *last* animation.
Now, if I combine all the motions into 2 separate animations called "takeoff" and "landing" they work fine. However, that also means I have to create additional animations for "left turn open", "left turn close, "right turn open", "right turn close", "air braking open", "descent open".... you get the picture.
What I'd like is to just have 6 animations: Left & Right Speedbrake open and close, and landing gear up and down. I could just trigger the speedbrake sets individually for flight states, and combine them with the landing gear for takeoff and landing.
The long and short: Is there any way to get multiple animations to play simultaneously in what I guess could be called animation "combos"?

For instance, on takeoff, I want the landing gear to retract and the speedbrakes (those panels on the engines) to fold back. On landing, the gear comes out and the panels rotate out again.
Now, the speedbrakes should activate during different stages of flight. If you press the "back" button, they pop out. If you press left, the left speedbrakes pop out. Et cetera, et cetera, et cetera...
The problem I'm having is that I can't call multiple anims at once. For instance...
PHP Code:
PlayAnim('lgdown'); // LandingGearDown
PlayAnim('lsbopen'); // LeftSpeedBrakeOpen
PlayAnim('rsbopen'); // RightSpeedBrakeOpen
Now, if I combine all the motions into 2 separate animations called "takeoff" and "landing" they work fine. However, that also means I have to create additional animations for "left turn open", "left turn close, "right turn open", "right turn close", "air braking open", "descent open".... you get the picture.
What I'd like is to just have 6 animations: Left & Right Speedbrake open and close, and landing gear up and down. I could just trigger the speedbrake sets individually for flight states, and combine them with the landing gear for takeoff and landing.
The long and short: Is there any way to get multiple animations to play simultaneously in what I guess could be called animation "combos"?

Comment