Hi, I have a "Show-stopping" issue with Flare3D. I have my models importing fine and I can append one animation at a time to the model but
when I try to append more than one animation to a model I get a "
index XXX is out of range XXX". I need to load and unload animations and also set sequences of animations that loop to a model.
CODE:
model = flareScene.addChildFromFile( "/assets/WomanDefaultModel_V2.f3d" );
idleAnim = new Flare3DLoader2( "/assets/animations/animWomanIdle.f3d" );
flareScene.library.push(idleAnim as Flare3DLoader2);
jogFlipAnim = new Flare3DLoader2( "/assets/animations/animWomanJog .f3d" );
flareScene.library.push(
jogAnim as Flare3DLoader2);
Pivot3DUtils.appendAnimation( model, idleAnim ,"idleAnim" ,false);
Pivot3DUtils.appendAnimation( model, jogAnim ,"jogAnim" ,false );
The commercial job is required very soon. Please help.