From 218d29cfaefc91b901233c373650107d7a595635 Mon Sep 17 00:00:00 2001 From: seungho Date: Thu, 15 Sep 2022 17:20:36 +0900 Subject: [PATCH] Change ModelView to Model Change-Id: Ic97da0b98c70fa175f2112213c8d473f7d602ec1 Signed-off-by: seungho --- com.samsung.dali-demo.xml | 2 +- demo/dali-demo.cpp | 2 +- .../scene3d-model-example.cpp} | 72 +- .../models/{beer_modelView.dli => beer_model.dli} | 0 resources/models/exercise_model.dli | 11701 +++++++++++++++++++ resources/po/as.po | 4 +- resources/po/de.po | 4 +- resources/po/en_GB.po | 4 +- resources/po/en_US.po | 4 +- resources/po/es.po | 4 +- resources/po/fi.po | 4 +- resources/po/ko.po | 4 +- resources/po/ml.po | 4 +- resources/po/ur.po | 4 +- resources/po/zn_CH.po | 4 +- shared/dali-demo-strings.h | 4 +- 16 files changed, 11760 insertions(+), 61 deletions(-) rename examples/{scene3d-model-view/scene3d-model-view-example.cpp => scene3d-model/scene3d-model-example.cpp} (89%) rename resources/models/{beer_modelView.dli => beer_model.dli} (100%) create mode 100644 resources/models/exercise_model.dli diff --git a/com.samsung.dali-demo.xml b/com.samsung.dali-demo.xml index d17aba3..40c24ea 100644 --- a/com.samsung.dali-demo.xml +++ b/com.samsung.dali-demo.xml @@ -274,7 +274,7 @@ - + diff --git a/demo/dali-demo.cpp b/demo/dali-demo.cpp index 9e82e0e..60f9653 100644 --- a/demo/dali-demo.cpp +++ b/demo/dali-demo.cpp @@ -59,7 +59,7 @@ int DALI_EXPORT_API main(int argc, char** argv) demo.AddExample(Example("rendering-skybox.example", DALI_DEMO_STR_TITLE_SKYBOX)); demo.AddExample(Example("rendering-basic-pbr.example", DALI_DEMO_STR_TITLE_PBR)); #ifdef DALI_SCENE3D_AVAILABLE - demo.AddExample(Example("scene3d-model-view.example", DALI_DEMO_STR_TITLE_SCENE3D_MODEL_VIEW)); + demo.AddExample(Example("scene3d-model.example", DALI_DEMO_STR_TITLE_SCENE3D_MODEL)); demo.AddExample(Example("scene3d.example", DALI_DEMO_STR_TITLE_SCENE3D)); #endif //DALI_SCENE3D_AVAILABLE demo.AddExample(Example("shadows-and-lights.example", DALI_DEMO_STR_TITLE_LIGHTS_AND_SHADOWS)); diff --git a/examples/scene3d-model-view/scene3d-model-view-example.cpp b/examples/scene3d-model/scene3d-model-example.cpp similarity index 89% rename from examples/scene3d-model-view/scene3d-model-view-example.cpp rename to examples/scene3d-model/scene3d-model-example.cpp index a257f56..1ae62e4 100644 --- a/examples/scene3d-model-view/scene3d-model-view-example.cpp +++ b/examples/scene3d-model/scene3d-model-example.cpp @@ -24,14 +24,14 @@ #include #include -#include +#include using namespace Dali; using namespace Dali::Toolkit; /* - * This example shows how to create and display a ModelView control. - * The application can load 5 different glTF model to ModelView control. + * This example shows how to create and display a Model control. + * The application can load 5 different glTF model to Model control. * Each model has diffirent material. BoomBox shows glossy or matt plastic material. * DamagedHelmet shows a kind of reflective glass and metallic object. * Microphone shows a roughness of metallic objects. @@ -82,15 +82,15 @@ const char* gltf_list[7] = */ "microphone.gltf", /** - * For the beer_modelView.dli and its Assets + * For the beer_model.dli and its Assets * This model includes a bottle of beer and cube box. */ - "beer_modelView.dli", + "beer_model.dli", /** - * For the exercise_modelView.dli and its Assets + * For the exercise_model.dli and its Assets * This model includes a sportsman */ - "exercise_modelView.dli"}; + "exercise_model.dli"}; /** * For the diffuse and specular cube map texture. @@ -188,25 +188,25 @@ Shader LoadShaders(const std::string& shaderVertexFileName, const std::string& s } // namespace /** - * This example shows how to render glTF model with ModelView + * This example shows how to render glTF model with Model * How to test * - Input UP or DOWN key to make the model rotate or stop. * - Input LEFT or RIGHT key to change glTF model * - Double Touch also changes glTF model. */ -class Scene3DModelViewExample : public ConnectionTracker +class Scene3DModelExample : public ConnectionTracker { public: - Scene3DModelViewExample(Application& application) + Scene3DModelExample(Application& application) : mApplication(application), mModelOrientation(), mAnimationStop(false) { // Connect to the Application's Init signal - mApplication.InitSignal().Connect(this, &Scene3DModelViewExample::Create); + mApplication.InitSignal().Connect(this, &Scene3DModelExample::Create); } - ~Scene3DModelViewExample() + ~Scene3DModelExample() { mAnimation.Stop(); } @@ -229,13 +229,13 @@ public: SetAnimation(); // Respond to a click anywhere on the mWindow - mWindow.GetRootLayer().TouchedSignal().Connect(this, &Scene3DModelViewExample::OnTouch); - mWindow.KeyEventSignal().Connect(this, &Scene3DModelViewExample::OnKeyEvent); - mWindow.GetRootLayer().WheelEventSignal().Connect(this, &Scene3DModelViewExample::OnWheel); + mWindow.GetRootLayer().TouchedSignal().Connect(this, &Scene3DModelExample::OnTouch); + mWindow.KeyEventSignal().Connect(this, &Scene3DModelExample::OnKeyEvent); + mWindow.GetRootLayer().WheelEventSignal().Connect(this, &Scene3DModelExample::OnWheel); mDoubleTap = false; mDoubleTapTime = Timer::New(150); - mDoubleTapTime.TickSignal().Connect(this, &Scene3DModelViewExample::OnDoubleTapTime); + mDoubleTapTime.TickSignal().Connect(this, &Scene3DModelExample::OnDoubleTapTime); } bool OnWheel(Actor actor, const WheelEvent& wheelEvent) @@ -244,9 +244,9 @@ public: mWheelDelta = std::max(0.5f, mWheelDelta); mWheelDelta = std::min(2.0f, mWheelDelta); - if(mModelView) + if(mModel) { - mModelView.SetProperty(Actor::Property::SCALE, mWheelDelta); + mModel.SetProperty(Actor::Property::SCALE, mWheelDelta); } return true; @@ -260,34 +260,32 @@ public: void CreateSceneFromGLTF(uint32_t index) { - if(mModelView) + if(mModel) { - mWindow.GetRootLayer().Remove(mModelView); + mWindow.GetRootLayer().Remove(mModel); } std::string gltfUrl = modeldir; gltfUrl += gltf_list[index]; - mModelView = Dali::Scene3D::ModelView::New(gltfUrl); + mModel = Dali::Scene3D::Model::New(gltfUrl); if(index == 0u) { - mModelView.SetProperty(Dali::Actor::Property::SIZE, Vector2(300, 300)); - mModelView.SetProperty(Dali::Actor::Property::POSITION_Y, 100); + mModel.SetProperty(Dali::Actor::Property::SIZE, Vector2(300, 300)); + mModel.SetProperty(Dali::Actor::Property::POSITION_Y, 100); } else { - mModelView.SetProperty(Dali::Actor::Property::SIZE, Vector2(600, 600)); + mModel.SetProperty(Dali::Actor::Property::SIZE, Vector2(600, 600)); } - mModelView.SetProperty(Dali::Actor::Property::ANCHOR_POINT, AnchorPoint::CENTER); - mModelView.SetProperty(Dali::Actor::Property::PARENT_ORIGIN, ParentOrigin::CENTER); - mModelView.SetImageBasedLightSource(uri_diffuse_texture, uri_specular_texture, 0.6f); - mModelView.FitSize(true); - mModelView.FitCenter(true); - - mWindow.Add(mModelView); - if(mModelView.GetAnimationCount()>0) + mModel.SetProperty(Dali::Actor::Property::ANCHOR_POINT, AnchorPoint::CENTER); + mModel.SetProperty(Dali::Actor::Property::PARENT_ORIGIN, ParentOrigin::CENTER); + mModel.SetImageBasedLightSource(uri_diffuse_texture, uri_specular_texture, 0.6f); + + mWindow.Add(mModel); + if(mModel.GetAnimationCount() > 0) { - Animation animation = (index == 0u) ? mModelView.GetAnimation(0u) : mModelView.GetAnimation("idleToSquatClip_0"); + Animation animation = (index == 0u) ? mModel.GetAnimation(0u) : mModel.GetAnimation("idleToSquatClip_0"); animation.Play(); animation.SetLoopCount(0); } @@ -416,7 +414,7 @@ public: { keyframes.Add(i * lengthAnimation, Quaternion(Degree(i * 90.0), Vector3::YAXIS)); } - mAnimation.AnimateBetween(Property(mModelView, Dali::Actor::Property::ORIENTATION), keyframes, Animation::Interpolation::LINEAR); + mAnimation.AnimateBetween(Property(mModel, Dali::Actor::Property::ORIENTATION), keyframes, Animation::Interpolation::LINEAR); mAnimation.SetLooping(true); mAnimation.Play(); } @@ -604,8 +602,8 @@ private: CameraActor mCameraActor; Dali::Timer mTimer; - Vector3 mCameraPosition; - Dali::Scene3D::ModelView mModelView; + Vector3 mCameraPosition; + Dali::Scene3D::Model mModel; Vector2 mPointZ; Quaternion mModelOrientation; @@ -631,7 +629,7 @@ private: int32_t DALI_EXPORT_API main(int32_t argc, char** argv) { Application application = Application::New(&argc, &argv); - Scene3DModelViewExample test(application); + Scene3DModelExample test(application); application.MainLoop(); return 0; } diff --git a/resources/models/beer_modelView.dli b/resources/models/beer_model.dli similarity index 100% rename from resources/models/beer_modelView.dli rename to resources/models/beer_model.dli diff --git a/resources/models/exercise_model.dli b/resources/models/exercise_model.dli new file mode 100644 index 0000000..718162f --- /dev/null +++ b/resources/models/exercise_model.dli @@ -0,0 +1,11701 @@ +{ + "metadata" : [ { + "key" : "clock-type", + "value" : "com.samsung.watchface-01" + }, { + "key" : "tickpersecond", + "value" : "1" + }, { + "key" : "preview_time", + "value" : "10:08:32" + }, { + "key" : "tilt-mode", + "value" : "light" + }, { + "key" : "depth-sorted-3d", + "value" : "false" + } ], + "asset" : { + "version" : "1.0" + }, + "scene" : 1, + "scenes" : [ { + "nodes" : [ 0 ] + }, { + "nodes" : [ 95 ] + } ], + "nodes" : [ { + "name" : "ExerciseDemo", + "matrix" : [ 0.01, 0.0, 0.0, 0.0, 0.0, 0.01, 0.0, 0.0, 0.0, 0.0, 0.01, 0.0, 0.0, 0.0, 0.0, 1.0 ], + "children" : [ 1, 79, 88, 91, 92, 93, 94 ], + "behavior" : [ 4 ], + "visible" : true, + "lightingMode" : "lit" + }, { + "name" : "ReferenceShape_JNT", + "matrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ], + "children" : [ 2 ], + "visible" : true + }, { + "name" : "hips_JNT", + "matrix" : [ 0.984536, 0.175182, 0.0, 0.0, -0.175122, 0.984198, 0.026198, 0.0, 0.004589, -0.025793, 0.999657, 0.0, 5.27538, 78.6471, -1.41421, 1.0 ], + "children" : [ 3, 69, 74 ], + "visible" : true, + "inverseBindPoseMatrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.013219, -80.0521, 1.41421, 1.0 ] + }, { + "name" : "spine_JNT", + "matrix" : [ 0.984536, -0.175122, 0.004589, 0.0, 0.174502, 0.982682, 0.062338, 0.0, -0.015426, -0.060573, 0.998044, 0.0, 0.015846, 4.13037, 0.166239, 1.0 ], + "children" : [ 4 ], + "visible" : true, + "inverseBindPoseMatrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, -0.002627, -84.1824, 1.24797, 1.0 ] + }, { + "name" : "spine1_JNT", + "matrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 0.998172, -0.06044, 0.0, 0.0, 0.06044, 0.998172, 0.0, 0.005973, 10.694, 0.968772, 1.0 ], + "children" : [ 5 ], + "visible" : true, + "inverseBindPoseMatrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, -0.0086, -94.8764, 0.279197, 1.0 ] + }, { + "name" : "spine2_JNT", + "matrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 0.998172, -0.06044, 0.0, 0.0, 0.06044, 0.998172, 0.0, 0.0, 10.1532, -0.580362, 1.0 ], + "children" : [ 6, 30, 54 ], + "visible" : true, + "inverseBindPoseMatrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, -0.008557, -105.03, 0.859559, 1.0 ] + }, { + "name" : "l_shoulder_JNT", + "matrix" : [ 0.949195, 0.273744, -0.155217, 0.0, -0.201691, 0.907824, 0.367663, 0.0, 0.241555, -0.317678, 0.916914, 0.0, 2.88666, 12.5391, -0.534974, 1.0 ], + "children" : [ 7 ], + "visible" : true, + "inverseBindPoseMatrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, -2.89521, -117.569, 1.39453, 1.0 ] + }, { + "name" : "l_arm_JNT", + "matrix" : [ 0.421571, -0.904401, -0.065849, 0.0, 0.517137, 0.180132, 0.836733, 0.0, -0.744881, -0.386795, 0.543638, 0.0, 10.2653, 0.0, 0.0, 1.0 ], + "children" : [ 8 ], + "visible" : true, + "inverseBindPoseMatrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, -13.1738, -116.164, 1.39451, 1.0 ] + }, { + "name" : "l_forearm_JNT", + "matrix" : [ -0.073871, 0.0, 0.997268, 0.0, -3.91E-4, 1.0, 0.0, 0.0, -0.997268, -3.93E-4, -0.073871, 0.0, 25.5729, 0.0, 0.0, 1.0 ], + "children" : [ 9 ], + "visible" : true, + "inverseBindPoseMatrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, -38.7466, -116.164, 1.39451, 1.0 ] + }, { + "name" : "l_hand_JNT", + "matrix" : [ 0.738915, 0.444766, -0.506149, 0.0, -0.59918, 0.777334, -0.191665, 0.0, 0.308201, 0.444898, 0.840879, 0.0, 19.8068, -0.345714, 1.00359, 1.0 ], + "children" : [ 10, 14, 18, 22, 26 ], + "visible" : true, + "inverseBindPoseMatrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, -58.5534, -115.818, 0.390923, 1.0 ] + }, { + "name" : "l_handThumb1_JNT", + "matrix" : [ 0.782913, -0.117863, 0.610865, 0.0, 0.011962, 0.984561, 0.174635, 0.0, -0.622017, -0.129417, 0.772235, 0.0, 2.27648, -1.65194, 3.31969, 1.0 ], + "children" : [ 11 ], + "visible" : true, + "inverseBindPoseMatrix" : [ 0.707107, 0.0, -0.707107, 0.0, 0.0, 1.0, 0.0, 0.0, 0.707107, 0.0, 0.707107, 0.0, -45.0842, -114.166, 40.9423, 1.0 ] + }, { + "name" : "l_handThumb2_JNT", + "matrix" : [ 0.830425, -0.487404, -0.269872, 0.0, 0.464771, 0.873169, -0.146844, 0.0, 0.307216, -0.003486, 0.951633, 0.0, 3.0735, 0.0, 0.0, 1.0 ], + "children" : [ 12 ], + "visible" : true, + "inverseBindPoseMatrix" : [ 0.707107, 0.0, -0.707108, 0.0, 0.0, 1.0, 0.0, 0.0, 0.707108, 0.0, 0.707107, 0.0, -48.1577, -114.166, 40.9423, 1.0 ] + }, { + "name" : "l_handThumb3_JNT", + "matrix" : [ 0.98882, -0.149117, 0.0, 0.0, 0.149117, 0.98882, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 3.37693, 0.0, 0.0, 1.0 ], + "children" : [ 13 ], + "visible" : true, + "inverseBindPoseMatrix" : [ 0.707107, 0.0, -0.707108, 0.0, 0.0, 1.0, 0.0, 0.0, 0.707107, 0.0, 0.707107, 0.0, -51.5344, -114.166, 40.9423, 1.0 ] + }, { + "name" : "l_handThumb4_JNT", + "matrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 3.92326, 0.0, 0.0, 1.0 ], + "visible" : true + }, { + "name" : "l_handIndex1_JNT", + "matrix" : [ 0.904938, -0.425377, 0.011949, 0.0, 0.425382, 0.905011, 0.002209, 0.0, -0.011754, 0.003084, 1.0, 0.0, 9.34022, -0.291901, 4.04881, 1.0 ], + "children" : [ 15 ], + "visible" : true, + "inverseBindPoseMatrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, -67.8936, -115.526, -3.65789, 1.0 ] + }, { + "name" : "l_handIndex2_JNT", + "matrix" : [ 0.973047, -0.230606, 0.0, 0.0, 0.230606, 0.973047, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 4.09938, 0.0, 0.0, 1.0 ], + "children" : [ 16 ], + "visible" : true, + "inverseBindPoseMatrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, -71.993, -115.526, -3.65788, 1.0 ] + }, { + "name" : "l_handIndex3_JNT", + "matrix" : [ 0.973047, -0.230606, 0.0, 0.0, 0.230606, 0.973047, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.57415, 0.0, 0.0, 1.0 ], + "children" : [ 17 ], + "visible" : true, + "inverseBindPoseMatrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, -74.5672, -115.526, -3.65788, 1.0 ] + }, { + "name" : "l_handIndex4_JNT", + "matrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.56603, 0.0, 0.0, 1.0 ], + "visible" : true + }, { + "name" : "l_handPinky1_JNT", + "matrix" : [ 0.996226, -0.081261, -0.030513, 0.0, 0.081431, 0.996669, 0.004384, 0.0, 0.030055, -0.006852, 0.999525, 0.0, 8.45263, -1.52385, -3.88068, 1.0 ], + "children" : [ 19 ], + "visible" : true, + "inverseBindPoseMatrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, -67.0061, -114.294, 4.2716, 1.0 ] + }, { + "name" : "l_handPinky2_JNT", + "matrix" : [ 0.973047, -0.230606, 0.0, 0.0, 0.230606, 0.973047, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 3.07304, 0.0, 0.0, 1.0 ], + "children" : [ 20 ], + "visible" : true, + "inverseBindPoseMatrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, -70.0791, -114.294, 4.2716, 1.0 ] + }, { + "name" : "l_handPinky3_JNT", + "matrix" : [ 0.973047, -0.230606, 0.0, 0.0, 0.230606, 0.973047, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.96712, 0.0, 0.0, 1.0 ], + "children" : [ 21 ], + "visible" : true, + "inverseBindPoseMatrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, -72.0462, -114.294, 4.27159, 1.0 ] + }, { + "name" : "l_handPinky4_JNT", + "matrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.8257, 0.0, 0.0, 1.0 ], + "visible" : true + }, { + "name" : "l_handRing1_JNT", + "matrix" : [ 0.980994, -0.191551, 0.030976, 0.0, 0.19168, 0.981457, -0.001225, 0.0, -0.030167, 0.007139, 0.999519, 0.0, 9.86254, -0.583908, -1.401, 1.0 ], + "children" : [ 23 ], + "visible" : true, + "inverseBindPoseMatrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, -68.416, -115.234, 1.79193, 1.0 ] + }, { + "name" : "l_handRing2_JNT", + "matrix" : [ 0.973047, -0.230606, 0.0, 0.0, 0.230606, 0.973047, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 3.90873, 0.0, 0.0, 1.0 ], + "children" : [ 24 ], + "visible" : true, + "inverseBindPoseMatrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, -72.3247, -115.234, 1.79192, 1.0 ] + }, { + "name" : "l_handRing3_JNT", + "matrix" : [ 0.973047, -0.230606, 0.0, 0.0, 0.230606, 0.973047, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.36478, 0.0, 0.0, 1.0 ], + "children" : [ 25 ], + "visible" : true, + "inverseBindPoseMatrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, -74.6895, -115.234, 1.79192, 1.0 ] + }, { + "name" : "l_handRing4_JNT", + "matrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.88243, 0.0, 0.0, 1.0 ], + "visible" : true + }, { + "name" : "l_handMiddle1_JNT", + "matrix" : [ 0.953413, -0.301668, 0.0, 0.0, 0.301668, 0.953413, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 10.0737, -0.408325, 1.31404, 1.0 ], + "children" : [ 27 ], + "visible" : true, + "inverseBindPoseMatrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, -68.6272, -115.41, -0.923121, 1.0 ] + }, { + "name" : "l_handMiddle2_JNT", + "matrix" : [ 0.973047, -0.230606, 0.0, 0.0, 0.230606, 0.973047, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 4.2249, 0.0, 0.0, 1.0 ], + "children" : [ 28 ], + "visible" : true, + "inverseBindPoseMatrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, -72.8521, -115.41, -0.923118, 1.0 ] + }, { + "name" : "l_handMiddle3_JNT", + "matrix" : [ 0.973047, -0.230606, 0.0, 0.0, 0.230606, 0.973048, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.46916, 0.0, 0.0, 1.0 ], + "children" : [ 29 ], + "visible" : true, + "inverseBindPoseMatrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, -75.3213, -115.41, -0.923117, 1.0 ] + }, { + "name" : "l_handMiddle4_JNT", + "matrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 3.28131, 0.0, 0.0, 1.0 ], + "visible" : true + }, { + "name" : "r_shoulder_JNT", + "matrix" : [ 0.999696, 0.01745, -0.017452, 0.0, -0.017145, 0.999701, 0.01745, 0.0, 0.017751, -0.017145, 0.999696, 0.0, -2.88677, 12.5391, -0.53497, 1.0 ], + "children" : [ 31 ], + "visible" : true, + "inverseBindPoseMatrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.87821, -117.569, 1.39453, 1.0 ] + }, { + "name" : "r_arm_JNT", + "matrix" : [ 0.148671, 0.988778, -0.014664, 0.0, -0.988733, 0.14837, -0.019851, 0.0, -0.017453, 0.01745, 0.999695, 0.0, -10.2653, 0.0, 0.0, 1.0 ], + "children" : [ 32 ], + "visible" : true, + "inverseBindPoseMatrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 13.1303, -116.164, 1.39455, 1.0 ] + }, { + "name" : "r_forearm_JNT", + "matrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 4.01E-4, 0.0, 0.0, -4.01E-4, 1.0, 0.0, -25.5729, 0.0, 0.0, 1.0 ], + "children" : [ 33 ], + "visible" : true, + "inverseBindPoseMatrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 38.7032, -116.164, 1.39456, 1.0 ] + }, { + "name" : "r_hand_JNT", + "matrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, -4.01E-4, 0.0, 0.0, 4.01E-4, 1.0, 0.0, -19.807, -0.346, 1.00358, 1.0 ], + "children" : [ 34, 38, 42, 46, 50 ], + "visible" : true, + "inverseBindPoseMatrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 58.5102, -115.818, 0.390979, 1.0 ] + }, { + "name" : "r_handThumb1_JNT", + "matrix" : [ 0.653433, 0.24549, -0.716073, 0.0, -0.244838, 0.963648, 0.106945, 0.0, 0.716296, 0.105441, 0.689785, 0.0, -2.27647, -1.65195, 3.31969, 1.0 ], + "children" : [ 35 ], + "visible" : true, + "inverseBindPoseMatrix" : [ 0.707106, 0.0, 0.707106, 0.0, 0.0, 1.0, 0.0, 0.0, -0.707106, 0.0, 0.707106, 0.0, 45.0536, -114.166, 40.9117, 1.0 ] + }, { + "name" : "r_handThumb2_JNT", + "matrix" : [ 0.867302, 0.0, 0.497783, 0.0, 0.0, 1.0, 0.0, 0.0, -0.497783, 0.0, 0.867301, 0.0, -3.0735, 0.0, 0.0, 1.0 ], + "children" : [ 36 ], + "visible" : true, + "inverseBindPoseMatrix" : [ 0.707106, 0.0, 0.707106, 0.0, 0.0, 1.0, 0.0, 0.0, -0.707106, 0.0, 0.707106, 0.0, 48.127, -114.166, 40.9117, 1.0 ] + }, { + "name" : "r_handThumb3_JNT", + "matrix" : [ 0.996311, 0.0, 0.085813, 0.0, 0.0, 1.0, 0.0, 0.0, -0.085813, 0.0, 0.996311, 0.0, -3.37693, 0.0, 0.0, 1.0 ], + "children" : [ 37 ], + "visible" : true, + "inverseBindPoseMatrix" : [ 0.707106, 0.0, 0.707107, 0.0, 0.0, 1.0, 0.0, 0.0, -0.707106, 0.0, 0.707107, 0.0, 51.504, -114.166, 40.9117, 1.0 ] + }, { + "name" : "r_handThumb4_JNT", + "matrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, -3.923, 0.0, 0.0, 1.0 ], + "visible" : true + }, { + "name" : "r_handRing1_JNT", + "matrix" : [ 0.915131, 0.400047, -0.049976, 0.0, -0.400717, 0.916194, -0.003754, 0.0, 0.044286, 0.023462, 0.998743, 0.0, -9.86253, -0.583984, -1.40101, 1.0 ], + "children" : [ 39 ], + "visible" : true, + "inverseBindPoseMatrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 68.3727, -115.234, 1.79199, 1.0 ] + }, { + "name" : "r_handRing2_JNT", + "matrix" : [ 0.94204, 0.335501, 0.0, 0.0, -0.335501, 0.94204, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, -3.90872, 0.0, 0.0, 1.0 ], + "children" : [ 40 ], + "visible" : true, + "inverseBindPoseMatrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 72.2814, -115.234, 1.79199, 1.0 ] + }, { + "name" : "r_handRing3_JNT", + "matrix" : [ 0.94204, 0.335501, 0.0, 0.0, -0.335501, 0.94204, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, -2.36478, 0.0, 0.0, 1.0 ], + "children" : [ 41 ], + "visible" : true, + "inverseBindPoseMatrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 74.6462, -115.234, 1.792, 1.0 ] + }, { + "name" : "r_handRing4_JNT", + "matrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, -2.882, 0.0, 0.0, 1.0 ], + "visible" : true + }, { + "name" : "r_handPinky1_JNT", + "matrix" : [ 0.863063, 0.499949, -0.071924, 0.0, -0.501878, 0.864874, -0.010555, 0.0, 0.056928, 0.045207, 0.997354, 0.0, -8.45262, -1.52391, -3.88068, 1.0 ], + "children" : [ 43 ], + "visible" : true, + "inverseBindPoseMatrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 66.9628, -114.294, 4.27166, 1.0 ] + }, { + "name" : "r_handPinky2_JNT", + "matrix" : [ 0.94204, 0.335501, 0.0, 0.0, -0.335501, 0.94204, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, -3.07304, 0.0, 0.0, 1.0 ], + "children" : [ 44 ], + "visible" : true, + "inverseBindPoseMatrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 70.0358, -114.294, 4.27167, 1.0 ] + }, { + "name" : "r_handPinky3_JNT", + "matrix" : [ 0.94204, 0.335501, 0.0, 0.0, -0.335501, 0.94204, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, -1.96712, 0.0, 0.0, 1.0 ], + "children" : [ 45 ], + "visible" : true, + "inverseBindPoseMatrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 72.0029, -114.294, 4.27168, 1.0 ] + }, { + "name" : "r_handPinky4_JNT", + "matrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, -2.826, 0.0, 0.0, 1.0 ], + "visible" : true + }, { + "name" : "r_handMiddle1_JNT", + "matrix" : [ 0.944916, 0.327312, 0.0, 0.0, -0.327312, 0.944916, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, -10.0737, -0.408401, 1.31403, 1.0 ], + "children" : [ 47 ], + "visible" : true, + "inverseBindPoseMatrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 68.5839, -115.409, -0.923056, 1.0 ] + }, { + "name" : "r_handMiddle2_JNT", + "matrix" : [ 0.94204, 0.335501, 0.0, 0.0, -0.335501, 0.94204, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, -4.2249, 0.0, 0.0, 1.0 ], + "children" : [ 48 ], + "visible" : true, + "inverseBindPoseMatrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 72.8088, -115.409, -0.923044, 1.0 ] + }, { + "name" : "r_handMiddle3_JNT", + "matrix" : [ 0.94204, 0.335501, 0.0, 0.0, -0.335501, 0.94204, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, -2.46917, 0.0, 0.0, 1.0 ], + "children" : [ 49 ], + "visible" : true, + "inverseBindPoseMatrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 75.278, -115.409, -0.92304, 1.0 ] + }, { + "name" : "r_handMiddle4_JNT", + "matrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, -3.281, 0.0, 0.0, 1.0 ], + "visible" : true + }, { + "name" : "r_handIndex1_JNT", + "matrix" : [ 0.980248, 0.186022, 0.067154, 0.0, -0.186597, 0.982434, 0.002344, 0.0, -0.065538, -0.014828, 0.99774, 0.0, -9.34022, -0.291962, 4.0488, 1.0 ], + "children" : [ 51 ], + "visible" : true, + "inverseBindPoseMatrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 67.8504, -115.526, -3.65782, 1.0 ] + }, { + "name" : "r_handIndex2_JNT", + "matrix" : [ 0.94204, 0.335501, 0.0, 0.0, -0.335501, 0.94204, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, -4.09938, 0.0, 0.0, 1.0 ], + "children" : [ 52 ], + "visible" : true, + "inverseBindPoseMatrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 71.9498, -115.526, -3.65782, 1.0 ] + }, { + "name" : "r_handIndex3_JNT", + "matrix" : [ 0.94204, 0.335501, 0.0, 0.0, -0.335501, 0.94204, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, -2.57415, 0.0, 0.0, 1.0 ], + "children" : [ 53 ], + "visible" : true, + "inverseBindPoseMatrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 74.5239, -115.526, -3.65782, 1.0 ] + }, { + "name" : "r_handIndex4_JNT", + "matrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, -2.566, 0.0, 0.0, 1.0 ], + "visible" : true + }, { + "name" : "neck_JNT", + "matrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 0.998172, -0.06044, 0.0, 0.0, 0.06044, 0.998172, 0.0, 0.0, 17.0656, -0.695395, 1.0 ], + "children" : [ 55 ], + "visible" : true, + "inverseBindPoseMatrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, -0.008488, -122.095, 1.55495, 1.0 ] + }, { + "name" : "head_JNT", + "matrix" : [ 0.995828, 0.087837, -0.024703, 0.0, -0.081637, 0.978626, 0.188753, 0.0, 0.040755, -0.185949, 0.981714, 0.0, 0.0, 8.13757, 2.14518, 1.0 ], + "children" : [ 56, 59, 62, 65, 66, 67, 68 ], + "visible" : true, + "inverseBindPoseMatrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, -0.021705, -128.828, -2.00444, 1.0 ] + }, { + "name" : "hair_01_JNT", + "matrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 11.442, 24.1427, -1.69867, 1.0 ], + "children" : [ 57 ], + "visible" : true + }, { + "name" : "hair_01_01_JNT", + "matrix" : [ 0.0, 0.0, -1.0, 0.0, -0.093641, 0.995606, 0.0, 0.0, 0.995606, 0.093641, 0.0, 0.0, 0.0, -9.01569, 0.0, 1.0 ], + "children" : [ 58 ], + "visible" : true + }, { + "name" : "hair_01_02_JNT", + "matrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, -11.0805, 0.0, 1.0 ], + "visible" : true + }, { + "name" : "hair_02_JNT", + "matrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, -13.1304, 24.2143, -1.69866, 1.0 ], + "children" : [ 60 ], + "visible" : true + }, { + "name" : "hair_02_01_JNT", + "matrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, -9.01563, 0.0, 1.0 ], + "children" : [ 61 ], + "visible" : true + }, { + "name" : "hair_02_02_JNT", + "matrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, -11.0805, 0.0, 1.0 ], + "visible" : true + }, { + "name" : "hair_03_JNT", + "matrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 24.2142, -13.2264, 1.0 ], + "children" : [ 63 ], + "visible" : true + }, { + "name" : "hair_03_01_JNT", + "matrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, -9.01563, 0.0, 1.0 ], + "children" : [ 64 ], + "visible" : true + }, { + "name" : "hair_03_02_JNT", + "matrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, -11.0805, 0.0, 1.0 ], + "visible" : true + }, { + "name" : "l_earring_accessory_JNT", + "matrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 10.936, 6.972, 0.888, 1.0 ], + "visible" : true + }, { + "name" : "r_earring_accessory_JNT", + "matrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, -11.0026, 6.74516, 0.187242, 1.0 ], + "visible" : true + }, { + "name" : "l_eye_JNT", + "matrix" : [ 0.997963, -0.003027, 0.063724, 0.0, -0.003026, 0.995503, 0.094684, 0.0, -0.063724, -0.094684, 0.993466, 0.0, 4.68487, 12.7498, 9.96268, 1.0 ], + "visible" : true, + "inverseBindPoseMatrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, -4.74966, -141.45, -10.6596, 1.0 ] + }, { + "name" : "r_eye_JNT", + "matrix" : [ 0.997966, -0.002933, 0.063684, 0.0, -0.002932, 0.995772, 0.091809, 0.0, -0.063684, -0.091809, 0.993738, 0.0, -4.77108, 12.7498, 9.96268, 1.0 ], + "visible" : true, + "inverseBindPoseMatrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 4.70629, -141.45, -10.6596, 1.0 ] + }, { + "name" : "r_upleg_JNT", + "matrix" : [ 0.927337, -0.198173, 0.317448, 0.0, 0.278028, 0.93264, -0.229963, 0.0, -0.250492, 0.301512, 0.919969, 0.0, -7.5159, 0.0, 0.0, 1.0 ], + "children" : [ 70 ], + "visible" : true, + "inverseBindPoseMatrix" : [ 1.0, -0.002495, -1.16E-4, 0.0, 0.002493, 0.999837, -0.017917, 0.0, 1.61E-4, 0.017917, 0.99984, 0.0, 7.32992, -80.0324, 2.84741, 1.0 ] + }, { + "name" : "r_leg_JNT", + "matrix" : [ 0.997732, 0.060039, 0.030441, 0.0, -0.067243, 0.9099, 0.409341, 0.0, -0.003122, -0.41046, 0.911874, 0.0, -0.724057, -37.7363, 2.80023, 1.0 ], + "children" : [ 71 ], + "visible" : true, + "inverseBindPoseMatrix" : [ 1.0, 0.002998, 0.0, 0.0, -0.002998, 0.999857, 0.016638, 0.0, 0.0, -0.016638, 0.999862, 0.0, 8.28614, -42.2277, -1.41208, 1.0 ] + }, { + "name" : "r_foot_JNT", + "matrix" : [ 0.964557, 0.026598, 0.262529, 0.0, 0.024923, 0.981276, -0.190988, 0.0, -0.262693, 0.190762, 0.945834, 0.0, 1.26E-4, -34.5752, -1.6048, 1.0 ], + "children" : [ 72 ], + "visible" : true, + "inverseBindPoseMatrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 9.09E-4, 0.0, 0.0, -9.09E-4, 1.0, 0.0, 8.26299, -7.67328, 0.312986, 1.0 ] + }, { + "name" : "r_toebase_JNT", + "matrix" : [ 0.0, -0.103501, 0.994629, 0.0, 0.0, 0.994629, 0.103501, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, -6.10491, 11.1619, 1.0 ], + "children" : [ 73 ], + "visible" : true, + "inverseBindPoseMatrix" : [ 0.0, 0.0, -1.0, 0.0, -0.102591, 0.994724, 0.0, 0.0, 0.994724, 0.102591, 0.0, 0.0, -10.6284, -2.68276, -8.26298, 1.0 ] + }, { + "name" : "joint1", + "matrix" : [ 0.0, 0.0, -1.0, 0.0, -0.108623, 0.994083, 0.0, 0.0, 0.994083, 0.108623, 0.0, 0.0, 5.7477, 0.0, 0.0, 1.0 ], + "visible" : true + }, { + "name" : "l_upleg_JNT", + "matrix" : [ 0.969105, -0.243372, 0.040065, 0.0, 0.242338, 0.969759, 0.028984, 0.0, -0.045907, -0.018379, 0.998777, 0.0, 7.51591, 0.0, 0.0, 1.0 ], + "children" : [ 75 ], + "visible" : true, + "inverseBindPoseMatrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 0.999881, -0.015441, 0.0, 0.0, 0.015441, 0.999881, 0.0, -7.50515, -80.0204, 2.6501, 1.0 ] + }, { + "name" : "l_leg_JNT", + "matrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 0.993288, -0.115665, 0.0, 0.0, 0.115665, 0.993288, 0.0, 2.16E-4, -37.7436, 2.62906, 1.0 ], + "children" : [ 76 ], + "visible" : true, + "inverseBindPoseMatrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 0.999822, 0.018881, 0.0, 0.0, -0.018881, 0.999822, 0.0, -7.50542, -42.2526, -1.42976, 1.0 ] + }, { + "name" : "l_foot_JNT", + "matrix" : [ 0.996936, 0.072648, -0.029003, 0.0, -0.070636, 0.995367, 0.065233, 0.0, 0.033608, -0.062984, 0.997448, 0.0, 0.0, -34.5752, -1.6048, 1.0 ], + "children" : [ 77 ], + "visible" : true, + "inverseBindPoseMatrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 9.11E-4, 0.0, 0.0, -9.11E-4, 1.0, 0.0, -7.50523, -7.67329, 0.31298, 1.0 ] + }, { + "name" : "l_toebase_JNT", + "matrix" : [ 1.9E-4, -0.10218, 0.994766, 0.0, 0.0, 0.994766, 0.10218, 0.0, -1.0, 0.0, 1.81E-4, 0.0, 0.0, -6.10494, 11.1619, 1.0 ], + "children" : [ 78 ], + "visible" : true, + "inverseBindPoseMatrix" : [ 0.0, 0.0, -1.0, 0.0, -0.102591, 0.994724, 0.0, 0.0, 0.994724, 0.102591, 0.0, 0.0, -10.6284, -2.68276, 7.50523, 1.0 ] + }, { + "name" : "joint2", + "matrix" : [ 0.0, 0.0, -1.0, 0.0, -0.104271, 0.994549, 0.0, 0.0, 0.994549, 0.104271, 0.0, 0.0, 5.91715, 0.0, 0.0, 1.0 ], + "visible" : true + }, { + "name" : "Model", + "matrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ], + "children" : [ 80, 81, 82, 83, 84, 85, 86, 87 ], + "visible" : true, + "lightingMode" : "lit-solid" + }, { + "name" : "R_New_Eye", + "matrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, -1.0, 1.0 ], + "visible" : true, + "model" : { + "color" : [ 1.0, 1.0, 1.0, 1.0 ], + "material" : 8, + "mesh" : 0, + "shader" : 1 + } + }, { + "name" : "L_New_Eye", + "matrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, -1.0, 1.0 ], + "visible" : true, + "model" : { + "color" : [ 1.0, 1.0, 1.0, 1.0 ], + "material" : 8, + "mesh" : 1, + "shader" : 1 + } + }, { + "name" : "newhair", + "matrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ], + "visible" : true, + "model" : { + "color" : [ 1.0, 1.0, 1.0, 1.0 ], + "material" : 9, + "mesh" : 2, + "shader" : 1 + } + }, { + "name" : "OutFit_Bottom", + "matrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ], + "visible" : true, + "model" : { + "color" : [ 1.0, 1.0, 1.0, 1.0 ], + "material" : 10, + "mesh" : 3, + "shader" : 1 + } + }, { + "name" : "OutFit_Top", + "matrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ], + "visible" : true, + "model" : { + "color" : [ 1.0, 1.0, 1.0, 1.0 ], + "material" : 11, + "mesh" : 4, + "shader" : 1 + } + }, { + "name" : "Shoes_Shoes01_Female_Adult_Thumbnail_GEO", + "matrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ], + "visible" : true, + "model" : { + "color" : [ 1.0, 1.0, 1.0, 1.0 ], + "material" : 12, + "mesh" : 5, + "shader" : 1 + } + }, { + "name" : "Head_GEO", + "matrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ], + "visible" : true, + "model" : { + "color" : [ 1.0, 1.0, 1.0, 1.0 ], + "material" : 7, + "mesh" : 6, + "shader" : 2 + } + }, { + "name" : "Body_GEO", + "matrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ], + "visible" : true, + "model" : { + "color" : [ 1.0, 1.0, 1.0, 1.0 ], + "material" : 6, + "mesh" : 9, + "shader" : 2 + } + }, { + "name" : "directionalLight1", + "matrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 91.3751, 284.323, 1.0 ], + "visible" : true + }, { + "name" : "BackGround", + "matrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ], + "visible" : true, + "model" : { + "color" : [ 1.0, 1.0, 1.0, 1.0 ], + "material" : 5, + "mesh" : 7, + "shader" : 4 + } + }, { + "name" : "Ground", + "matrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ], + "visible" : true, + "model" : { + "color" : [ 1.0, 1.0, 1.0, 1.0 ], + "material" : 5, + "mesh" : 8, + "shader" : 4 + } + }, { + "name" : "Idle", + "size" : [ 30.0, 30.0 ], + "matrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, -82.0, 64.0, -1.0, 1.0 ], + "behavior" : [ 0 ], + "visible" : true, + "model" : { + "color" : [ 1.0, 1.0, 1.0, 1.0 ], + "material" : 1, + "mesh" : 10, + "shader" : 3 + } + }, { + "name" : "Squat", + "size" : [ 30.0, 30.0 ], + "matrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, -85.0, 94.0, 1.0, 1.0 ], + "behavior" : [ 1 ], + "visible" : true, + "model" : { + "color" : [ 1.0, 1.0, 1.0, 1.0 ], + "material" : 2, + "mesh" : 10, + "shader" : 3 + } + }, { + "name" : "JumpingJack", + "size" : [ 30.0, 30.0 ], + "matrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, -75.0, 124.0, 0.0, 1.0 ], + "behavior" : [ 2 ], + "visible" : true, + "model" : { + "color" : [ 1.0, 1.0, 1.0, 1.0 ], + "material" : 3, + "mesh" : 10, + "shader" : 3 + } + }, { + "name" : "Lunge", + "size" : [ 30.0, 30.0 ], + "matrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, -55.0, 154.0, 0.0, 1.0 ], + "behavior" : [ 3 ], + "visible" : true, + "model" : { + "color" : [ 1.0, 1.0, 1.0, 1.0 ], + "material" : 4, + "mesh" : 10, + "shader" : 3 + } + }, { + "name" : "Backdrop", + "matrix" : [ 0.01, 0.0, 0.0, 0.0, 0.0, 0.01, 0.0, 0.0, 0.0, 0.0, 0.01, 0.0, 0.0, 0.0, 0.0, 1.0 ], + "children" : [ 89, 90 ], + "visible" : true, + "lightingMode" : "lit" + } ], + "meshes" : [ { + "uri" : "exercise/model.dae.bin", + "attributes" : 223, + "primitive" : "TRIANGLES", + "indices" : { + "byteOffset" : 0, + "byteLength" : 2520 + }, + "positions" : { + "byteOffset" : 2520, + "byteLength" : 3168 + }, + "normals" : { + "byteOffset" : 5688, + "byteLength" : 3168 + }, + "textures" : { + "byteOffset" : 8856, + "byteLength" : 2112 + }, + "tangents" : { + "byteOffset" : 10968, + "byteLength" : 3168 + }, + "skeleton" : 0, + "joints0" : { + "byteOffset" : 14136, + "byteLength" : 4224 + }, + "weights0" : { + "byteOffset" : 18360, + "byteLength" : 4224 + } + }, { + "uri" : "exercise/model.dae.bin", + "attributes" : 223, + "primitive" : "TRIANGLES", + "indices" : { + "byteOffset" : 22584, + "byteLength" : 2520 + }, + "positions" : { + "byteOffset" : 25104, + "byteLength" : 3180 + }, + "normals" : { + "byteOffset" : 28284, + "byteLength" : 3180 + }, + "textures" : { + "byteOffset" : 31464, + "byteLength" : 2120 + }, + "tangents" : { + "byteOffset" : 33584, + "byteLength" : 3180 + }, + "skeleton" : 0, + "joints0" : { + "byteOffset" : 36764, + "byteLength" : 4240 + }, + "weights0" : { + "byteOffset" : 41004, + "byteLength" : 4240 + } + }, { + "uri" : "exercise/model.dae.bin", + "attributes" : 223, + "primitive" : "TRIANGLES", + "indices" : { + "byteOffset" : 45244, + "byteLength" : 25938 + }, + "positions" : { + "byteOffset" : 71182, + "byteLength" : 34092 + }, + "normals" : { + "byteOffset" : 105274, + "byteLength" : 34092 + }, + "textures" : { + "byteOffset" : 139366, + "byteLength" : 22728 + }, + "tangents" : { + "byteOffset" : 162094, + "byteLength" : 34092 + }, + "skeleton" : 0, + "joints0" : { + "byteOffset" : 196186, + "byteLength" : 45456 + }, + "weights0" : { + "byteOffset" : 241642, + "byteLength" : 45456 + } + }, { + "uri" : "exercise/model.dae.bin", + "attributes" : 223, + "primitive" : "TRIANGLES", + "indices" : { + "byteOffset" : 287098, + "byteLength" : 5988 + }, + "positions" : { + "byteOffset" : 293086, + "byteLength" : 8412 + }, + "normals" : { + "byteOffset" : 301498, + "byteLength" : 8412 + }, + "textures" : { + "byteOffset" : 309910, + "byteLength" : 5608 + }, + "tangents" : { + "byteOffset" : 315518, + "byteLength" : 8412 + }, + "skeleton" : 0, + "joints0" : { + "byteOffset" : 323930, + "byteLength" : 11216 + }, + "weights0" : { + "byteOffset" : 335146, + "byteLength" : 11216 + } + }, { + "uri" : "exercise/model.dae.bin", + "attributes" : 223, + "primitive" : "TRIANGLES", + "indices" : { + "byteOffset" : 346362, + "byteLength" : 3720 + }, + "positions" : { + "byteOffset" : 350082, + "byteLength" : 5004 + }, + "normals" : { + "byteOffset" : 355086, + "byteLength" : 5004 + }, + "textures" : { + "byteOffset" : 360090, + "byteLength" : 3336 + }, + "tangents" : { + "byteOffset" : 363426, + "byteLength" : 5004 + }, + "skeleton" : 0, + "joints0" : { + "byteOffset" : 368430, + "byteLength" : 6672 + }, + "weights0" : { + "byteOffset" : 375102, + "byteLength" : 6672 + } + }, { + "uri" : "exercise/model.dae.bin", + "attributes" : 223, + "primitive" : "TRIANGLES", + "indices" : { + "byteOffset" : 381774, + "byteLength" : 5520 + }, + "positions" : { + "byteOffset" : 387294, + "byteLength" : 7284 + }, + "normals" : { + "byteOffset" : 394578, + "byteLength" : 7284 + }, + "textures" : { + "byteOffset" : 401862, + "byteLength" : 4856 + }, + "tangents" : { + "byteOffset" : 406718, + "byteLength" : 7284 + }, + "skeleton" : 0, + "joints0" : { + "byteOffset" : 414002, + "byteLength" : 9712 + }, + "weights0" : { + "byteOffset" : 423714, + "byteLength" : 9712 + } + }, { + "uri" : "exercise/model.dae.bin", + "attributes" : 223, + "primitive" : "TRIANGLES", + "indices" : { + "byteOffset" : 433426, + "byteLength" : 34524 + }, + "positions" : { + "byteOffset" : 467950, + "byteLength" : 37824 + }, + "normals" : { + "byteOffset" : 505774, + "byteLength" : 37824 + }, + "textures" : { + "byteOffset" : 543598, + "byteLength" : 25216 + }, + "tangents" : { + "byteOffset" : 568814, + "byteLength" : 37824 + }, + "skeleton" : 0, + "joints0" : { + "byteOffset" : 606638, + "byteLength" : 50432 + }, + "weights0" : { + "byteOffset" : 657070, + "byteLength" : 50432 + } + }, { + "uri" : "exercise/model.dae.bin", + "attributes" : 31, + "primitive" : "TRIANGLES", + "indices" : { + "byteOffset" : 707502, + "byteLength" : 360 + }, + "positions" : { + "byteOffset" : 707862, + "byteLength" : 732 + }, + "normals" : { + "byteOffset" : 708594, + "byteLength" : 732 + }, + "textures" : { + "byteOffset" : 709326, + "byteLength" : 488 + }, + "tangents" : { + "byteOffset" : 709814, + "byteLength" : 732 + } + }, { + "uri" : "exercise/model.dae.bin", + "attributes" : 31, + "primitive" : "TRIANGLES", + "indices" : { + "byteOffset" : 710546, + "byteLength" : 12 + }, + "positions" : { + "byteOffset" : 710558, + "byteLength" : 48 + }, + "normals" : { + "byteOffset" : 710606, + "byteLength" : 48 + }, + "textures" : { + "byteOffset" : 710654, + "byteLength" : 32 + }, + "tangents" : { + "byteOffset" : 710686, + "byteLength" : 48 + } + }, { + "uri" : "exercise/model.dae.bin", + "attributes" : 223, + "primitive" : "TRIANGLES", + "indices" : { + "byteOffset" : 710734, + "byteLength" : 24312 + }, + "positions" : { + "byteOffset" : 735046, + "byteLength" : 33000 + }, + "normals" : { + "byteOffset" : 768046, + "byteLength" : 33000 + }, + "textures" : { + "byteOffset" : 801046, + "byteLength" : 22000 + }, + "tangents" : { + "byteOffset" : 823046, + "byteLength" : 33000 + }, + "skeleton" : 0, + "joints0" : { + "byteOffset" : 856046, + "byteLength" : 44000 + }, + "weights0" : { + "byteOffset" : 900046, + "byteLength" : 44000 + } + }, { + "uri" : "quad", + "attributes" : 0, + "primitive" : "TRIANGLES" + } ], + "cameras" : [ { + "near" : 2.5, + "far" : 1000.0, + "matrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.9138, 5.0, 1.0 ], + "fov" : 37.8492 + } ], + "lights" : [ { + "matrix" : [ 0.8950600624084473, 0.0914330929517746, 0.4364715814590454, 0.0, 0.3676385283470154, 0.4026888310909271, -0.8382623195648193, 0.0, -0.25240713357925415, 0.9107588529586792, 0.3268163800239563, 0.0, 0.0, 0.0, -1.0, 1.0 ], + "color" : [ 1.0, 1.0, 1.0 ], + "intensity" : 1.0, + "shadowMapSize" : 256, + "orthographicSize" : 4.2760005, + "shadowIntensity" : 1.0 + } ], + "materials" : [ { + "name" : "No name", + "color" : [ 1.0, 1.0, 1.0, 1.0 ], + "roughness" : 1.0, + "metallic" : 1.0, + "mipmap" : true, + "environment" : 1 + }, { + "name" : "Icons\\Icon_Idle.png", + "color" : [ 1.0, 1.0, 1.0, 1.0 ], + "roughness" : 1.0, + "metallic" : 1.0, + "mipmap" : false, + "albedoMap" : "../images/exercise/Icons/Icon_Idle.png" + }, { + "name" : "Icons\\Icon_Squat.png", + "color" : [ 1.0, 1.0, 1.0, 1.0 ], + "roughness" : 1.0, + "metallic" : 1.0, + "mipmap" : false, + "albedoMap" : "../images/exercise/Icons/Icon_Squat.png" + }, { + "name" : "Icons\\Icon_JJ.png", + "color" : [ 1.0, 1.0, 1.0, 1.0 ], + "roughness" : 1.0, + "metallic" : 1.0, + "mipmap" : false, + "albedoMap" : "../images/exercise/Icons/Icon_JJ.png" + }, { + "name" : "Icons\\Icon_Lunge.png", + "color" : [ 1.0, 1.0, 1.0, 1.0 ], + "roughness" : 1.0, + "metallic" : 1.0, + "mipmap" : false, + "albedoMap" : "../images/exercise/Icons/Icon_Lunge.png" + }, { + "name" : "Background", + "color" : [ 1.0, 1.0, 1.0, 1.0 ], + "normalRoughnessMap" : "../images/exercise/Textures/BG_NormalRoughness.png", + "albedoMetallicMap" : "../images/exercise/Textures/BG_AlbedoMetallic.png", + "roughness" : 1.0, + "metallic" : 1.0, + "mipmap" : true, + "environment" : 1 + }, { + "name" : "Body", + "color" : [ 1.0, 1.0, 1.0, 1.0 ], + "normalRoughnessMap" : "../images/exercise/Textures/Body_NormalRoughness.png", + "albedoMetallicMap" : "../images/exercise/Textures/Body_AlbedoMetallic.png", + "roughness" : 1.0, + "metallic" : 1.0, + "mipmap" : true, + "subsurfaceMap" : "../images/exercise/Textures/Body_Female_Asian_Adult_SubsurfaceColor.png", + "environment" : 1 + }, { + "name" : "Head", + "color" : [ 1.0, 1.0, 1.0, 1.0 ], + "normalRoughnessMap" : "../images/exercise/Textures/Head_NormalRoughness.png", + "albedoMetallicMap" : "../images/exercise/Textures/Head_AlbedoMetallic.png", + "roughness" : 1.0, + "metallic" : 1.0, + "mipmap" : true, + "subsurfaceMap" : "../images/exercise/Textures/Head_Female_SubsurfaceColor.png", + "environment" : 1 + }, { + "name" : "Eye", + "color" : [ 1.0, 1.0, 1.0, 1.0 ], + "normalRoughnessMap" : "../images/exercise/Textures/Eye_NormalRoughness.png", + "albedoMetallicMap" : "../images/exercise/Textures/Eye_AlbedoMetallic.png", + "roughness" : 1.0, + "metallic" : 1.0, + "mipmap" : true, + "environment" : 1 + }, { + "name" : "Hair", + "color" : [ 1.0, 1.0, 1.0, 1.0 ], + "normalRoughnessMap" : "../images/exercise/Textures/Hair_NormalRoughness.png", + "albedoMetallicMap" : "../images/exercise/Textures/Hair_AlbedoMetallic.png", + "roughness" : 1.0, + "metallic" : 1.0, + "mipmap" : true, + "environment" : 1 + }, { + "name" : "Bottom outfit", + "color" : [ 1.0, 1.0, 1.0, 1.0 ], + "normalRoughnessMap" : "../images/exercise/Textures/FitBot_NormalRoughness.png", + "albedoMetallicMap" : "../images/exercise/Textures/FitBot_AlbedoMetallic.png", + "roughness" : 1.0, + "metallic" : 1.0, + "mipmap" : true, + "environment" : 1 + }, { + "name" : "Top outfit", + "color" : [ 1.0, 1.0, 1.0, 1.0 ], + "normalRoughnessMap" : "../images/exercise/Textures/FitTop_NormalRoughness.png", + "albedoMetallicMap" : "../images/exercise/Textures/FitTop_AlbedoMetallic.png", + "roughness" : 1.0, + "metallic" : 1.0, + "mipmap" : true, + "environment" : 1 + }, { + "name" : "Shoe", + "color" : [ 1.0, 1.0, 1.0, 1.0 ], + "normalRoughnessMap" : "../images/exercise/Textures/Shoe_NormalRoughness.png", + "albedoMetallicMap" : "../images/exercise/Textures/Shoe_AlbedoMetallic.png", + "roughness" : 1.0, + "metallic" : 1.0, + "mipmap" : true, + "environment" : 1 + } ], + "environment" : [ { + "cubeInitialOrientation" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ], + "iblIntensity" : 1.0 + }, { + "cubeSpecular" : "../images/Studio/Radiance.ktx", + "cubeDiffuse" : "../images/Studio/Irradiance.ktx", + "cubeInitialOrientation" : [ 0.6716271638870239, 0.07979151606559753, -0.7365801334381104, 0.0, 0.07979151606559753, 0.9806114435195923, 0.17898204922676086, 0.0, 0.7365801334381104, -0.17898204922676086, 0.6522386074066162, 0.0, 0.0, 0.0, 0.0, 1.0 ], + "iblIntensity" : 0.75 + } ], + "shaders" : [ { + "vertex" : "../shaders/dli_pbr.vsh", + "fragment" : "../shaders/dli_pbr.fsh", + "rendererState" : "DEPTH_TEST|DEPTH_WRITE|CULL_BACK|DEPTH_FUNC:LESS_EQUAL", + "uCubeMatrix" : [ 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ], + "uMaxLOD" : 8 + }, { + "vertex" : "../shaders/dli_pbr.vsh", + "fragment" : "../shaders/dli_pbr.fsh", + "hints": [ "MODIFIES_GEOMETRY" ], + "defines" : [ "LIT", "SKINNING" ], + "rendererState" : "DEPTH_TEST|DEPTH_WRITE|CULL_BACK|DEPTH_FUNC:LESS_EQUAL", + "uCubeMatrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ], + "uMaxLOD" : 6 + }, { + "vertex" : "../shaders/dli_pbr.vsh", + "fragment" : "../shaders/dli_pbr.fsh", + "hints": [ "MODIFIES_GEOMETRY" ], + "defines" : [ "LIT", "SKINNING", "SSS" ], + "rendererState" : "DEPTH_TEST|DEPTH_WRITE|CULL_BACK|DEPTH_FUNC:LESS_EQUAL", + "uCubeMatrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ], + "uMaxLOD" : 6 + }, { + "vertex" : "dli_images.vsh", + "fragment" : "dli_images.fsh", + "rendererState" : "DEPTH_TEST|ALPHA_BLEND", + "uCubeMatrix" : [ 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ], + "uTilt" : [ 0.0, 0.0 ] + }, { + "vertex" : "../shaders/dli_pbr.vsh", + "fragment" : "../shaders/dli_pbr.fsh", + "defines" : [ "LIT", "SHADOW" ], + "rendererState" : "DEPTH_TEST|DEPTH_WRITE|CULL_BACK|DEPTH_FUNC:LESS_EQUAL", + "uCubeMatrix" : [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ], + "uMaxLOD" : 6 + } ], + "behaviors" : [ { + "url" : "on-tap-idle.lua", + "event" : "tap" + }, { + "url" : "on-tap-squat.lua", + "event" : "tap" + }, { + "url" : "on-tap-jumping-jack.lua", + "event" : "tap" + }, { + "url" : "on-tap-lunge.lua", + "event" : "tap" + }, { + "url" : "ExerciseDemo- behavior_1.lua", + "event" : "scene.loaded" + } ], + "stateMachines" : [ { + "name" : "ExerciseStateMachine", + "url" : "exercise-animations-state-machine.lua" + } ], + "animationFinishedActions" : [ { + "url" : "on-idle-to-squat-animation-finished.lua" + }, { + "url" : "on-squat-animation-finished.lua" + }, { + "url" : "on-squat-to-idle-animation-finished.lua" + }, { + "url" : "on-idle-to-jumping-jack-animation-finished.lua" + }, { + "url" : "on-jumping-jack-animation-finished.lua" + }, { + "url" : "on-jumping-jack-to-idle-animation-finished.lua" + }, { + "url" : "on-idle-to-lunge-animation-finished.lua" + }, { + "url" : "on-lunge-animation-finished.lua" + }, { + "url" : "on-lunge-to-idle-animation-finished.lua" + }, { + "url" : "on-jumping-jack-to-lunge-animation-finished.lua" + }, { + "url" : "on-jumping-jack-to-squat-animation-finished.lua" + }, { + "url" : "on-lunge-to-jumping-jack-animation-finished.lua" + }, { + "url" : "on-lunge-to-squat-animation-finished.lua" + }, { + "url" : "on-squat-to-jumping-jack-animation-finished.lua" + }, { + "url" : "on-squat-to-lunge-animation-finished.lua" + } ], + "animations" : [ { + "name" : "idleClip", + "loopCount" : 0, + "duration" : 0.0, + "endAction" : "BAKE", + "disconnectAction" : "BAKE", + "properties" : [ { + "node" : "hips_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-animation.ani", + "byteOffset" : 0, + "numKeys" : 144 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 6.0 + }, + "relative" : false + }, { + "node" : "spine_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-animation.ani", + "byteOffset" : 3024, + "numKeys" : 144 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 6.0 + }, + "relative" : false + }, { + "node" : "spine1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-animation.ani", + "byteOffset" : 6048, + "numKeys" : 144 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 6.0 + }, + "relative" : false + }, { + "node" : "spine2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-animation.ani", + "byteOffset" : 9072, + "numKeys" : 144 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 6.0 + }, + "relative" : false + }, { + "node" : "l_arm_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-animation.ani", + "byteOffset" : 12096, + "numKeys" : 144 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 6.0 + }, + "relative" : false + }, { + "node" : "l_forearm_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-animation.ani", + "byteOffset" : 15120, + "numKeys" : 144 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 6.0 + }, + "relative" : false + }, { + "node" : "r_shoulder_JNT", + "property" : "position", + "keyFramesBin" : { + "url" : "exercise/idle-animation.ani", + "byteOffset" : 18144, + "numKeys" : 144 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 6.0 + }, + "relative" : false + }, { + "node" : "r_arm_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-animation.ani", + "byteOffset" : 20592, + "numKeys" : 144 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 6.0 + }, + "relative" : false + }, { + "node" : "neck_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-animation.ani", + "byteOffset" : 23616, + "numKeys" : 144 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 6.0 + }, + "relative" : false + }, { + "node" : "head_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-animation.ani", + "byteOffset" : 26640, + "numKeys" : 144 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 6.0 + }, + "relative" : false + }, { + "node" : "l_eye_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-animation.ani", + "byteOffset" : 29664, + "numKeys" : 144 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 6.0 + }, + "relative" : false + }, { + "node" : "r_eye_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-animation.ani", + "byteOffset" : 32688, + "numKeys" : 144 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 6.0 + }, + "relative" : false + }, { + "node" : "r_upleg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-animation.ani", + "byteOffset" : 35712, + "numKeys" : 144 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 6.0 + }, + "relative" : false + }, { + "node" : "r_leg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-animation.ani", + "byteOffset" : 38736, + "numKeys" : 144 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 6.0 + }, + "relative" : false + }, { + "node" : "r_foot_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-animation.ani", + "byteOffset" : 41760, + "numKeys" : 144 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 6.0 + }, + "relative" : false + }, { + "node" : "l_upleg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-animation.ani", + "byteOffset" : 44784, + "numKeys" : 144 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 6.0 + }, + "relative" : false + }, { + "node" : "l_leg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-animation.ani", + "byteOffset" : 47808, + "numKeys" : 144 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 6.0 + }, + "relative" : false + }, { + "node" : "l_foot_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-animation.ani", + "byteOffset" : 50832, + "numKeys" : 144 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 6.0 + }, + "relative" : false + }, { + "node" : "l_toebase_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-animation.ani", + "byteOffset" : 53856, + "numKeys" : 144 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 6.0 + }, + "relative" : false + } ] + }, { + "name" : "squatClip_0", + "loopCount" : 1, + "duration" : 0.0, + "endAction" : "BAKE", + "disconnectAction" : "BAKE", + "properties" : [ { + "node" : "hips_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-animation-0.ani", + "byteOffset" : 0, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "hips_JNT", + "property" : "position", + "keyFramesBin" : { + "url" : "exercise/squat-animation-0.ani", + "byteOffset" : 1764, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "spine_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-animation-0.ani", + "byteOffset" : 3192, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "spine1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-animation-0.ani", + "byteOffset" : 4956, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "spine2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-animation-0.ani", + "byteOffset" : 6720, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "neck_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-animation-0.ani", + "byteOffset" : 8484, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "head_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-animation-0.ani", + "byteOffset" : 10248, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "hair_02_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-animation-0.ani", + "byteOffset" : 12012, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "hair_03_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-animation-0.ani", + "byteOffset" : 13776, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + } ], + "finishedActions" : [ 1 ] + }, { + "name" : "squatClip_1", + "loopCount" : 1, + "duration" : 0.0, + "endAction" : "BAKE", + "disconnectAction" : "BAKE", + "properties" : [ { + "node" : "l_arm_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-animation-1.ani", + "byteOffset" : 0, + "numKeys" : 76 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.16667 + }, + "relative" : false + }, { + "node" : "l_forearm_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-animation-1.ani", + "byteOffset" : 1596, + "numKeys" : 76 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.16667 + }, + "relative" : false + }, { + "node" : "l_hand_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-animation-1.ani", + "byteOffset" : 3192, + "numKeys" : 76 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.16667 + }, + "relative" : false + }, { + "node" : "l_handThumb1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-animation-1.ani", + "byteOffset" : 4788, + "numKeys" : 76 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.16667 + }, + "relative" : false + }, { + "node" : "l_handThumb2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-animation-1.ani", + "byteOffset" : 6384, + "numKeys" : 76 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.16667 + }, + "relative" : false + }, { + "node" : "l_handIndex1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-animation-1.ani", + "byteOffset" : 7980, + "numKeys" : 76 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.16667 + }, + "relative" : false + }, { + "node" : "l_handPinky1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-animation-1.ani", + "byteOffset" : 9576, + "numKeys" : 76 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.16667 + }, + "relative" : false + }, { + "node" : "l_handRing1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-animation-1.ani", + "byteOffset" : 11172, + "numKeys" : 76 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.16667 + }, + "relative" : false + }, { + "node" : "l_handMiddle1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-animation-1.ani", + "byteOffset" : 12768, + "numKeys" : 76 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.16667 + }, + "relative" : false + }, { + "node" : "r_shoulder_JNT", + "property" : "position", + "keyFramesBin" : { + "url" : "exercise/squat-animation-1.ani", + "byteOffset" : 14364, + "numKeys" : 76 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.16667 + }, + "relative" : false + }, { + "node" : "r_arm_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-animation-1.ani", + "byteOffset" : 15656, + "numKeys" : 76 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.16667 + }, + "relative" : false + }, { + "node" : "r_forearm_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-animation-1.ani", + "byteOffset" : 17252, + "numKeys" : 76 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.16667 + }, + "relative" : false + }, { + "node" : "r_hand_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-animation-1.ani", + "byteOffset" : 18848, + "numKeys" : 76 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.16667 + }, + "relative" : false + }, { + "node" : "r_handThumb1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-animation-1.ani", + "byteOffset" : 20444, + "numKeys" : 76 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.16667 + }, + "relative" : false + }, { + "node" : "r_handThumb2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-animation-1.ani", + "byteOffset" : 22040, + "numKeys" : 76 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.16667 + }, + "relative" : false + }, { + "node" : "r_handRing1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-animation-1.ani", + "byteOffset" : 23636, + "numKeys" : 76 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.16667 + }, + "relative" : false + }, { + "node" : "r_handPinky1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-animation-1.ani", + "byteOffset" : 25232, + "numKeys" : 76 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.16667 + }, + "relative" : false + }, { + "node" : "r_handMiddle1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-animation-1.ani", + "byteOffset" : 26828, + "numKeys" : 76 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.16667 + }, + "relative" : false + }, { + "node" : "r_handIndex1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-animation-1.ani", + "byteOffset" : 28424, + "numKeys" : 76 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.16667 + }, + "relative" : false + }, { + "node" : "l_eye_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-animation-1.ani", + "byteOffset" : 30020, + "numKeys" : 76 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.16667 + }, + "relative" : false + }, { + "node" : "r_eye_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-animation-1.ani", + "byteOffset" : 31616, + "numKeys" : 76 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.16667 + }, + "relative" : false + }, { + "node" : "r_upleg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-animation-1.ani", + "byteOffset" : 33212, + "numKeys" : 76 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.16667 + }, + "relative" : false + }, { + "node" : "r_leg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-animation-1.ani", + "byteOffset" : 34808, + "numKeys" : 76 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.16667 + }, + "relative" : false + }, { + "node" : "r_foot_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-animation-1.ani", + "byteOffset" : 36404, + "numKeys" : 76 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.16667 + }, + "relative" : false + }, { + "node" : "r_toebase_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-animation-1.ani", + "byteOffset" : 38000, + "numKeys" : 76 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.16667 + }, + "relative" : false + }, { + "node" : "l_upleg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-animation-1.ani", + "byteOffset" : 39596, + "numKeys" : 76 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.16667 + }, + "relative" : false + }, { + "node" : "l_leg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-animation-1.ani", + "byteOffset" : 41192, + "numKeys" : 76 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.16667 + }, + "relative" : false + }, { + "node" : "l_foot_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-animation-1.ani", + "byteOffset" : 42788, + "numKeys" : 76 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.16667 + }, + "relative" : false + }, { + "node" : "l_toebase_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-animation-1.ani", + "byteOffset" : 44384, + "numKeys" : 76 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.16667 + }, + "relative" : false + } ] + }, { + "name" : "jumpingJackClip", + "loopCount" : 1, + "duration" : 0.0, + "endAction" : "BAKE", + "disconnectAction" : "BAKE", + "properties" : [ { + "node" : "hips_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-animation.ani", + "byteOffset" : 0, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "hips_JNT", + "property" : "position", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-animation.ani", + "byteOffset" : 630, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "spine_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-animation.ani", + "byteOffset" : 1140, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "spine1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-animation.ani", + "byteOffset" : 1770, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "spine2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-animation.ani", + "byteOffset" : 2400, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "l_arm_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-animation.ani", + "byteOffset" : 3030, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "l_forearm_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-animation.ani", + "byteOffset" : 3660, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "l_handThumb1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-animation.ani", + "byteOffset" : 4290, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "l_handThumb2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-animation.ani", + "byteOffset" : 4920, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "l_handThumb3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-animation.ani", + "byteOffset" : 5550, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "l_handIndex1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-animation.ani", + "byteOffset" : 6180, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "l_handIndex2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-animation.ani", + "byteOffset" : 6810, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "l_handIndex3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-animation.ani", + "byteOffset" : 7440, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "l_handPinky1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-animation.ani", + "byteOffset" : 8070, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "l_handPinky2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-animation.ani", + "byteOffset" : 8700, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "l_handPinky3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-animation.ani", + "byteOffset" : 9330, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "l_handRing1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-animation.ani", + "byteOffset" : 9960, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "l_handRing2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-animation.ani", + "byteOffset" : 10590, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "l_handRing3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-animation.ani", + "byteOffset" : 11220, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "l_handMiddle1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-animation.ani", + "byteOffset" : 11850, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "l_handMiddle2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-animation.ani", + "byteOffset" : 12480, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "l_handMiddle3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-animation.ani", + "byteOffset" : 13110, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "r_arm_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-animation.ani", + "byteOffset" : 13740, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "r_forearm_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-animation.ani", + "byteOffset" : 14370, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "r_hand_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-animation.ani", + "byteOffset" : 15000, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "r_handThumb1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-animation.ani", + "byteOffset" : 15630, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "r_handThumb2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-animation.ani", + "byteOffset" : 16260, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "r_handThumb3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-animation.ani", + "byteOffset" : 16890, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "r_handRing1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-animation.ani", + "byteOffset" : 17520, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "r_handRing2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-animation.ani", + "byteOffset" : 18150, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "r_handRing3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-animation.ani", + "byteOffset" : 18780, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "r_handPinky1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-animation.ani", + "byteOffset" : 19410, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "r_handPinky2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-animation.ani", + "byteOffset" : 20040, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "r_handPinky3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-animation.ani", + "byteOffset" : 20670, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "r_handMiddle1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-animation.ani", + "byteOffset" : 21300, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "r_handMiddle2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-animation.ani", + "byteOffset" : 21930, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "r_handMiddle3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-animation.ani", + "byteOffset" : 22560, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "r_handIndex1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-animation.ani", + "byteOffset" : 23190, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "r_handIndex2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-animation.ani", + "byteOffset" : 23820, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "r_handIndex3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-animation.ani", + "byteOffset" : 24450, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "neck_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-animation.ani", + "byteOffset" : 25080, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "head_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-animation.ani", + "byteOffset" : 25710, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "l_eye_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-animation.ani", + "byteOffset" : 26340, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "r_eye_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-animation.ani", + "byteOffset" : 26970, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "r_upleg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-animation.ani", + "byteOffset" : 27600, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "r_leg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-animation.ani", + "byteOffset" : 28230, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "r_foot_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-animation.ani", + "byteOffset" : 28860, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "r_toebase_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-animation.ani", + "byteOffset" : 29490, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "l_upleg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-animation.ani", + "byteOffset" : 30120, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "l_leg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-animation.ani", + "byteOffset" : 30750, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "l_foot_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-animation.ani", + "byteOffset" : 31380, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "l_toebase_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-animation.ani", + "byteOffset" : 32010, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + } ], + "finishedActions" : [ 4 ] + }, { + "name" : "lungeClip", + "loopCount" : 1, + "duration" : 0.0, + "endAction" : "BAKE", + "disconnectAction" : "BAKE", + "properties" : [ { + "node" : "hips_JNT", + "property" : "position", + "keyFramesBin" : { + "url" : "exercise/lunge-animation.ani", + "byteOffset" : 0, + "numKeys" : 97 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 4.04167 + }, + "relative" : false + }, { + "node" : "spine_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-animation.ani", + "byteOffset" : 1649, + "numKeys" : 97 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 4.04167 + }, + "relative" : false + }, { + "node" : "spine1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-animation.ani", + "byteOffset" : 3686, + "numKeys" : 97 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 4.04167 + }, + "relative" : false + }, { + "node" : "spine2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-animation.ani", + "byteOffset" : 5723, + "numKeys" : 97 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 4.04167 + }, + "relative" : false + }, { + "node" : "l_arm_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-animation.ani", + "byteOffset" : 7760, + "numKeys" : 97 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 4.04167 + }, + "relative" : false + }, { + "node" : "l_forearm_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-animation.ani", + "byteOffset" : 9797, + "numKeys" : 97 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 4.04167 + }, + "relative" : false + }, { + "node" : "l_hand_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-animation.ani", + "byteOffset" : 11834, + "numKeys" : 97 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 4.04167 + }, + "relative" : false + }, { + "node" : "l_handThumb1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-animation.ani", + "byteOffset" : 13871, + "numKeys" : 97 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 4.04167 + }, + "relative" : false + }, { + "node" : "l_handThumb2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-animation.ani", + "byteOffset" : 15908, + "numKeys" : 97 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 4.04167 + }, + "relative" : false + }, { + "node" : "l_handThumb3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-animation.ani", + "byteOffset" : 17945, + "numKeys" : 97 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 4.04167 + }, + "relative" : false + }, { + "node" : "l_handIndex1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-animation.ani", + "byteOffset" : 19982, + "numKeys" : 97 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 4.04167 + }, + "relative" : false + }, { + "node" : "l_handIndex2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-animation.ani", + "byteOffset" : 22019, + "numKeys" : 97 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 4.04167 + }, + "relative" : false + }, { + "node" : "l_handIndex3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-animation.ani", + "byteOffset" : 24056, + "numKeys" : 97 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 4.04167 + }, + "relative" : false + }, { + "node" : "l_handPinky1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-animation.ani", + "byteOffset" : 26093, + "numKeys" : 97 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 4.04167 + }, + "relative" : false + }, { + "node" : "l_handPinky2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-animation.ani", + "byteOffset" : 28130, + "numKeys" : 97 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 4.04167 + }, + "relative" : false + }, { + "node" : "l_handPinky3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-animation.ani", + "byteOffset" : 30167, + "numKeys" : 97 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 4.04167 + }, + "relative" : false + }, { + "node" : "l_handRing1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-animation.ani", + "byteOffset" : 32204, + "numKeys" : 97 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 4.04167 + }, + "relative" : false + }, { + "node" : "l_handRing2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-animation.ani", + "byteOffset" : 34241, + "numKeys" : 97 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 4.04167 + }, + "relative" : false + }, { + "node" : "l_handRing3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-animation.ani", + "byteOffset" : 36278, + "numKeys" : 97 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 4.04167 + }, + "relative" : false + }, { + "node" : "l_handMiddle1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-animation.ani", + "byteOffset" : 38315, + "numKeys" : 97 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 4.04167 + }, + "relative" : false + }, { + "node" : "l_handMiddle2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-animation.ani", + "byteOffset" : 40352, + "numKeys" : 97 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 4.04167 + }, + "relative" : false + }, { + "node" : "l_handMiddle3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-animation.ani", + "byteOffset" : 42389, + "numKeys" : 97 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 4.04167 + }, + "relative" : false + }, { + "node" : "r_shoulder_JNT", + "property" : "position", + "keyFramesBin" : { + "url" : "exercise/lunge-animation.ani", + "byteOffset" : 44426, + "numKeys" : 97 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 4.04167 + }, + "relative" : false + }, { + "node" : "r_arm_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-animation.ani", + "byteOffset" : 46075, + "numKeys" : 97 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 4.04167 + }, + "relative" : false + }, { + "node" : "r_forearm_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-animation.ani", + "byteOffset" : 48112, + "numKeys" : 97 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 4.04167 + }, + "relative" : false + }, { + "node" : "r_hand_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-animation.ani", + "byteOffset" : 50149, + "numKeys" : 97 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 4.04167 + }, + "relative" : false + }, { + "node" : "neck_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-animation.ani", + "byteOffset" : 52186, + "numKeys" : 97 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 4.04167 + }, + "relative" : false + }, { + "node" : "head_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-animation.ani", + "byteOffset" : 54223, + "numKeys" : 97 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 4.04167 + }, + "relative" : false + }, { + "node" : "r_eye_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-animation.ani", + "byteOffset" : 56260, + "numKeys" : 97 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 4.04167 + }, + "relative" : false + }, { + "node" : "r_upleg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-animation.ani", + "byteOffset" : 58297, + "numKeys" : 97 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 4.04167 + }, + "relative" : false + }, { + "node" : "r_leg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-animation.ani", + "byteOffset" : 60334, + "numKeys" : 97 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 4.04167 + }, + "relative" : false + }, { + "node" : "r_foot_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-animation.ani", + "byteOffset" : 62371, + "numKeys" : 97 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 4.04167 + }, + "relative" : false + }, { + "node" : "l_upleg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-animation.ani", + "byteOffset" : 64408, + "numKeys" : 97 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 4.04167 + }, + "relative" : false + }, { + "node" : "l_leg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-animation.ani", + "byteOffset" : 66445, + "numKeys" : 97 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 4.04167 + }, + "relative" : false + }, { + "node" : "l_foot_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-animation.ani", + "byteOffset" : 68482, + "numKeys" : 97 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 4.04167 + }, + "relative" : false + } ], + "finishedActions" : [ 7 ] + }, { + "name" : "idleToSquatClip_0", + "loopCount" : 1, + "duration" : 0.0, + "endAction" : "BAKE", + "disconnectAction" : "BAKE", + "properties" : [ { + "node" : "hips_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-squat-animation-0.ani", + "byteOffset" : 0, + "numKeys" : 92 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.83333 + }, + "relative" : false + }, { + "node" : "hips_JNT", + "property" : "position", + "keyFramesBin" : { + "url" : "exercise/idle-to-squat-animation-0.ani", + "byteOffset" : 1932, + "numKeys" : 92 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.83333 + }, + "relative" : false + }, { + "node" : "spine_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-squat-animation-0.ani", + "byteOffset" : 3496, + "numKeys" : 92 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.83333 + }, + "relative" : false + }, { + "node" : "spine_JNT", + "property" : "position", + "keyFramesBin" : { + "url" : "exercise/idle-to-squat-animation-0.ani", + "byteOffset" : 5428, + "numKeys" : 92 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.83333 + }, + "relative" : false + }, { + "node" : "spine1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-squat-animation-0.ani", + "byteOffset" : 6992, + "numKeys" : 92 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.83333 + }, + "relative" : false + }, { + "node" : "spine2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-squat-animation-0.ani", + "byteOffset" : 8924, + "numKeys" : 92 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.83333 + }, + "relative" : false + }, { + "node" : "l_shoulder_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-squat-animation-0.ani", + "byteOffset" : 10856, + "numKeys" : 92 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.83333 + }, + "relative" : false + }, { + "node" : "l_arm_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-squat-animation-0.ani", + "byteOffset" : 12788, + "numKeys" : 92 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.83333 + }, + "relative" : false + }, { + "node" : "l_forearm_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-squat-animation-0.ani", + "byteOffset" : 14720, + "numKeys" : 92 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.83333 + }, + "relative" : false + }, { + "node" : "l_hand_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-squat-animation-0.ani", + "byteOffset" : 16652, + "numKeys" : 92 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.83333 + }, + "relative" : false + }, { + "node" : "l_handThumb1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-squat-animation-0.ani", + "byteOffset" : 18584, + "numKeys" : 92 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.83333 + }, + "relative" : false + }, { + "node" : "l_handThumb2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-squat-animation-0.ani", + "byteOffset" : 20516, + "numKeys" : 92 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.83333 + }, + "relative" : false + }, { + "node" : "l_handThumb3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-squat-animation-0.ani", + "byteOffset" : 22448, + "numKeys" : 92 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.83333 + }, + "relative" : false + }, { + "node" : "l_handIndex1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-squat-animation-0.ani", + "byteOffset" : 24380, + "numKeys" : 92 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.83333 + }, + "relative" : false + }, { + "node" : "l_handIndex2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-squat-animation-0.ani", + "byteOffset" : 26312, + "numKeys" : 92 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.83333 + }, + "relative" : false + }, { + "node" : "l_handIndex3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-squat-animation-0.ani", + "byteOffset" : 28244, + "numKeys" : 92 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.83333 + }, + "relative" : false + }, { + "node" : "l_handPinky1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-squat-animation-0.ani", + "byteOffset" : 30176, + "numKeys" : 92 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.83333 + }, + "relative" : false + }, { + "node" : "l_handPinky2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-squat-animation-0.ani", + "byteOffset" : 32108, + "numKeys" : 92 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.83333 + }, + "relative" : false + }, { + "node" : "l_handPinky3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-squat-animation-0.ani", + "byteOffset" : 34040, + "numKeys" : 92 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.83333 + }, + "relative" : false + }, { + "node" : "l_handRing1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-squat-animation-0.ani", + "byteOffset" : 35972, + "numKeys" : 92 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.83333 + }, + "relative" : false + }, { + "node" : "l_handRing2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-squat-animation-0.ani", + "byteOffset" : 37904, + "numKeys" : 92 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.83333 + }, + "relative" : false + }, { + "node" : "l_handRing3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-squat-animation-0.ani", + "byteOffset" : 39836, + "numKeys" : 92 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.83333 + }, + "relative" : false + }, { + "node" : "l_handMiddle1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-squat-animation-0.ani", + "byteOffset" : 41768, + "numKeys" : 92 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.83333 + }, + "relative" : false + }, { + "node" : "l_handMiddle2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-squat-animation-0.ani", + "byteOffset" : 43700, + "numKeys" : 92 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.83333 + }, + "relative" : false + }, { + "node" : "l_handMiddle3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-squat-animation-0.ani", + "byteOffset" : 45632, + "numKeys" : 92 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.83333 + }, + "relative" : false + }, { + "node" : "r_shoulder_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-squat-animation-0.ani", + "byteOffset" : 47564, + "numKeys" : 92 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.83333 + }, + "relative" : false + }, { + "node" : "r_shoulder_JNT", + "property" : "position", + "keyFramesBin" : { + "url" : "exercise/idle-to-squat-animation-0.ani", + "byteOffset" : 49496, + "numKeys" : 92 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.83333 + }, + "relative" : false + }, { + "node" : "r_arm_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-squat-animation-0.ani", + "byteOffset" : 51060, + "numKeys" : 92 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.83333 + }, + "relative" : false + }, { + "node" : "r_forearm_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-squat-animation-0.ani", + "byteOffset" : 52992, + "numKeys" : 92 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.83333 + }, + "relative" : false + }, { + "node" : "r_hand_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-squat-animation-0.ani", + "byteOffset" : 54924, + "numKeys" : 92 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.83333 + }, + "relative" : false + }, { + "node" : "r_handThumb1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-squat-animation-0.ani", + "byteOffset" : 56856, + "numKeys" : 92 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.83333 + }, + "relative" : false + }, { + "node" : "r_handThumb2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-squat-animation-0.ani", + "byteOffset" : 58788, + "numKeys" : 92 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.83333 + }, + "relative" : false + }, { + "node" : "r_handThumb3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-squat-animation-0.ani", + "byteOffset" : 60720, + "numKeys" : 92 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.83333 + }, + "relative" : false + }, { + "node" : "r_handRing1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-squat-animation-0.ani", + "byteOffset" : 62652, + "numKeys" : 92 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.83333 + }, + "relative" : false + }, { + "node" : "r_handRing2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-squat-animation-0.ani", + "byteOffset" : 64584, + "numKeys" : 92 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.83333 + }, + "relative" : false + }, { + "node" : "r_handRing3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-squat-animation-0.ani", + "byteOffset" : 66516, + "numKeys" : 92 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.83333 + }, + "relative" : false + }, { + "node" : "r_handPinky1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-squat-animation-0.ani", + "byteOffset" : 68448, + "numKeys" : 92 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.83333 + }, + "relative" : false + }, { + "node" : "r_handPinky2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-squat-animation-0.ani", + "byteOffset" : 70380, + "numKeys" : 92 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.83333 + }, + "relative" : false + }, { + "node" : "r_handPinky3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-squat-animation-0.ani", + "byteOffset" : 72312, + "numKeys" : 92 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.83333 + }, + "relative" : false + }, { + "node" : "r_handMiddle1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-squat-animation-0.ani", + "byteOffset" : 74244, + "numKeys" : 92 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.83333 + }, + "relative" : false + }, { + "node" : "r_handMiddle2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-squat-animation-0.ani", + "byteOffset" : 76176, + "numKeys" : 92 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.83333 + }, + "relative" : false + }, { + "node" : "r_handMiddle3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-squat-animation-0.ani", + "byteOffset" : 78108, + "numKeys" : 92 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.83333 + }, + "relative" : false + }, { + "node" : "r_handIndex1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-squat-animation-0.ani", + "byteOffset" : 80040, + "numKeys" : 92 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.83333 + }, + "relative" : false + }, { + "node" : "r_handIndex2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-squat-animation-0.ani", + "byteOffset" : 81972, + "numKeys" : 92 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.83333 + }, + "relative" : false + }, { + "node" : "r_handIndex3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-squat-animation-0.ani", + "byteOffset" : 83904, + "numKeys" : 92 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.83333 + }, + "relative" : false + }, { + "node" : "neck_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-squat-animation-0.ani", + "byteOffset" : 85836, + "numKeys" : 92 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.83333 + }, + "relative" : false + }, { + "node" : "head_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-squat-animation-0.ani", + "byteOffset" : 87768, + "numKeys" : 92 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.83333 + }, + "relative" : false + }, { + "node" : "l_eye_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-squat-animation-0.ani", + "byteOffset" : 89700, + "numKeys" : 92 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.83333 + }, + "relative" : false + }, { + "node" : "r_eye_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-squat-animation-0.ani", + "byteOffset" : 91632, + "numKeys" : 92 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.83333 + }, + "relative" : false + }, { + "node" : "r_upleg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-squat-animation-0.ani", + "byteOffset" : 93564, + "numKeys" : 92 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.83333 + }, + "relative" : false + }, { + "node" : "r_leg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-squat-animation-0.ani", + "byteOffset" : 95496, + "numKeys" : 92 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.83333 + }, + "relative" : false + }, { + "node" : "r_foot_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-squat-animation-0.ani", + "byteOffset" : 97428, + "numKeys" : 92 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.83333 + }, + "relative" : false + }, { + "node" : "r_toebase_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-squat-animation-0.ani", + "byteOffset" : 99360, + "numKeys" : 92 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.83333 + }, + "relative" : false + }, { + "node" : "l_upleg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-squat-animation-0.ani", + "byteOffset" : 101292, + "numKeys" : 92 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.83333 + }, + "relative" : false + }, { + "node" : "l_leg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-squat-animation-0.ani", + "byteOffset" : 103224, + "numKeys" : 92 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.83333 + }, + "relative" : false + }, { + "node" : "l_foot_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-squat-animation-0.ani", + "byteOffset" : 105156, + "numKeys" : 92 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.83333 + }, + "relative" : false + }, { + "node" : "l_toebase_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-squat-animation-0.ani", + "byteOffset" : 107088, + "numKeys" : 92 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.83333 + }, + "relative" : false + } ], + "finishedActions" : [ 0 ] + }, { + "name" : "idleToSquatClip_1", + "loopCount" : 1, + "duration" : 0.0, + "endAction" : "BAKE", + "disconnectAction" : "BAKE", + "properties" : [ { + "node" : "hair_02_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-squat-animation-1.ani", + "byteOffset" : 0, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "hair_03_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-squat-animation-1.ani", + "byteOffset" : 1764, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + } ] + }, { + "name" : "squatToIdleClip", + "loopCount" : 1, + "duration" : 0.0, + "endAction" : "BAKE", + "disconnectAction" : "BAKE", + "properties" : [ { + "node" : "hips_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-idle-animation.ani", + "byteOffset" : 0, + "numKeys" : 86 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.58333 + }, + "relative" : false + }, { + "node" : "hips_JNT", + "property" : "position", + "keyFramesBin" : { + "url" : "exercise/squat-to-idle-animation.ani", + "byteOffset" : 1806, + "numKeys" : 86 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.58333 + }, + "relative" : false + }, { + "node" : "spine_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-idle-animation.ani", + "byteOffset" : 3268, + "numKeys" : 86 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.58333 + }, + "relative" : false + }, { + "node" : "spine1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-idle-animation.ani", + "byteOffset" : 5074, + "numKeys" : 86 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.58333 + }, + "relative" : false + }, { + "node" : "spine2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-idle-animation.ani", + "byteOffset" : 6880, + "numKeys" : 86 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.58333 + }, + "relative" : false + }, { + "node" : "l_shoulder_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-idle-animation.ani", + "byteOffset" : 8686, + "numKeys" : 86 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.58333 + }, + "relative" : false + }, { + "node" : "l_arm_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-idle-animation.ani", + "byteOffset" : 10492, + "numKeys" : 86 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.58333 + }, + "relative" : false + }, { + "node" : "l_forearm_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-idle-animation.ani", + "byteOffset" : 12298, + "numKeys" : 86 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.58333 + }, + "relative" : false + }, { + "node" : "l_hand_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-idle-animation.ani", + "byteOffset" : 14104, + "numKeys" : 86 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.58333 + }, + "relative" : false + }, { + "node" : "l_handThumb1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-idle-animation.ani", + "byteOffset" : 15910, + "numKeys" : 86 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.58333 + }, + "relative" : false + }, { + "node" : "l_handThumb2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-idle-animation.ani", + "byteOffset" : 17716, + "numKeys" : 86 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.58333 + }, + "relative" : false + }, { + "node" : "l_handThumb3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-idle-animation.ani", + "byteOffset" : 19522, + "numKeys" : 86 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.58333 + }, + "relative" : false + }, { + "node" : "l_handIndex1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-idle-animation.ani", + "byteOffset" : 21328, + "numKeys" : 86 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.58333 + }, + "relative" : false + }, { + "node" : "l_handIndex2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-idle-animation.ani", + "byteOffset" : 23134, + "numKeys" : 86 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.58333 + }, + "relative" : false + }, { + "node" : "l_handIndex3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-idle-animation.ani", + "byteOffset" : 24940, + "numKeys" : 86 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.58333 + }, + "relative" : false + }, { + "node" : "l_handPinky1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-idle-animation.ani", + "byteOffset" : 26746, + "numKeys" : 86 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.58333 + }, + "relative" : false + }, { + "node" : "l_handPinky2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-idle-animation.ani", + "byteOffset" : 28552, + "numKeys" : 86 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.58333 + }, + "relative" : false + }, { + "node" : "l_handPinky3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-idle-animation.ani", + "byteOffset" : 30358, + "numKeys" : 86 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.58333 + }, + "relative" : false + }, { + "node" : "l_handRing1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-idle-animation.ani", + "byteOffset" : 32164, + "numKeys" : 86 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.58333 + }, + "relative" : false + }, { + "node" : "l_handRing2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-idle-animation.ani", + "byteOffset" : 33970, + "numKeys" : 86 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.58333 + }, + "relative" : false + }, { + "node" : "l_handRing3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-idle-animation.ani", + "byteOffset" : 35776, + "numKeys" : 86 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.58333 + }, + "relative" : false + }, { + "node" : "l_handMiddle1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-idle-animation.ani", + "byteOffset" : 37582, + "numKeys" : 86 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.58333 + }, + "relative" : false + }, { + "node" : "l_handMiddle2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-idle-animation.ani", + "byteOffset" : 39388, + "numKeys" : 86 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.58333 + }, + "relative" : false + }, { + "node" : "l_handMiddle3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-idle-animation.ani", + "byteOffset" : 41194, + "numKeys" : 86 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.58333 + }, + "relative" : false + }, { + "node" : "r_shoulder_JNT", + "property" : "position", + "keyFramesBin" : { + "url" : "exercise/squat-to-idle-animation.ani", + "byteOffset" : 43000, + "numKeys" : 86 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.58333 + }, + "relative" : false + }, { + "node" : "r_arm_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-idle-animation.ani", + "byteOffset" : 44462, + "numKeys" : 86 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.58333 + }, + "relative" : false + }, { + "node" : "r_forearm_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-idle-animation.ani", + "byteOffset" : 46268, + "numKeys" : 86 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.58333 + }, + "relative" : false + }, { + "node" : "r_hand_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-idle-animation.ani", + "byteOffset" : 48074, + "numKeys" : 86 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.58333 + }, + "relative" : false + }, { + "node" : "r_handThumb1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-idle-animation.ani", + "byteOffset" : 49880, + "numKeys" : 86 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.58333 + }, + "relative" : false + }, { + "node" : "r_handThumb2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-idle-animation.ani", + "byteOffset" : 51686, + "numKeys" : 86 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.58333 + }, + "relative" : false + }, { + "node" : "r_handThumb3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-idle-animation.ani", + "byteOffset" : 53492, + "numKeys" : 86 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.58333 + }, + "relative" : false + }, { + "node" : "r_handRing1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-idle-animation.ani", + "byteOffset" : 55298, + "numKeys" : 86 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.58333 + }, + "relative" : false + }, { + "node" : "r_handRing2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-idle-animation.ani", + "byteOffset" : 57104, + "numKeys" : 86 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.58333 + }, + "relative" : false + }, { + "node" : "r_handRing3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-idle-animation.ani", + "byteOffset" : 58910, + "numKeys" : 86 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.58333 + }, + "relative" : false + }, { + "node" : "r_handPinky1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-idle-animation.ani", + "byteOffset" : 60716, + "numKeys" : 86 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.58333 + }, + "relative" : false + }, { + "node" : "r_handPinky2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-idle-animation.ani", + "byteOffset" : 62522, + "numKeys" : 86 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.58333 + }, + "relative" : false + }, { + "node" : "r_handPinky3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-idle-animation.ani", + "byteOffset" : 64328, + "numKeys" : 86 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.58333 + }, + "relative" : false + }, { + "node" : "r_handMiddle1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-idle-animation.ani", + "byteOffset" : 66134, + "numKeys" : 86 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.58333 + }, + "relative" : false + }, { + "node" : "r_handMiddle2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-idle-animation.ani", + "byteOffset" : 67940, + "numKeys" : 86 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.58333 + }, + "relative" : false + }, { + "node" : "r_handMiddle3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-idle-animation.ani", + "byteOffset" : 69746, + "numKeys" : 86 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.58333 + }, + "relative" : false + }, { + "node" : "r_handIndex1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-idle-animation.ani", + "byteOffset" : 71552, + "numKeys" : 86 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.58333 + }, + "relative" : false + }, { + "node" : "r_handIndex2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-idle-animation.ani", + "byteOffset" : 73358, + "numKeys" : 86 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.58333 + }, + "relative" : false + }, { + "node" : "r_handIndex3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-idle-animation.ani", + "byteOffset" : 75164, + "numKeys" : 86 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.58333 + }, + "relative" : false + }, { + "node" : "neck_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-idle-animation.ani", + "byteOffset" : 76970, + "numKeys" : 86 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.58333 + }, + "relative" : false + }, { + "node" : "head_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-idle-animation.ani", + "byteOffset" : 78776, + "numKeys" : 86 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.58333 + }, + "relative" : false + }, { + "node" : "hair_02_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-idle-animation.ani", + "byteOffset" : 80582, + "numKeys" : 86 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.58333 + }, + "relative" : false + }, { + "node" : "hair_03_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-idle-animation.ani", + "byteOffset" : 82388, + "numKeys" : 86 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.58333 + }, + "relative" : false + }, { + "node" : "l_eye_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-idle-animation.ani", + "byteOffset" : 84194, + "numKeys" : 86 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.58333 + }, + "relative" : false + }, { + "node" : "r_eye_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-idle-animation.ani", + "byteOffset" : 86000, + "numKeys" : 86 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.58333 + }, + "relative" : false + }, { + "node" : "r_upleg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-idle-animation.ani", + "byteOffset" : 87806, + "numKeys" : 86 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.58333 + }, + "relative" : false + }, { + "node" : "r_leg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-idle-animation.ani", + "byteOffset" : 89612, + "numKeys" : 86 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.58333 + }, + "relative" : false + }, { + "node" : "r_foot_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-idle-animation.ani", + "byteOffset" : 91418, + "numKeys" : 86 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.58333 + }, + "relative" : false + }, { + "node" : "r_toebase_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-idle-animation.ani", + "byteOffset" : 93224, + "numKeys" : 86 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.58333 + }, + "relative" : false + }, { + "node" : "l_upleg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-idle-animation.ani", + "byteOffset" : 95030, + "numKeys" : 86 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.58333 + }, + "relative" : false + }, { + "node" : "l_leg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-idle-animation.ani", + "byteOffset" : 96836, + "numKeys" : 86 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.58333 + }, + "relative" : false + }, { + "node" : "l_foot_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-idle-animation.ani", + "byteOffset" : 98642, + "numKeys" : 86 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.58333 + }, + "relative" : false + }, { + "node" : "l_toebase_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-idle-animation.ani", + "byteOffset" : 100448, + "numKeys" : 86 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.58333 + }, + "relative" : false + } ], + "finishedActions" : [ 2 ] + }, { + "name" : "idleToJumpingJackClip", + "loopCount" : 1, + "duration" : 0.0, + "endAction" : "BAKE", + "disconnectAction" : "BAKE", + "properties" : [ { + "node" : "hips_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-jumping-jack-animation.ani", + "byteOffset" : 0, + "numKeys" : 65 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.70833 + }, + "relative" : false + }, { + "node" : "hips_JNT", + "property" : "position", + "keyFramesBin" : { + "url" : "exercise/idle-to-jumping-jack-animation.ani", + "byteOffset" : 1365, + "numKeys" : 65 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.70833 + }, + "relative" : false + }, { + "node" : "spine_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-jumping-jack-animation.ani", + "byteOffset" : 2470, + "numKeys" : 65 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.70833 + }, + "relative" : false + }, { + "node" : "spine1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-jumping-jack-animation.ani", + "byteOffset" : 3835, + "numKeys" : 65 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.70833 + }, + "relative" : false + }, { + "node" : "spine2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-jumping-jack-animation.ani", + "byteOffset" : 5200, + "numKeys" : 65 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.70833 + }, + "relative" : false + }, { + "node" : "l_shoulder_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-jumping-jack-animation.ani", + "byteOffset" : 6565, + "numKeys" : 65 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.70833 + }, + "relative" : false + }, { + "node" : "l_arm_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-jumping-jack-animation.ani", + "byteOffset" : 7930, + "numKeys" : 65 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.70833 + }, + "relative" : false + }, { + "node" : "l_forearm_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-jumping-jack-animation.ani", + "byteOffset" : 9295, + "numKeys" : 65 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.70833 + }, + "relative" : false + }, { + "node" : "l_hand_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-jumping-jack-animation.ani", + "byteOffset" : 10660, + "numKeys" : 65 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.70833 + }, + "relative" : false + }, { + "node" : "l_handThumb1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-jumping-jack-animation.ani", + "byteOffset" : 12025, + "numKeys" : 65 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.70833 + }, + "relative" : false + }, { + "node" : "l_handThumb2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-jumping-jack-animation.ani", + "byteOffset" : 13390, + "numKeys" : 65 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.70833 + }, + "relative" : false + }, { + "node" : "l_handThumb3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-jumping-jack-animation.ani", + "byteOffset" : 14755, + "numKeys" : 65 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.70833 + }, + "relative" : false + }, { + "node" : "l_handIndex1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-jumping-jack-animation.ani", + "byteOffset" : 16120, + "numKeys" : 65 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.70833 + }, + "relative" : false + }, { + "node" : "l_handIndex2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-jumping-jack-animation.ani", + "byteOffset" : 17485, + "numKeys" : 65 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.70833 + }, + "relative" : false + }, { + "node" : "l_handIndex3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-jumping-jack-animation.ani", + "byteOffset" : 18850, + "numKeys" : 65 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.70833 + }, + "relative" : false + }, { + "node" : "l_handPinky1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-jumping-jack-animation.ani", + "byteOffset" : 20215, + "numKeys" : 65 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.70833 + }, + "relative" : false + }, { + "node" : "l_handPinky2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-jumping-jack-animation.ani", + "byteOffset" : 21580, + "numKeys" : 65 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.70833 + }, + "relative" : false + }, { + "node" : "l_handPinky3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-jumping-jack-animation.ani", + "byteOffset" : 22945, + "numKeys" : 65 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.70833 + }, + "relative" : false + }, { + "node" : "l_handRing1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-jumping-jack-animation.ani", + "byteOffset" : 24310, + "numKeys" : 65 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.70833 + }, + "relative" : false + }, { + "node" : "l_handRing2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-jumping-jack-animation.ani", + "byteOffset" : 25675, + "numKeys" : 65 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.70833 + }, + "relative" : false + }, { + "node" : "l_handRing3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-jumping-jack-animation.ani", + "byteOffset" : 27040, + "numKeys" : 65 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.70833 + }, + "relative" : false + }, { + "node" : "l_handMiddle1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-jumping-jack-animation.ani", + "byteOffset" : 28405, + "numKeys" : 65 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.70833 + }, + "relative" : false + }, { + "node" : "l_handMiddle2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-jumping-jack-animation.ani", + "byteOffset" : 29770, + "numKeys" : 65 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.70833 + }, + "relative" : false + }, { + "node" : "l_handMiddle3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-jumping-jack-animation.ani", + "byteOffset" : 31135, + "numKeys" : 65 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.70833 + }, + "relative" : false + }, { + "node" : "r_shoulder_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-jumping-jack-animation.ani", + "byteOffset" : 32500, + "numKeys" : 65 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.70833 + }, + "relative" : false + }, { + "node" : "r_shoulder_JNT", + "property" : "position", + "keyFramesBin" : { + "url" : "exercise/idle-to-jumping-jack-animation.ani", + "byteOffset" : 33865, + "numKeys" : 65 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.70833 + }, + "relative" : false + }, { + "node" : "r_arm_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-jumping-jack-animation.ani", + "byteOffset" : 34970, + "numKeys" : 65 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.70833 + }, + "relative" : false + }, { + "node" : "r_forearm_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-jumping-jack-animation.ani", + "byteOffset" : 36335, + "numKeys" : 65 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.70833 + }, + "relative" : false + }, { + "node" : "r_hand_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-jumping-jack-animation.ani", + "byteOffset" : 37700, + "numKeys" : 65 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.70833 + }, + "relative" : false + }, { + "node" : "r_handThumb1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-jumping-jack-animation.ani", + "byteOffset" : 39065, + "numKeys" : 65 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.70833 + }, + "relative" : false + }, { + "node" : "r_handThumb2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-jumping-jack-animation.ani", + "byteOffset" : 40430, + "numKeys" : 65 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.70833 + }, + "relative" : false + }, { + "node" : "r_handThumb3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-jumping-jack-animation.ani", + "byteOffset" : 41795, + "numKeys" : 65 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.70833 + }, + "relative" : false + }, { + "node" : "r_handRing1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-jumping-jack-animation.ani", + "byteOffset" : 43160, + "numKeys" : 65 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.70833 + }, + "relative" : false + }, { + "node" : "r_handRing2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-jumping-jack-animation.ani", + "byteOffset" : 44525, + "numKeys" : 65 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.70833 + }, + "relative" : false + }, { + "node" : "r_handRing3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-jumping-jack-animation.ani", + "byteOffset" : 45890, + "numKeys" : 65 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.70833 + }, + "relative" : false + }, { + "node" : "r_handPinky1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-jumping-jack-animation.ani", + "byteOffset" : 47255, + "numKeys" : 65 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.70833 + }, + "relative" : false + }, { + "node" : "r_handPinky2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-jumping-jack-animation.ani", + "byteOffset" : 48620, + "numKeys" : 65 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.70833 + }, + "relative" : false + }, { + "node" : "r_handPinky3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-jumping-jack-animation.ani", + "byteOffset" : 49985, + "numKeys" : 65 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.70833 + }, + "relative" : false + }, { + "node" : "r_handMiddle1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-jumping-jack-animation.ani", + "byteOffset" : 51350, + "numKeys" : 65 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.70833 + }, + "relative" : false + }, { + "node" : "r_handMiddle2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-jumping-jack-animation.ani", + "byteOffset" : 52715, + "numKeys" : 65 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.70833 + }, + "relative" : false + }, { + "node" : "r_handMiddle3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-jumping-jack-animation.ani", + "byteOffset" : 54080, + "numKeys" : 65 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.70833 + }, + "relative" : false + }, { + "node" : "r_handIndex1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-jumping-jack-animation.ani", + "byteOffset" : 55445, + "numKeys" : 65 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.70833 + }, + "relative" : false + }, { + "node" : "r_handIndex2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-jumping-jack-animation.ani", + "byteOffset" : 56810, + "numKeys" : 65 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.70833 + }, + "relative" : false + }, { + "node" : "r_handIndex3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-jumping-jack-animation.ani", + "byteOffset" : 58175, + "numKeys" : 65 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.70833 + }, + "relative" : false + }, { + "node" : "neck_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-jumping-jack-animation.ani", + "byteOffset" : 59540, + "numKeys" : 65 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.70833 + }, + "relative" : false + }, { + "node" : "head_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-jumping-jack-animation.ani", + "byteOffset" : 60905, + "numKeys" : 65 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.70833 + }, + "relative" : false + }, { + "node" : "l_eye_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-jumping-jack-animation.ani", + "byteOffset" : 62270, + "numKeys" : 65 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.70833 + }, + "relative" : false + }, { + "node" : "r_eye_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-jumping-jack-animation.ani", + "byteOffset" : 63635, + "numKeys" : 65 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.70833 + }, + "relative" : false + }, { + "node" : "r_upleg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-jumping-jack-animation.ani", + "byteOffset" : 65000, + "numKeys" : 65 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.70833 + }, + "relative" : false + }, { + "node" : "r_leg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-jumping-jack-animation.ani", + "byteOffset" : 66365, + "numKeys" : 65 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.70833 + }, + "relative" : false + }, { + "node" : "r_foot_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-jumping-jack-animation.ani", + "byteOffset" : 67730, + "numKeys" : 65 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.70833 + }, + "relative" : false + }, { + "node" : "r_toebase_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-jumping-jack-animation.ani", + "byteOffset" : 69095, + "numKeys" : 65 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.70833 + }, + "relative" : false + }, { + "node" : "l_upleg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-jumping-jack-animation.ani", + "byteOffset" : 70460, + "numKeys" : 65 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.70833 + }, + "relative" : false + }, { + "node" : "l_leg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-jumping-jack-animation.ani", + "byteOffset" : 71825, + "numKeys" : 65 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.70833 + }, + "relative" : false + }, { + "node" : "l_foot_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-jumping-jack-animation.ani", + "byteOffset" : 73190, + "numKeys" : 65 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.70833 + }, + "relative" : false + }, { + "node" : "l_toebase_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-jumping-jack-animation.ani", + "byteOffset" : 74555, + "numKeys" : 65 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.70833 + }, + "relative" : false + } ], + "finishedActions" : [ 3 ] + }, { + "name" : "jumpingJackToIdleClip", + "loopCount" : 1, + "duration" : 0.0, + "endAction" : "BAKE", + "disconnectAction" : "BAKE", + "properties" : [ { + "node" : "hips_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-idle-animation.ani", + "byteOffset" : 0, + "numKeys" : 71 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.95833 + }, + "relative" : false + }, { + "node" : "hips_JNT", + "property" : "position", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-idle-animation.ani", + "byteOffset" : 1491, + "numKeys" : 71 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.95833 + }, + "relative" : false + }, { + "node" : "spine_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-idle-animation.ani", + "byteOffset" : 2698, + "numKeys" : 71 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.95833 + }, + "relative" : false + }, { + "node" : "spine1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-idle-animation.ani", + "byteOffset" : 4189, + "numKeys" : 71 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.95833 + }, + "relative" : false + }, { + "node" : "spine2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-idle-animation.ani", + "byteOffset" : 5680, + "numKeys" : 71 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.95833 + }, + "relative" : false + }, { + "node" : "l_shoulder_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-idle-animation.ani", + "byteOffset" : 7171, + "numKeys" : 71 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.95833 + }, + "relative" : false + }, { + "node" : "l_arm_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-idle-animation.ani", + "byteOffset" : 8662, + "numKeys" : 71 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.95833 + }, + "relative" : false + }, { + "node" : "l_forearm_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-idle-animation.ani", + "byteOffset" : 10153, + "numKeys" : 71 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.95833 + }, + "relative" : false + }, { + "node" : "l_hand_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-idle-animation.ani", + "byteOffset" : 11644, + "numKeys" : 71 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.95833 + }, + "relative" : false + }, { + "node" : "l_handThumb1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-idle-animation.ani", + "byteOffset" : 13135, + "numKeys" : 71 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.95833 + }, + "relative" : false + }, { + "node" : "l_handThumb2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-idle-animation.ani", + "byteOffset" : 14626, + "numKeys" : 71 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.95833 + }, + "relative" : false + }, { + "node" : "l_handThumb3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-idle-animation.ani", + "byteOffset" : 16117, + "numKeys" : 71 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.95833 + }, + "relative" : false + }, { + "node" : "l_handIndex1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-idle-animation.ani", + "byteOffset" : 17608, + "numKeys" : 71 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.95833 + }, + "relative" : false + }, { + "node" : "l_handIndex2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-idle-animation.ani", + "byteOffset" : 19099, + "numKeys" : 71 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.95833 + }, + "relative" : false + }, { + "node" : "l_handIndex3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-idle-animation.ani", + "byteOffset" : 20590, + "numKeys" : 71 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.95833 + }, + "relative" : false + }, { + "node" : "l_handPinky1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-idle-animation.ani", + "byteOffset" : 22081, + "numKeys" : 71 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.95833 + }, + "relative" : false + }, { + "node" : "l_handPinky2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-idle-animation.ani", + "byteOffset" : 23572, + "numKeys" : 71 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.95833 + }, + "relative" : false + }, { + "node" : "l_handPinky3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-idle-animation.ani", + "byteOffset" : 25063, + "numKeys" : 71 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.95833 + }, + "relative" : false + }, { + "node" : "l_handRing1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-idle-animation.ani", + "byteOffset" : 26554, + "numKeys" : 71 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.95833 + }, + "relative" : false + }, { + "node" : "l_handRing2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-idle-animation.ani", + "byteOffset" : 28045, + "numKeys" : 71 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.95833 + }, + "relative" : false + }, { + "node" : "l_handRing3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-idle-animation.ani", + "byteOffset" : 29536, + "numKeys" : 71 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.95833 + }, + "relative" : false + }, { + "node" : "l_handMiddle1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-idle-animation.ani", + "byteOffset" : 31027, + "numKeys" : 71 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.95833 + }, + "relative" : false + }, { + "node" : "l_handMiddle2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-idle-animation.ani", + "byteOffset" : 32518, + "numKeys" : 71 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.95833 + }, + "relative" : false + }, { + "node" : "l_handMiddle3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-idle-animation.ani", + "byteOffset" : 34009, + "numKeys" : 71 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.95833 + }, + "relative" : false + }, { + "node" : "r_shoulder_JNT", + "property" : "position", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-idle-animation.ani", + "byteOffset" : 35500, + "numKeys" : 71 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.95833 + }, + "relative" : false + }, { + "node" : "r_arm_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-idle-animation.ani", + "byteOffset" : 36707, + "numKeys" : 71 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.95833 + }, + "relative" : false + }, { + "node" : "r_forearm_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-idle-animation.ani", + "byteOffset" : 38198, + "numKeys" : 71 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.95833 + }, + "relative" : false + }, { + "node" : "r_hand_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-idle-animation.ani", + "byteOffset" : 39689, + "numKeys" : 71 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.95833 + }, + "relative" : false + }, { + "node" : "r_handThumb1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-idle-animation.ani", + "byteOffset" : 41180, + "numKeys" : 71 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.95833 + }, + "relative" : false + }, { + "node" : "r_handThumb2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-idle-animation.ani", + "byteOffset" : 42671, + "numKeys" : 71 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.95833 + }, + "relative" : false + }, { + "node" : "r_handThumb3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-idle-animation.ani", + "byteOffset" : 44162, + "numKeys" : 71 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.95833 + }, + "relative" : false + }, { + "node" : "r_handRing1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-idle-animation.ani", + "byteOffset" : 45653, + "numKeys" : 71 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.95833 + }, + "relative" : false + }, { + "node" : "r_handRing2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-idle-animation.ani", + "byteOffset" : 47144, + "numKeys" : 71 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.95833 + }, + "relative" : false + }, { + "node" : "r_handRing3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-idle-animation.ani", + "byteOffset" : 48635, + "numKeys" : 71 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.95833 + }, + "relative" : false + }, { + "node" : "r_handPinky1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-idle-animation.ani", + "byteOffset" : 50126, + "numKeys" : 71 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.95833 + }, + "relative" : false + }, { + "node" : "r_handPinky2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-idle-animation.ani", + "byteOffset" : 51617, + "numKeys" : 71 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.95833 + }, + "relative" : false + }, { + "node" : "r_handPinky3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-idle-animation.ani", + "byteOffset" : 53108, + "numKeys" : 71 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.95833 + }, + "relative" : false + }, { + "node" : "r_handMiddle1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-idle-animation.ani", + "byteOffset" : 54599, + "numKeys" : 71 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.95833 + }, + "relative" : false + }, { + "node" : "r_handMiddle2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-idle-animation.ani", + "byteOffset" : 56090, + "numKeys" : 71 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.95833 + }, + "relative" : false + }, { + "node" : "r_handMiddle3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-idle-animation.ani", + "byteOffset" : 57581, + "numKeys" : 71 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.95833 + }, + "relative" : false + }, { + "node" : "r_handIndex1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-idle-animation.ani", + "byteOffset" : 59072, + "numKeys" : 71 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.95833 + }, + "relative" : false + }, { + "node" : "r_handIndex2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-idle-animation.ani", + "byteOffset" : 60563, + "numKeys" : 71 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.95833 + }, + "relative" : false + }, { + "node" : "r_handIndex3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-idle-animation.ani", + "byteOffset" : 62054, + "numKeys" : 71 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.95833 + }, + "relative" : false + }, { + "node" : "neck_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-idle-animation.ani", + "byteOffset" : 63545, + "numKeys" : 71 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.95833 + }, + "relative" : false + }, { + "node" : "head_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-idle-animation.ani", + "byteOffset" : 65036, + "numKeys" : 71 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.95833 + }, + "relative" : false + }, { + "node" : "l_eye_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-idle-animation.ani", + "byteOffset" : 66527, + "numKeys" : 71 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.95833 + }, + "relative" : false + }, { + "node" : "r_eye_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-idle-animation.ani", + "byteOffset" : 68018, + "numKeys" : 71 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.95833 + }, + "relative" : false + }, { + "node" : "r_upleg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-idle-animation.ani", + "byteOffset" : 69509, + "numKeys" : 71 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.95833 + }, + "relative" : false + }, { + "node" : "r_leg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-idle-animation.ani", + "byteOffset" : 71000, + "numKeys" : 71 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.95833 + }, + "relative" : false + }, { + "node" : "r_foot_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-idle-animation.ani", + "byteOffset" : 72491, + "numKeys" : 71 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.95833 + }, + "relative" : false + }, { + "node" : "r_toebase_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-idle-animation.ani", + "byteOffset" : 73982, + "numKeys" : 71 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.95833 + }, + "relative" : false + }, { + "node" : "l_upleg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-idle-animation.ani", + "byteOffset" : 75473, + "numKeys" : 71 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.95833 + }, + "relative" : false + }, { + "node" : "l_leg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-idle-animation.ani", + "byteOffset" : 76964, + "numKeys" : 71 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.95833 + }, + "relative" : false + }, { + "node" : "l_foot_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-idle-animation.ani", + "byteOffset" : 78455, + "numKeys" : 71 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.95833 + }, + "relative" : false + }, { + "node" : "l_toebase_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-idle-animation.ani", + "byteOffset" : 79946, + "numKeys" : 71 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 2.95833 + }, + "relative" : false + } ], + "finishedActions" : [ 5 ] + }, { + "name" : "idleToLungeClip", + "loopCount" : 1, + "duration" : 0.0, + "endAction" : "BAKE", + "disconnectAction" : "BAKE", + "properties" : [ { + "node" : "hips_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-lunge-animation.ani", + "byteOffset" : 0, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "hips_JNT", + "property" : "position", + "keyFramesBin" : { + "url" : "exercise/idle-to-lunge-animation.ani", + "byteOffset" : 1764, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "spine_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-lunge-animation.ani", + "byteOffset" : 3192, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "spine_JNT", + "property" : "position", + "keyFramesBin" : { + "url" : "exercise/idle-to-lunge-animation.ani", + "byteOffset" : 4956, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "spine1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-lunge-animation.ani", + "byteOffset" : 6384, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "spine2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-lunge-animation.ani", + "byteOffset" : 8148, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "l_shoulder_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-lunge-animation.ani", + "byteOffset" : 9912, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "l_arm_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-lunge-animation.ani", + "byteOffset" : 11676, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "l_forearm_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-lunge-animation.ani", + "byteOffset" : 13440, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "l_hand_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-lunge-animation.ani", + "byteOffset" : 15204, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "l_handThumb1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-lunge-animation.ani", + "byteOffset" : 16968, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "l_handThumb2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-lunge-animation.ani", + "byteOffset" : 18732, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "l_handThumb3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-lunge-animation.ani", + "byteOffset" : 20496, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "l_handIndex1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-lunge-animation.ani", + "byteOffset" : 22260, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "l_handIndex2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-lunge-animation.ani", + "byteOffset" : 24024, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "l_handIndex3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-lunge-animation.ani", + "byteOffset" : 25788, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "l_handPinky1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-lunge-animation.ani", + "byteOffset" : 27552, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "l_handPinky2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-lunge-animation.ani", + "byteOffset" : 29316, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "l_handPinky3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-lunge-animation.ani", + "byteOffset" : 31080, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "l_handRing1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-lunge-animation.ani", + "byteOffset" : 32844, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "l_handRing2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-lunge-animation.ani", + "byteOffset" : 34608, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "l_handRing3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-lunge-animation.ani", + "byteOffset" : 36372, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "l_handMiddle1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-lunge-animation.ani", + "byteOffset" : 38136, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "l_handMiddle2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-lunge-animation.ani", + "byteOffset" : 39900, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "l_handMiddle3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-lunge-animation.ani", + "byteOffset" : 41664, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "r_shoulder_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-lunge-animation.ani", + "byteOffset" : 43428, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "r_shoulder_JNT", + "property" : "position", + "keyFramesBin" : { + "url" : "exercise/idle-to-lunge-animation.ani", + "byteOffset" : 45192, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "r_arm_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-lunge-animation.ani", + "byteOffset" : 46620, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "r_forearm_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-lunge-animation.ani", + "byteOffset" : 48384, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "r_hand_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-lunge-animation.ani", + "byteOffset" : 50148, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "r_handThumb1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-lunge-animation.ani", + "byteOffset" : 51912, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "r_handThumb2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-lunge-animation.ani", + "byteOffset" : 53676, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "r_handThumb3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-lunge-animation.ani", + "byteOffset" : 55440, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "r_handRing1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-lunge-animation.ani", + "byteOffset" : 57204, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "r_handRing2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-lunge-animation.ani", + "byteOffset" : 58968, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "r_handRing3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-lunge-animation.ani", + "byteOffset" : 60732, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "r_handPinky1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-lunge-animation.ani", + "byteOffset" : 62496, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "r_handPinky2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-lunge-animation.ani", + "byteOffset" : 64260, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "r_handPinky3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-lunge-animation.ani", + "byteOffset" : 66024, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "r_handMiddle1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-lunge-animation.ani", + "byteOffset" : 67788, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "r_handMiddle2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-lunge-animation.ani", + "byteOffset" : 69552, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "r_handMiddle3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-lunge-animation.ani", + "byteOffset" : 71316, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "r_handIndex1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-lunge-animation.ani", + "byteOffset" : 73080, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "r_handIndex2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-lunge-animation.ani", + "byteOffset" : 74844, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "r_handIndex3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-lunge-animation.ani", + "byteOffset" : 76608, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "neck_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-lunge-animation.ani", + "byteOffset" : 78372, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "head_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-lunge-animation.ani", + "byteOffset" : 80136, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "r_eye_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-lunge-animation.ani", + "byteOffset" : 81900, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "r_upleg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-lunge-animation.ani", + "byteOffset" : 83664, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "r_leg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-lunge-animation.ani", + "byteOffset" : 85428, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "r_foot_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-lunge-animation.ani", + "byteOffset" : 87192, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "r_toebase_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-lunge-animation.ani", + "byteOffset" : 88956, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "l_upleg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-lunge-animation.ani", + "byteOffset" : 90720, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "l_leg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-lunge-animation.ani", + "byteOffset" : 92484, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "l_foot_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-lunge-animation.ani", + "byteOffset" : 94248, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + }, { + "node" : "l_toebase_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/idle-to-lunge-animation.ani", + "byteOffset" : 96012, + "numKeys" : 84 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.5 + }, + "relative" : false + } ], + "finishedActions" : [ 6 ] + }, { + "name" : "lungeToIdleClip", + "loopCount" : 1, + "duration" : 0.0, + "endAction" : "BAKE", + "disconnectAction" : "BAKE", + "properties" : [ { + "node" : "hips_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-idle-animation.ani", + "byteOffset" : 0, + "numKeys" : 81 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.375 + }, + "relative" : false + }, { + "node" : "hips_JNT", + "property" : "position", + "keyFramesBin" : { + "url" : "exercise/lunge-to-idle-animation.ani", + "byteOffset" : 1701, + "numKeys" : 81 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.375 + }, + "relative" : false + }, { + "node" : "spine_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-idle-animation.ani", + "byteOffset" : 3078, + "numKeys" : 81 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.375 + }, + "relative" : false + }, { + "node" : "spine1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-idle-animation.ani", + "byteOffset" : 4779, + "numKeys" : 81 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.375 + }, + "relative" : false + }, { + "node" : "spine2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-idle-animation.ani", + "byteOffset" : 6480, + "numKeys" : 81 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.375 + }, + "relative" : false + }, { + "node" : "l_shoulder_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-idle-animation.ani", + "byteOffset" : 8181, + "numKeys" : 81 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.375 + }, + "relative" : false + }, { + "node" : "l_arm_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-idle-animation.ani", + "byteOffset" : 9882, + "numKeys" : 81 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.375 + }, + "relative" : false + }, { + "node" : "l_forearm_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-idle-animation.ani", + "byteOffset" : 11583, + "numKeys" : 81 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.375 + }, + "relative" : false + }, { + "node" : "l_hand_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-idle-animation.ani", + "byteOffset" : 13284, + "numKeys" : 81 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.375 + }, + "relative" : false + }, { + "node" : "l_handThumb1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-idle-animation.ani", + "byteOffset" : 14985, + "numKeys" : 81 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.375 + }, + "relative" : false + }, { + "node" : "l_handThumb2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-idle-animation.ani", + "byteOffset" : 16686, + "numKeys" : 81 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.375 + }, + "relative" : false + }, { + "node" : "l_handThumb3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-idle-animation.ani", + "byteOffset" : 18387, + "numKeys" : 81 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.375 + }, + "relative" : false + }, { + "node" : "l_handIndex1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-idle-animation.ani", + "byteOffset" : 20088, + "numKeys" : 81 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.375 + }, + "relative" : false + }, { + "node" : "l_handIndex2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-idle-animation.ani", + "byteOffset" : 21789, + "numKeys" : 81 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.375 + }, + "relative" : false + }, { + "node" : "l_handIndex3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-idle-animation.ani", + "byteOffset" : 23490, + "numKeys" : 81 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.375 + }, + "relative" : false + }, { + "node" : "l_handPinky1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-idle-animation.ani", + "byteOffset" : 25191, + "numKeys" : 81 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.375 + }, + "relative" : false + }, { + "node" : "l_handPinky2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-idle-animation.ani", + "byteOffset" : 26892, + "numKeys" : 81 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.375 + }, + "relative" : false + }, { + "node" : "l_handPinky3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-idle-animation.ani", + "byteOffset" : 28593, + "numKeys" : 81 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.375 + }, + "relative" : false + }, { + "node" : "l_handRing1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-idle-animation.ani", + "byteOffset" : 30294, + "numKeys" : 81 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.375 + }, + "relative" : false + }, { + "node" : "l_handRing2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-idle-animation.ani", + "byteOffset" : 31995, + "numKeys" : 81 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.375 + }, + "relative" : false + }, { + "node" : "l_handRing3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-idle-animation.ani", + "byteOffset" : 33696, + "numKeys" : 81 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.375 + }, + "relative" : false + }, { + "node" : "l_handMiddle1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-idle-animation.ani", + "byteOffset" : 35397, + "numKeys" : 81 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.375 + }, + "relative" : false + }, { + "node" : "l_handMiddle2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-idle-animation.ani", + "byteOffset" : 37098, + "numKeys" : 81 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.375 + }, + "relative" : false + }, { + "node" : "l_handMiddle3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-idle-animation.ani", + "byteOffset" : 38799, + "numKeys" : 81 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.375 + }, + "relative" : false + }, { + "node" : "r_shoulder_JNT", + "property" : "position", + "keyFramesBin" : { + "url" : "exercise/lunge-to-idle-animation.ani", + "byteOffset" : 40500, + "numKeys" : 81 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.375 + }, + "relative" : false + }, { + "node" : "r_arm_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-idle-animation.ani", + "byteOffset" : 41877, + "numKeys" : 81 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.375 + }, + "relative" : false + }, { + "node" : "r_forearm_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-idle-animation.ani", + "byteOffset" : 43578, + "numKeys" : 81 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.375 + }, + "relative" : false + }, { + "node" : "r_hand_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-idle-animation.ani", + "byteOffset" : 45279, + "numKeys" : 81 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.375 + }, + "relative" : false + }, { + "node" : "r_handThumb1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-idle-animation.ani", + "byteOffset" : 46980, + "numKeys" : 81 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.375 + }, + "relative" : false + }, { + "node" : "r_handThumb2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-idle-animation.ani", + "byteOffset" : 48681, + "numKeys" : 81 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.375 + }, + "relative" : false + }, { + "node" : "r_handThumb3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-idle-animation.ani", + "byteOffset" : 50382, + "numKeys" : 81 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.375 + }, + "relative" : false + }, { + "node" : "r_handRing1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-idle-animation.ani", + "byteOffset" : 52083, + "numKeys" : 81 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.375 + }, + "relative" : false + }, { + "node" : "r_handRing2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-idle-animation.ani", + "byteOffset" : 53784, + "numKeys" : 81 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.375 + }, + "relative" : false + }, { + "node" : "r_handRing3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-idle-animation.ani", + "byteOffset" : 55485, + "numKeys" : 81 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.375 + }, + "relative" : false + }, { + "node" : "r_handPinky1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-idle-animation.ani", + "byteOffset" : 57186, + "numKeys" : 81 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.375 + }, + "relative" : false + }, { + "node" : "r_handPinky2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-idle-animation.ani", + "byteOffset" : 58887, + "numKeys" : 81 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.375 + }, + "relative" : false + }, { + "node" : "r_handPinky3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-idle-animation.ani", + "byteOffset" : 60588, + "numKeys" : 81 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.375 + }, + "relative" : false + }, { + "node" : "r_handMiddle1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-idle-animation.ani", + "byteOffset" : 62289, + "numKeys" : 81 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.375 + }, + "relative" : false + }, { + "node" : "r_handMiddle2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-idle-animation.ani", + "byteOffset" : 63990, + "numKeys" : 81 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.375 + }, + "relative" : false + }, { + "node" : "r_handMiddle3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-idle-animation.ani", + "byteOffset" : 65691, + "numKeys" : 81 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.375 + }, + "relative" : false + }, { + "node" : "r_handIndex1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-idle-animation.ani", + "byteOffset" : 67392, + "numKeys" : 81 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.375 + }, + "relative" : false + }, { + "node" : "r_handIndex2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-idle-animation.ani", + "byteOffset" : 69093, + "numKeys" : 81 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.375 + }, + "relative" : false + }, { + "node" : "r_handIndex3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-idle-animation.ani", + "byteOffset" : 70794, + "numKeys" : 81 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.375 + }, + "relative" : false + }, { + "node" : "neck_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-idle-animation.ani", + "byteOffset" : 72495, + "numKeys" : 81 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.375 + }, + "relative" : false + }, { + "node" : "head_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-idle-animation.ani", + "byteOffset" : 74196, + "numKeys" : 81 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.375 + }, + "relative" : false + }, { + "node" : "r_eye_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-idle-animation.ani", + "byteOffset" : 75897, + "numKeys" : 81 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.375 + }, + "relative" : false + }, { + "node" : "r_upleg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-idle-animation.ani", + "byteOffset" : 77598, + "numKeys" : 81 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.375 + }, + "relative" : false + }, { + "node" : "r_leg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-idle-animation.ani", + "byteOffset" : 79299, + "numKeys" : 81 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.375 + }, + "relative" : false + }, { + "node" : "r_foot_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-idle-animation.ani", + "byteOffset" : 81000, + "numKeys" : 81 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.375 + }, + "relative" : false + }, { + "node" : "r_toebase_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-idle-animation.ani", + "byteOffset" : 82701, + "numKeys" : 81 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.375 + }, + "relative" : false + }, { + "node" : "l_upleg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-idle-animation.ani", + "byteOffset" : 84402, + "numKeys" : 81 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.375 + }, + "relative" : false + }, { + "node" : "l_leg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-idle-animation.ani", + "byteOffset" : 86103, + "numKeys" : 81 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.375 + }, + "relative" : false + }, { + "node" : "l_foot_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-idle-animation.ani", + "byteOffset" : 87804, + "numKeys" : 81 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.375 + }, + "relative" : false + }, { + "node" : "l_toebase_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-idle-animation.ani", + "byteOffset" : 89505, + "numKeys" : 81 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 3.375 + }, + "relative" : false + } ], + "finishedActions" : [ 8 ] + }, { + "name" : "jumpingJackToLungeClip", + "loopCount" : 1, + "duration" : 0.0, + "endAction" : "BAKE", + "disconnectAction" : "BAKE", + "properties" : [ { + "node" : "hips_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-lunge-animation.ani", + "byteOffset" : 0, + "numKeys" : 36 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.5 + }, + "relative" : false + }, { + "node" : "hips_JNT", + "property" : "position", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-lunge-animation.ani", + "byteOffset" : 756, + "numKeys" : 36 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.5 + }, + "relative" : false + }, { + "node" : "spine_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-lunge-animation.ani", + "byteOffset" : 1368, + "numKeys" : 36 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.5 + }, + "relative" : false + }, { + "node" : "spine_JNT", + "property" : "position", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-lunge-animation.ani", + "byteOffset" : 2124, + "numKeys" : 36 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.5 + }, + "relative" : false + }, { + "node" : "spine1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-lunge-animation.ani", + "byteOffset" : 2736, + "numKeys" : 36 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.5 + }, + "relative" : false + }, { + "node" : "spine2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-lunge-animation.ani", + "byteOffset" : 3492, + "numKeys" : 36 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.5 + }, + "relative" : false + }, { + "node" : "l_arm_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-lunge-animation.ani", + "byteOffset" : 4248, + "numKeys" : 36 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.5 + }, + "relative" : false + }, { + "node" : "l_forearm_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-lunge-animation.ani", + "byteOffset" : 5004, + "numKeys" : 36 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.5 + }, + "relative" : false + }, { + "node" : "l_hand_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-lunge-animation.ani", + "byteOffset" : 5760, + "numKeys" : 36 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.5 + }, + "relative" : false + }, { + "node" : "l_handThumb1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-lunge-animation.ani", + "byteOffset" : 6516, + "numKeys" : 36 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.5 + }, + "relative" : false + }, { + "node" : "l_handThumb2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-lunge-animation.ani", + "byteOffset" : 7272, + "numKeys" : 36 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.5 + }, + "relative" : false + }, { + "node" : "l_handThumb3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-lunge-animation.ani", + "byteOffset" : 8028, + "numKeys" : 36 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.5 + }, + "relative" : false + }, { + "node" : "l_handIndex1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-lunge-animation.ani", + "byteOffset" : 8784, + "numKeys" : 36 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.5 + }, + "relative" : false + }, { + "node" : "l_handIndex2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-lunge-animation.ani", + "byteOffset" : 9540, + "numKeys" : 36 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.5 + }, + "relative" : false + }, { + "node" : "l_handIndex3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-lunge-animation.ani", + "byteOffset" : 10296, + "numKeys" : 36 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.5 + }, + "relative" : false + }, { + "node" : "l_handPinky1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-lunge-animation.ani", + "byteOffset" : 11052, + "numKeys" : 36 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.5 + }, + "relative" : false + }, { + "node" : "l_handPinky2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-lunge-animation.ani", + "byteOffset" : 11808, + "numKeys" : 36 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.5 + }, + "relative" : false + }, { + "node" : "l_handPinky3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-lunge-animation.ani", + "byteOffset" : 12564, + "numKeys" : 36 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.5 + }, + "relative" : false + }, { + "node" : "l_handRing1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-lunge-animation.ani", + "byteOffset" : 13320, + "numKeys" : 36 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.5 + }, + "relative" : false + }, { + "node" : "l_handRing2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-lunge-animation.ani", + "byteOffset" : 14076, + "numKeys" : 36 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.5 + }, + "relative" : false + }, { + "node" : "l_handRing3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-lunge-animation.ani", + "byteOffset" : 14832, + "numKeys" : 36 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.5 + }, + "relative" : false + }, { + "node" : "l_handMiddle1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-lunge-animation.ani", + "byteOffset" : 15588, + "numKeys" : 36 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.5 + }, + "relative" : false + }, { + "node" : "l_handMiddle2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-lunge-animation.ani", + "byteOffset" : 16344, + "numKeys" : 36 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.5 + }, + "relative" : false + }, { + "node" : "l_handMiddle3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-lunge-animation.ani", + "byteOffset" : 17100, + "numKeys" : 36 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.5 + }, + "relative" : false + }, { + "node" : "r_shoulder_JNT", + "property" : "position", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-lunge-animation.ani", + "byteOffset" : 17856, + "numKeys" : 36 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.5 + }, + "relative" : false + }, { + "node" : "r_arm_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-lunge-animation.ani", + "byteOffset" : 18468, + "numKeys" : 36 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.5 + }, + "relative" : false + }, { + "node" : "r_forearm_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-lunge-animation.ani", + "byteOffset" : 19224, + "numKeys" : 36 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.5 + }, + "relative" : false + }, { + "node" : "r_hand_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-lunge-animation.ani", + "byteOffset" : 19980, + "numKeys" : 36 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.5 + }, + "relative" : false + }, { + "node" : "r_handThumb1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-lunge-animation.ani", + "byteOffset" : 20736, + "numKeys" : 36 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.5 + }, + "relative" : false + }, { + "node" : "r_handThumb2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-lunge-animation.ani", + "byteOffset" : 21492, + "numKeys" : 36 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.5 + }, + "relative" : false + }, { + "node" : "r_handThumb3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-lunge-animation.ani", + "byteOffset" : 22248, + "numKeys" : 36 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.5 + }, + "relative" : false + }, { + "node" : "r_handRing1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-lunge-animation.ani", + "byteOffset" : 23004, + "numKeys" : 36 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.5 + }, + "relative" : false + }, { + "node" : "r_handRing2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-lunge-animation.ani", + "byteOffset" : 23760, + "numKeys" : 36 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.5 + }, + "relative" : false + }, { + "node" : "r_handRing3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-lunge-animation.ani", + "byteOffset" : 24516, + "numKeys" : 36 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.5 + }, + "relative" : false + }, { + "node" : "r_handPinky1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-lunge-animation.ani", + "byteOffset" : 25272, + "numKeys" : 36 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.5 + }, + "relative" : false + }, { + "node" : "r_handPinky2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-lunge-animation.ani", + "byteOffset" : 26028, + "numKeys" : 36 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.5 + }, + "relative" : false + }, { + "node" : "r_handPinky3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-lunge-animation.ani", + "byteOffset" : 26784, + "numKeys" : 36 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.5 + }, + "relative" : false + }, { + "node" : "r_handMiddle1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-lunge-animation.ani", + "byteOffset" : 27540, + "numKeys" : 36 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.5 + }, + "relative" : false + }, { + "node" : "r_handMiddle2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-lunge-animation.ani", + "byteOffset" : 28296, + "numKeys" : 36 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.5 + }, + "relative" : false + }, { + "node" : "r_handMiddle3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-lunge-animation.ani", + "byteOffset" : 29052, + "numKeys" : 36 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.5 + }, + "relative" : false + }, { + "node" : "r_handIndex1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-lunge-animation.ani", + "byteOffset" : 29808, + "numKeys" : 36 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.5 + }, + "relative" : false + }, { + "node" : "r_handIndex2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-lunge-animation.ani", + "byteOffset" : 30564, + "numKeys" : 36 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.5 + }, + "relative" : false + }, { + "node" : "r_handIndex3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-lunge-animation.ani", + "byteOffset" : 31320, + "numKeys" : 36 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.5 + }, + "relative" : false + }, { + "node" : "neck_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-lunge-animation.ani", + "byteOffset" : 32076, + "numKeys" : 36 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.5 + }, + "relative" : false + }, { + "node" : "head_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-lunge-animation.ani", + "byteOffset" : 32832, + "numKeys" : 36 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.5 + }, + "relative" : false + }, { + "node" : "r_upleg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-lunge-animation.ani", + "byteOffset" : 33588, + "numKeys" : 36 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.5 + }, + "relative" : false + }, { + "node" : "r_leg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-lunge-animation.ani", + "byteOffset" : 34344, + "numKeys" : 36 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.5 + }, + "relative" : false + }, { + "node" : "r_foot_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-lunge-animation.ani", + "byteOffset" : 35100, + "numKeys" : 36 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.5 + }, + "relative" : false + }, { + "node" : "r_toebase_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-lunge-animation.ani", + "byteOffset" : 35856, + "numKeys" : 36 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.5 + }, + "relative" : false + }, { + "node" : "l_upleg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-lunge-animation.ani", + "byteOffset" : 36612, + "numKeys" : 36 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.5 + }, + "relative" : false + }, { + "node" : "l_leg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-lunge-animation.ani", + "byteOffset" : 37368, + "numKeys" : 36 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.5 + }, + "relative" : false + }, { + "node" : "l_foot_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-lunge-animation.ani", + "byteOffset" : 38124, + "numKeys" : 36 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.5 + }, + "relative" : false + } ], + "finishedActions" : [ 9 ] + }, { + "name" : "jumpingJackToSquatClip", + "loopCount" : 1, + "duration" : 0.0, + "endAction" : "BAKE", + "disconnectAction" : "BAKE", + "properties" : [ { + "node" : "hips_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-squat-animation.ani", + "byteOffset" : 0, + "numKeys" : 25 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.04167 + }, + "relative" : false + }, { + "node" : "hips_JNT", + "property" : "position", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-squat-animation.ani", + "byteOffset" : 525, + "numKeys" : 25 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.04167 + }, + "relative" : false + }, { + "node" : "spine_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-squat-animation.ani", + "byteOffset" : 950, + "numKeys" : 25 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.04167 + }, + "relative" : false + }, { + "node" : "spine1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-squat-animation.ani", + "byteOffset" : 1475, + "numKeys" : 25 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.04167 + }, + "relative" : false + }, { + "node" : "spine2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-squat-animation.ani", + "byteOffset" : 2000, + "numKeys" : 25 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.04167 + }, + "relative" : false + }, { + "node" : "l_arm_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-squat-animation.ani", + "byteOffset" : 2525, + "numKeys" : 25 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.04167 + }, + "relative" : false + }, { + "node" : "l_handIndex1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-squat-animation.ani", + "byteOffset" : 3050, + "numKeys" : 25 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.04167 + }, + "relative" : false + }, { + "node" : "l_handPinky1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-squat-animation.ani", + "byteOffset" : 3575, + "numKeys" : 25 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.04167 + }, + "relative" : false + }, { + "node" : "l_handRing1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-squat-animation.ani", + "byteOffset" : 4100, + "numKeys" : 25 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.04167 + }, + "relative" : false + }, { + "node" : "l_handMiddle1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-squat-animation.ani", + "byteOffset" : 4625, + "numKeys" : 25 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.04167 + }, + "relative" : false + }, { + "node" : "r_arm_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-squat-animation.ani", + "byteOffset" : 5150, + "numKeys" : 25 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.04167 + }, + "relative" : false + }, { + "node" : "r_hand_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-squat-animation.ani", + "byteOffset" : 5675, + "numKeys" : 25 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.04167 + }, + "relative" : false + }, { + "node" : "r_handRing1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-squat-animation.ani", + "byteOffset" : 6200, + "numKeys" : 25 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.04167 + }, + "relative" : false + }, { + "node" : "r_handPinky1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-squat-animation.ani", + "byteOffset" : 6725, + "numKeys" : 25 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.04167 + }, + "relative" : false + }, { + "node" : "r_handMiddle1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-squat-animation.ani", + "byteOffset" : 7250, + "numKeys" : 25 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.04167 + }, + "relative" : false + }, { + "node" : "r_handIndex1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-squat-animation.ani", + "byteOffset" : 7775, + "numKeys" : 25 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.04167 + }, + "relative" : false + }, { + "node" : "neck_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-squat-animation.ani", + "byteOffset" : 8300, + "numKeys" : 25 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.04167 + }, + "relative" : false + }, { + "node" : "head_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-squat-animation.ani", + "byteOffset" : 8825, + "numKeys" : 25 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.04167 + }, + "relative" : false + }, { + "node" : "r_upleg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-squat-animation.ani", + "byteOffset" : 9350, + "numKeys" : 25 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.04167 + }, + "relative" : false + }, { + "node" : "r_leg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-squat-animation.ani", + "byteOffset" : 9875, + "numKeys" : 25 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.04167 + }, + "relative" : false + }, { + "node" : "r_foot_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-squat-animation.ani", + "byteOffset" : 10400, + "numKeys" : 25 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.04167 + }, + "relative" : false + }, { + "node" : "r_toebase_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-squat-animation.ani", + "byteOffset" : 10925, + "numKeys" : 25 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.04167 + }, + "relative" : false + }, { + "node" : "l_upleg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-squat-animation.ani", + "byteOffset" : 11450, + "numKeys" : 25 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.04167 + }, + "relative" : false + }, { + "node" : "l_leg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-squat-animation.ani", + "byteOffset" : 11975, + "numKeys" : 25 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.04167 + }, + "relative" : false + }, { + "node" : "l_foot_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/jumping-jack-to-squat-animation.ani", + "byteOffset" : 12500, + "numKeys" : 25 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.04167 + }, + "relative" : false + } ], + "finishedActions" : [ 10 ] + }, { + "name" : "lungeToJumpingJackClip", + "loopCount" : 1, + "duration" : 0.0, + "endAction" : "BAKE", + "disconnectAction" : "BAKE", + "properties" : [ { + "node" : "hips_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-jumping-jack-animation.ani", + "byteOffset" : 0, + "numKeys" : 41 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.70833 + }, + "relative" : false + }, { + "node" : "hips_JNT", + "property" : "position", + "keyFramesBin" : { + "url" : "exercise/lunge-to-jumping-jack-animation.ani", + "byteOffset" : 861, + "numKeys" : 41 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.70833 + }, + "relative" : false + }, { + "node" : "spine_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-jumping-jack-animation.ani", + "byteOffset" : 1558, + "numKeys" : 41 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.70833 + }, + "relative" : false + }, { + "node" : "spine_JNT", + "property" : "position", + "keyFramesBin" : { + "url" : "exercise/lunge-to-jumping-jack-animation.ani", + "byteOffset" : 2419, + "numKeys" : 41 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.70833 + }, + "relative" : false + }, { + "node" : "spine1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-jumping-jack-animation.ani", + "byteOffset" : 3116, + "numKeys" : 41 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.70833 + }, + "relative" : false + }, { + "node" : "spine2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-jumping-jack-animation.ani", + "byteOffset" : 3977, + "numKeys" : 41 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.70833 + }, + "relative" : false + }, { + "node" : "l_arm_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-jumping-jack-animation.ani", + "byteOffset" : 4838, + "numKeys" : 41 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.70833 + }, + "relative" : false + }, { + "node" : "l_forearm_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-jumping-jack-animation.ani", + "byteOffset" : 5699, + "numKeys" : 41 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.70833 + }, + "relative" : false + }, { + "node" : "l_hand_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-jumping-jack-animation.ani", + "byteOffset" : 6560, + "numKeys" : 41 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.70833 + }, + "relative" : false + }, { + "node" : "l_handThumb1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-jumping-jack-animation.ani", + "byteOffset" : 7421, + "numKeys" : 41 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.70833 + }, + "relative" : false + }, { + "node" : "l_handThumb2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-jumping-jack-animation.ani", + "byteOffset" : 8282, + "numKeys" : 41 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.70833 + }, + "relative" : false + }, { + "node" : "l_handThumb3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-jumping-jack-animation.ani", + "byteOffset" : 9143, + "numKeys" : 41 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.70833 + }, + "relative" : false + }, { + "node" : "l_handIndex1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-jumping-jack-animation.ani", + "byteOffset" : 10004, + "numKeys" : 41 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.70833 + }, + "relative" : false + }, { + "node" : "l_handIndex2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-jumping-jack-animation.ani", + "byteOffset" : 10865, + "numKeys" : 41 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.70833 + }, + "relative" : false + }, { + "node" : "l_handIndex3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-jumping-jack-animation.ani", + "byteOffset" : 11726, + "numKeys" : 41 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.70833 + }, + "relative" : false + }, { + "node" : "l_handPinky1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-jumping-jack-animation.ani", + "byteOffset" : 12587, + "numKeys" : 41 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.70833 + }, + "relative" : false + }, { + "node" : "l_handPinky2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-jumping-jack-animation.ani", + "byteOffset" : 13448, + "numKeys" : 41 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.70833 + }, + "relative" : false + }, { + "node" : "l_handPinky3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-jumping-jack-animation.ani", + "byteOffset" : 14309, + "numKeys" : 41 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.70833 + }, + "relative" : false + }, { + "node" : "l_handRing1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-jumping-jack-animation.ani", + "byteOffset" : 15170, + "numKeys" : 41 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.70833 + }, + "relative" : false + }, { + "node" : "l_handRing2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-jumping-jack-animation.ani", + "byteOffset" : 16031, + "numKeys" : 41 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.70833 + }, + "relative" : false + }, { + "node" : "l_handRing3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-jumping-jack-animation.ani", + "byteOffset" : 16892, + "numKeys" : 41 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.70833 + }, + "relative" : false + }, { + "node" : "l_handMiddle1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-jumping-jack-animation.ani", + "byteOffset" : 17753, + "numKeys" : 41 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.70833 + }, + "relative" : false + }, { + "node" : "l_handMiddle2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-jumping-jack-animation.ani", + "byteOffset" : 18614, + "numKeys" : 41 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.70833 + }, + "relative" : false + }, { + "node" : "l_handMiddle3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-jumping-jack-animation.ani", + "byteOffset" : 19475, + "numKeys" : 41 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.70833 + }, + "relative" : false + }, { + "node" : "r_shoulder_JNT", + "property" : "position", + "keyFramesBin" : { + "url" : "exercise/lunge-to-jumping-jack-animation.ani", + "byteOffset" : 20336, + "numKeys" : 41 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.70833 + }, + "relative" : false + }, { + "node" : "r_arm_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-jumping-jack-animation.ani", + "byteOffset" : 21033, + "numKeys" : 41 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.70833 + }, + "relative" : false + }, { + "node" : "r_forearm_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-jumping-jack-animation.ani", + "byteOffset" : 21894, + "numKeys" : 41 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.70833 + }, + "relative" : false + }, { + "node" : "r_hand_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-jumping-jack-animation.ani", + "byteOffset" : 22755, + "numKeys" : 41 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.70833 + }, + "relative" : false + }, { + "node" : "r_handThumb1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-jumping-jack-animation.ani", + "byteOffset" : 23616, + "numKeys" : 41 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.70833 + }, + "relative" : false + }, { + "node" : "r_handThumb2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-jumping-jack-animation.ani", + "byteOffset" : 24477, + "numKeys" : 41 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.70833 + }, + "relative" : false + }, { + "node" : "r_handThumb3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-jumping-jack-animation.ani", + "byteOffset" : 25338, + "numKeys" : 41 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.70833 + }, + "relative" : false + }, { + "node" : "r_handRing1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-jumping-jack-animation.ani", + "byteOffset" : 26199, + "numKeys" : 41 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.70833 + }, + "relative" : false + }, { + "node" : "r_handRing2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-jumping-jack-animation.ani", + "byteOffset" : 27060, + "numKeys" : 41 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.70833 + }, + "relative" : false + }, { + "node" : "r_handRing3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-jumping-jack-animation.ani", + "byteOffset" : 27921, + "numKeys" : 41 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.70833 + }, + "relative" : false + }, { + "node" : "r_handPinky1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-jumping-jack-animation.ani", + "byteOffset" : 28782, + "numKeys" : 41 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.70833 + }, + "relative" : false + }, { + "node" : "r_handPinky2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-jumping-jack-animation.ani", + "byteOffset" : 29643, + "numKeys" : 41 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.70833 + }, + "relative" : false + }, { + "node" : "r_handPinky3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-jumping-jack-animation.ani", + "byteOffset" : 30504, + "numKeys" : 41 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.70833 + }, + "relative" : false + }, { + "node" : "r_handMiddle1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-jumping-jack-animation.ani", + "byteOffset" : 31365, + "numKeys" : 41 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.70833 + }, + "relative" : false + }, { + "node" : "r_handMiddle2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-jumping-jack-animation.ani", + "byteOffset" : 32226, + "numKeys" : 41 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.70833 + }, + "relative" : false + }, { + "node" : "r_handMiddle3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-jumping-jack-animation.ani", + "byteOffset" : 33087, + "numKeys" : 41 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.70833 + }, + "relative" : false + }, { + "node" : "r_handIndex1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-jumping-jack-animation.ani", + "byteOffset" : 33948, + "numKeys" : 41 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.70833 + }, + "relative" : false + }, { + "node" : "r_handIndex2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-jumping-jack-animation.ani", + "byteOffset" : 34809, + "numKeys" : 41 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.70833 + }, + "relative" : false + }, { + "node" : "r_handIndex3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-jumping-jack-animation.ani", + "byteOffset" : 35670, + "numKeys" : 41 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.70833 + }, + "relative" : false + }, { + "node" : "neck_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-jumping-jack-animation.ani", + "byteOffset" : 36531, + "numKeys" : 41 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.70833 + }, + "relative" : false + }, { + "node" : "head_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-jumping-jack-animation.ani", + "byteOffset" : 37392, + "numKeys" : 41 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.70833 + }, + "relative" : false + }, { + "node" : "r_upleg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-jumping-jack-animation.ani", + "byteOffset" : 38253, + "numKeys" : 41 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.70833 + }, + "relative" : false + }, { + "node" : "r_leg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-jumping-jack-animation.ani", + "byteOffset" : 39114, + "numKeys" : 41 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.70833 + }, + "relative" : false + }, { + "node" : "r_foot_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-jumping-jack-animation.ani", + "byteOffset" : 39975, + "numKeys" : 41 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.70833 + }, + "relative" : false + }, { + "node" : "r_toebase_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-jumping-jack-animation.ani", + "byteOffset" : 40836, + "numKeys" : 41 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.70833 + }, + "relative" : false + }, { + "node" : "l_upleg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-jumping-jack-animation.ani", + "byteOffset" : 41697, + "numKeys" : 41 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.70833 + }, + "relative" : false + }, { + "node" : "l_leg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-jumping-jack-animation.ani", + "byteOffset" : 42558, + "numKeys" : 41 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.70833 + }, + "relative" : false + }, { + "node" : "l_foot_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-jumping-jack-animation.ani", + "byteOffset" : 43419, + "numKeys" : 41 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.70833 + }, + "relative" : false + } ], + "finishedActions" : [ 11 ] + }, { + "name" : "lungeToSquatClip", + "loopCount" : 1, + "duration" : 0.0, + "endAction" : "BAKE", + "disconnectAction" : "BAKE", + "properties" : [ { + "node" : "hips_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-squat-animation.ani", + "byteOffset" : 0, + "numKeys" : 26 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.08333 + }, + "relative" : false + }, { + "node" : "hips_JNT", + "property" : "position", + "keyFramesBin" : { + "url" : "exercise/lunge-to-squat-animation.ani", + "byteOffset" : 546, + "numKeys" : 26 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.08333 + }, + "relative" : false + }, { + "node" : "spine_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-squat-animation.ani", + "byteOffset" : 988, + "numKeys" : 26 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.08333 + }, + "relative" : false + }, { + "node" : "spine_JNT", + "property" : "position", + "keyFramesBin" : { + "url" : "exercise/lunge-to-squat-animation.ani", + "byteOffset" : 1534, + "numKeys" : 26 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.08333 + }, + "relative" : false + }, { + "node" : "spine1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-squat-animation.ani", + "byteOffset" : 1976, + "numKeys" : 26 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.08333 + }, + "relative" : false + }, { + "node" : "spine2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-squat-animation.ani", + "byteOffset" : 2522, + "numKeys" : 26 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.08333 + }, + "relative" : false + }, { + "node" : "l_arm_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-squat-animation.ani", + "byteOffset" : 3068, + "numKeys" : 26 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.08333 + }, + "relative" : false + }, { + "node" : "l_forearm_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-squat-animation.ani", + "byteOffset" : 3614, + "numKeys" : 26 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.08333 + }, + "relative" : false + }, { + "node" : "l_hand_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-squat-animation.ani", + "byteOffset" : 4160, + "numKeys" : 26 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.08333 + }, + "relative" : false + }, { + "node" : "l_handThumb1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-squat-animation.ani", + "byteOffset" : 4706, + "numKeys" : 26 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.08333 + }, + "relative" : false + }, { + "node" : "l_handThumb2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-squat-animation.ani", + "byteOffset" : 5252, + "numKeys" : 26 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.08333 + }, + "relative" : false + }, { + "node" : "l_handThumb3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-squat-animation.ani", + "byteOffset" : 5798, + "numKeys" : 26 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.08333 + }, + "relative" : false + }, { + "node" : "l_handIndex1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-squat-animation.ani", + "byteOffset" : 6344, + "numKeys" : 26 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.08333 + }, + "relative" : false + }, { + "node" : "l_handIndex2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-squat-animation.ani", + "byteOffset" : 6890, + "numKeys" : 26 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.08333 + }, + "relative" : false + }, { + "node" : "l_handIndex3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-squat-animation.ani", + "byteOffset" : 7436, + "numKeys" : 26 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.08333 + }, + "relative" : false + }, { + "node" : "l_handPinky1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-squat-animation.ani", + "byteOffset" : 7982, + "numKeys" : 26 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.08333 + }, + "relative" : false + }, { + "node" : "l_handPinky2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-squat-animation.ani", + "byteOffset" : 8528, + "numKeys" : 26 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.08333 + }, + "relative" : false + }, { + "node" : "l_handPinky3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-squat-animation.ani", + "byteOffset" : 9074, + "numKeys" : 26 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.08333 + }, + "relative" : false + }, { + "node" : "l_handRing1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-squat-animation.ani", + "byteOffset" : 9620, + "numKeys" : 26 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.08333 + }, + "relative" : false + }, { + "node" : "l_handRing2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-squat-animation.ani", + "byteOffset" : 10166, + "numKeys" : 26 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.08333 + }, + "relative" : false + }, { + "node" : "l_handRing3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-squat-animation.ani", + "byteOffset" : 10712, + "numKeys" : 26 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.08333 + }, + "relative" : false + }, { + "node" : "l_handMiddle1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-squat-animation.ani", + "byteOffset" : 11258, + "numKeys" : 26 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.08333 + }, + "relative" : false + }, { + "node" : "l_handMiddle2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-squat-animation.ani", + "byteOffset" : 11804, + "numKeys" : 26 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.08333 + }, + "relative" : false + }, { + "node" : "l_handMiddle3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-squat-animation.ani", + "byteOffset" : 12350, + "numKeys" : 26 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.08333 + }, + "relative" : false + }, { + "node" : "r_shoulder_JNT", + "property" : "position", + "keyFramesBin" : { + "url" : "exercise/lunge-to-squat-animation.ani", + "byteOffset" : 12896, + "numKeys" : 26 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.08333 + }, + "relative" : false + }, { + "node" : "r_arm_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-squat-animation.ani", + "byteOffset" : 13338, + "numKeys" : 26 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.08333 + }, + "relative" : false + }, { + "node" : "r_forearm_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-squat-animation.ani", + "byteOffset" : 13884, + "numKeys" : 26 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.08333 + }, + "relative" : false + }, { + "node" : "r_hand_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-squat-animation.ani", + "byteOffset" : 14430, + "numKeys" : 26 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.08333 + }, + "relative" : false + }, { + "node" : "r_handThumb1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-squat-animation.ani", + "byteOffset" : 14976, + "numKeys" : 26 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.08333 + }, + "relative" : false + }, { + "node" : "r_handThumb2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-squat-animation.ani", + "byteOffset" : 15522, + "numKeys" : 26 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.08333 + }, + "relative" : false + }, { + "node" : "r_handThumb3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-squat-animation.ani", + "byteOffset" : 16068, + "numKeys" : 26 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.08333 + }, + "relative" : false + }, { + "node" : "r_handRing1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-squat-animation.ani", + "byteOffset" : 16614, + "numKeys" : 26 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.08333 + }, + "relative" : false + }, { + "node" : "r_handRing2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-squat-animation.ani", + "byteOffset" : 17160, + "numKeys" : 26 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.08333 + }, + "relative" : false + }, { + "node" : "r_handRing3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-squat-animation.ani", + "byteOffset" : 17706, + "numKeys" : 26 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.08333 + }, + "relative" : false + }, { + "node" : "r_handPinky1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-squat-animation.ani", + "byteOffset" : 18252, + "numKeys" : 26 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.08333 + }, + "relative" : false + }, { + "node" : "r_handPinky2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-squat-animation.ani", + "byteOffset" : 18798, + "numKeys" : 26 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.08333 + }, + "relative" : false + }, { + "node" : "r_handPinky3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-squat-animation.ani", + "byteOffset" : 19344, + "numKeys" : 26 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.08333 + }, + "relative" : false + }, { + "node" : "r_handMiddle1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-squat-animation.ani", + "byteOffset" : 19890, + "numKeys" : 26 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.08333 + }, + "relative" : false + }, { + "node" : "r_handMiddle2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-squat-animation.ani", + "byteOffset" : 20436, + "numKeys" : 26 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.08333 + }, + "relative" : false + }, { + "node" : "r_handMiddle3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-squat-animation.ani", + "byteOffset" : 20982, + "numKeys" : 26 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.08333 + }, + "relative" : false + }, { + "node" : "r_handIndex1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-squat-animation.ani", + "byteOffset" : 21528, + "numKeys" : 26 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.08333 + }, + "relative" : false + }, { + "node" : "r_handIndex2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-squat-animation.ani", + "byteOffset" : 22074, + "numKeys" : 26 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.08333 + }, + "relative" : false + }, { + "node" : "r_handIndex3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-squat-animation.ani", + "byteOffset" : 22620, + "numKeys" : 26 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.08333 + }, + "relative" : false + }, { + "node" : "neck_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-squat-animation.ani", + "byteOffset" : 23166, + "numKeys" : 26 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.08333 + }, + "relative" : false + }, { + "node" : "head_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-squat-animation.ani", + "byteOffset" : 23712, + "numKeys" : 26 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.08333 + }, + "relative" : false + }, { + "node" : "r_upleg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-squat-animation.ani", + "byteOffset" : 24258, + "numKeys" : 26 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.08333 + }, + "relative" : false + }, { + "node" : "r_leg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-squat-animation.ani", + "byteOffset" : 24804, + "numKeys" : 26 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.08333 + }, + "relative" : false + }, { + "node" : "r_foot_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-squat-animation.ani", + "byteOffset" : 25350, + "numKeys" : 26 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.08333 + }, + "relative" : false + }, { + "node" : "r_toebase_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-squat-animation.ani", + "byteOffset" : 25896, + "numKeys" : 26 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.08333 + }, + "relative" : false + }, { + "node" : "l_upleg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-squat-animation.ani", + "byteOffset" : 26442, + "numKeys" : 26 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.08333 + }, + "relative" : false + }, { + "node" : "l_leg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-squat-animation.ani", + "byteOffset" : 26988, + "numKeys" : 26 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.08333 + }, + "relative" : false + }, { + "node" : "l_foot_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/lunge-to-squat-animation.ani", + "byteOffset" : 27534, + "numKeys" : 26 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.08333 + }, + "relative" : false + } ], + "finishedActions" : [ 12 ] + }, { + "name" : "squatToJumpingJackClip", + "loopCount" : 1, + "duration" : 0.0, + "endAction" : "BAKE", + "disconnectAction" : "BAKE", + "properties" : [ { + "node" : "hips_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-jumping-jack-animation.ani", + "byteOffset" : 0, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "hips_JNT", + "property" : "position", + "keyFramesBin" : { + "url" : "exercise/squat-to-jumping-jack-animation.ani", + "byteOffset" : 630, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "spine_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-jumping-jack-animation.ani", + "byteOffset" : 1140, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "spine1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-jumping-jack-animation.ani", + "byteOffset" : 1770, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "spine2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-jumping-jack-animation.ani", + "byteOffset" : 2400, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "l_arm_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-jumping-jack-animation.ani", + "byteOffset" : 3030, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "l_handIndex1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-jumping-jack-animation.ani", + "byteOffset" : 3660, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "l_handPinky1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-jumping-jack-animation.ani", + "byteOffset" : 4290, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "l_handRing1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-jumping-jack-animation.ani", + "byteOffset" : 4920, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "l_handMiddle1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-jumping-jack-animation.ani", + "byteOffset" : 5550, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "r_shoulder_JNT", + "property" : "position", + "keyFramesBin" : { + "url" : "exercise/squat-to-jumping-jack-animation.ani", + "byteOffset" : 6180, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "r_arm_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-jumping-jack-animation.ani", + "byteOffset" : 6690, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "r_hand_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-jumping-jack-animation.ani", + "byteOffset" : 7320, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "r_handRing1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-jumping-jack-animation.ani", + "byteOffset" : 7950, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "r_handPinky1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-jumping-jack-animation.ani", + "byteOffset" : 8580, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "r_handMiddle1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-jumping-jack-animation.ani", + "byteOffset" : 9210, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "r_handIndex1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-jumping-jack-animation.ani", + "byteOffset" : 9840, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "neck_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-jumping-jack-animation.ani", + "byteOffset" : 10470, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "head_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-jumping-jack-animation.ani", + "byteOffset" : 11100, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "r_upleg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-jumping-jack-animation.ani", + "byteOffset" : 11730, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "r_leg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-jumping-jack-animation.ani", + "byteOffset" : 12360, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "r_foot_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-jumping-jack-animation.ani", + "byteOffset" : 12990, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "r_toebase_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-jumping-jack-animation.ani", + "byteOffset" : 13620, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "l_upleg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-jumping-jack-animation.ani", + "byteOffset" : 14250, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "l_leg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-jumping-jack-animation.ani", + "byteOffset" : 14880, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "l_foot_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-jumping-jack-animation.ani", + "byteOffset" : 15510, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + }, { + "node" : "l_toebase_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-jumping-jack-animation.ani", + "byteOffset" : 16140, + "numKeys" : 30 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.25 + }, + "relative" : false + } ], + "finishedActions" : [ 13 ] + }, { + "name" : "squatToLungeClip", + "loopCount" : 1, + "duration" : 0.0, + "endAction" : "BAKE", + "disconnectAction" : "BAKE", + "properties" : [ { + "node" : "hips_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-lunge-animation.ani", + "byteOffset" : 0, + "numKeys" : 24 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.0 + }, + "relative" : false + }, { + "node" : "hips_JNT", + "property" : "position", + "keyFramesBin" : { + "url" : "exercise/squat-to-lunge-animation.ani", + "byteOffset" : 504, + "numKeys" : 24 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.0 + }, + "relative" : false + }, { + "node" : "spine_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-lunge-animation.ani", + "byteOffset" : 912, + "numKeys" : 24 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.0 + }, + "relative" : false + }, { + "node" : "spine1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-lunge-animation.ani", + "byteOffset" : 1416, + "numKeys" : 24 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.0 + }, + "relative" : false + }, { + "node" : "spine2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-lunge-animation.ani", + "byteOffset" : 1920, + "numKeys" : 24 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.0 + }, + "relative" : false + }, { + "node" : "l_arm_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-lunge-animation.ani", + "byteOffset" : 2424, + "numKeys" : 24 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.0 + }, + "relative" : false + }, { + "node" : "l_forearm_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-lunge-animation.ani", + "byteOffset" : 2928, + "numKeys" : 24 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.0 + }, + "relative" : false + }, { + "node" : "l_hand_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-lunge-animation.ani", + "byteOffset" : 3432, + "numKeys" : 24 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.0 + }, + "relative" : false + }, { + "node" : "l_handThumb1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-lunge-animation.ani", + "byteOffset" : 3936, + "numKeys" : 24 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.0 + }, + "relative" : false + }, { + "node" : "l_handThumb2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-lunge-animation.ani", + "byteOffset" : 4440, + "numKeys" : 24 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.0 + }, + "relative" : false + }, { + "node" : "l_handThumb3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-lunge-animation.ani", + "byteOffset" : 4944, + "numKeys" : 24 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.0 + }, + "relative" : false + }, { + "node" : "l_handIndex1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-lunge-animation.ani", + "byteOffset" : 5448, + "numKeys" : 24 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.0 + }, + "relative" : false + }, { + "node" : "l_handIndex2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-lunge-animation.ani", + "byteOffset" : 5952, + "numKeys" : 24 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.0 + }, + "relative" : false + }, { + "node" : "l_handIndex3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-lunge-animation.ani", + "byteOffset" : 6456, + "numKeys" : 24 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.0 + }, + "relative" : false + }, { + "node" : "l_handPinky1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-lunge-animation.ani", + "byteOffset" : 6960, + "numKeys" : 24 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.0 + }, + "relative" : false + }, { + "node" : "l_handPinky2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-lunge-animation.ani", + "byteOffset" : 7464, + "numKeys" : 24 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.0 + }, + "relative" : false + }, { + "node" : "l_handPinky3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-lunge-animation.ani", + "byteOffset" : 7968, + "numKeys" : 24 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.0 + }, + "relative" : false + }, { + "node" : "l_handRing1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-lunge-animation.ani", + "byteOffset" : 8472, + "numKeys" : 24 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.0 + }, + "relative" : false + }, { + "node" : "l_handRing2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-lunge-animation.ani", + "byteOffset" : 8976, + "numKeys" : 24 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.0 + }, + "relative" : false + }, { + "node" : "l_handRing3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-lunge-animation.ani", + "byteOffset" : 9480, + "numKeys" : 24 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.0 + }, + "relative" : false + }, { + "node" : "l_handMiddle1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-lunge-animation.ani", + "byteOffset" : 9984, + "numKeys" : 24 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.0 + }, + "relative" : false + }, { + "node" : "l_handMiddle2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-lunge-animation.ani", + "byteOffset" : 10488, + "numKeys" : 24 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.0 + }, + "relative" : false + }, { + "node" : "l_handMiddle3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-lunge-animation.ani", + "byteOffset" : 10992, + "numKeys" : 24 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.0 + }, + "relative" : false + }, { + "node" : "r_arm_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-lunge-animation.ani", + "byteOffset" : 11496, + "numKeys" : 24 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.0 + }, + "relative" : false + }, { + "node" : "r_forearm_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-lunge-animation.ani", + "byteOffset" : 12000, + "numKeys" : 24 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.0 + }, + "relative" : false + }, { + "node" : "r_hand_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-lunge-animation.ani", + "byteOffset" : 12504, + "numKeys" : 24 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.0 + }, + "relative" : false + }, { + "node" : "r_handThumb1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-lunge-animation.ani", + "byteOffset" : 13008, + "numKeys" : 24 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.0 + }, + "relative" : false + }, { + "node" : "r_handThumb2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-lunge-animation.ani", + "byteOffset" : 13512, + "numKeys" : 24 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.0 + }, + "relative" : false + }, { + "node" : "r_handThumb3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-lunge-animation.ani", + "byteOffset" : 14016, + "numKeys" : 24 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.0 + }, + "relative" : false + }, { + "node" : "r_handRing1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-lunge-animation.ani", + "byteOffset" : 14520, + "numKeys" : 24 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.0 + }, + "relative" : false + }, { + "node" : "r_handRing2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-lunge-animation.ani", + "byteOffset" : 15024, + "numKeys" : 24 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.0 + }, + "relative" : false + }, { + "node" : "r_handRing3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-lunge-animation.ani", + "byteOffset" : 15528, + "numKeys" : 24 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.0 + }, + "relative" : false + }, { + "node" : "r_handPinky1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-lunge-animation.ani", + "byteOffset" : 16032, + "numKeys" : 24 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.0 + }, + "relative" : false + }, { + "node" : "r_handPinky2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-lunge-animation.ani", + "byteOffset" : 16536, + "numKeys" : 24 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.0 + }, + "relative" : false + }, { + "node" : "r_handPinky3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-lunge-animation.ani", + "byteOffset" : 17040, + "numKeys" : 24 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.0 + }, + "relative" : false + }, { + "node" : "r_handMiddle1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-lunge-animation.ani", + "byteOffset" : 17544, + "numKeys" : 24 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.0 + }, + "relative" : false + }, { + "node" : "r_handMiddle2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-lunge-animation.ani", + "byteOffset" : 18048, + "numKeys" : 24 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.0 + }, + "relative" : false + }, { + "node" : "r_handMiddle3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-lunge-animation.ani", + "byteOffset" : 18552, + "numKeys" : 24 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.0 + }, + "relative" : false + }, { + "node" : "r_handIndex1_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-lunge-animation.ani", + "byteOffset" : 19056, + "numKeys" : 24 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.0 + }, + "relative" : false + }, { + "node" : "r_handIndex2_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-lunge-animation.ani", + "byteOffset" : 19560, + "numKeys" : 24 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.0 + }, + "relative" : false + }, { + "node" : "r_handIndex3_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-lunge-animation.ani", + "byteOffset" : 20064, + "numKeys" : 24 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.0 + }, + "relative" : false + }, { + "node" : "neck_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-lunge-animation.ani", + "byteOffset" : 20568, + "numKeys" : 24 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.0 + }, + "relative" : false + }, { + "node" : "head_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-lunge-animation.ani", + "byteOffset" : 21072, + "numKeys" : 24 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.0 + }, + "relative" : false + }, { + "node" : "r_upleg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-lunge-animation.ani", + "byteOffset" : 21576, + "numKeys" : 24 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.0 + }, + "relative" : false + }, { + "node" : "r_leg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-lunge-animation.ani", + "byteOffset" : 22080, + "numKeys" : 24 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.0 + }, + "relative" : false + }, { + "node" : "r_foot_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-lunge-animation.ani", + "byteOffset" : 22584, + "numKeys" : 24 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.0 + }, + "relative" : false + }, { + "node" : "r_toebase_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-lunge-animation.ani", + "byteOffset" : 23088, + "numKeys" : 24 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.0 + }, + "relative" : false + }, { + "node" : "l_upleg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-lunge-animation.ani", + "byteOffset" : 23592, + "numKeys" : 24 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.0 + }, + "relative" : false + }, { + "node" : "l_leg_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-lunge-animation.ani", + "byteOffset" : 24096, + "numKeys" : 24 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.0 + }, + "relative" : false + }, { + "node" : "l_foot_JNT", + "property" : "orientation", + "keyFramesBin" : { + "url" : "exercise/squat-to-lunge-animation.ani", + "byteOffset" : 24600, + "numKeys" : 24 + }, + "alphaFunction" : "DEFAULT", + "timePeriod" : { + "delay" : 0.0, + "duration" : 1.0 + }, + "relative" : false + } ], + "finishedActions" : [ 14 ] + } ], + "animationGroups" : [ { + "name" : "Idle", + "animations" : [ "idleClip" ] + }, { + "name" : "Squat", + "animations" : [ "squatClip_0", "squatClip_1" ] + }, { + "name" : "JumpingJack", + "animations" : [ "jumpingJackClip" ] + }, { + "name" : "Lunge", + "animations" : [ "lungeClip" ] + }, { + "name" : "IdleToSquat", + "animations" : [ "idleToSquatClip_0", "idleToSquatClip_1" ] + }, { + "name" : "SquatToIdle", + "animations" : [ "squatToIdleClip" ] + }, { + "name" : "IdleToJumpingJack", + "animations" : [ "idleToJumpingJackClip" ] + }, { + "name" : "JumpingJackToIdle", + "animations" : [ "jumpingJackToIdleClip" ] + }, { + "name" : "IdleToLunge", + "animations" : [ "idleToLungeClip" ] + }, { + "name" : "LungeToIdle", + "animations" : [ "lungeToIdleClip" ] + }, { + "name" : "JumpingJackToLunge", + "animations" : [ "jumpingJackToLungeClip" ] + }, { + "name" : "JumpingJackToSquat", + "animations" : [ "jumpingJackToSquatClip" ] + }, { + "name" : "LungeToJumpingJack", + "animations" : [ "lungeToJumpingJackClip" ] + }, { + "name" : "LungeToSquat", + "animations" : [ "lungeToSquatClip" ] + }, { + "name" : "SquatToJumpingJack", + "animations" : [ "squatToJumpingJackClip" ] + }, { + "name" : "SquatToLunge", + "animations" : [ "squatToLungeClip" ] + } ], + "skeletons" : [ { + "node" : "hips_JNT" + } ] +} diff --git a/resources/po/as.po b/resources/po/as.po index dfd476f..490dd05 100755 --- a/resources/po/as.po +++ b/resources/po/as.po @@ -178,5 +178,5 @@ msgstr "Skybox" msgid "DALI_DEMO_STR_TITLE_PBR" msgstr "PBR" -msgid "DALI_DEMO_STR_TITLE_SCENE3D_MODEL_VIEW" -msgstr "Scene3D Model View" +msgid "DALI_DEMO_STR_TITLE_SCENE3D_MODEL" +msgstr "Scene3D Model" diff --git a/resources/po/de.po b/resources/po/de.po index 9f9fef7..5a794b0 100755 --- a/resources/po/de.po +++ b/resources/po/de.po @@ -178,5 +178,5 @@ msgstr "Skybox" msgid "DALI_DEMO_STR_TITLE_PBR" msgstr "PBR" -msgid "DALI_DEMO_STR_TITLE_SCENE3D_MODEL_VIEW" -msgstr "Scene3D Model View" +msgid "DALI_DEMO_STR_TITLE_SCENE3D_MODEL" +msgstr "Scene3D Model" diff --git a/resources/po/en_GB.po b/resources/po/en_GB.po index c8a1c5e..94aed08 100755 --- a/resources/po/en_GB.po +++ b/resources/po/en_GB.po @@ -309,5 +309,5 @@ msgstr "Web View" msgid "DALI_DEMO_STR_TITLE_ANIMATED_VECTOR_IMAGES" msgstr "Animated Vector Images" -msgid "DALI_DEMO_STR_TITLE_SCENE3D_MODEL_VIEW" -msgstr "Scene3D Model View" +msgid "DALI_DEMO_STR_TITLE_SCENE3D_MODEL" +msgstr "Scene3D Model" diff --git a/resources/po/en_US.po b/resources/po/en_US.po index b50e32f..ab66673 100755 --- a/resources/po/en_US.po +++ b/resources/po/en_US.po @@ -324,5 +324,5 @@ msgstr "Text Bitmap Font" msgid "DALI_DEMO_STR_TITLE_WAVES" msgstr "Waves" -msgid "DALI_DEMO_STR_TITLE_SCENE3D_MODEL_VIEW" -msgstr "Scene3D Model View" +msgid "DALI_DEMO_STR_TITLE_SCENE3D_MODEL" +msgstr "Scene3D Model" diff --git a/resources/po/es.po b/resources/po/es.po index 265ba8c..f4e77f8 100755 --- a/resources/po/es.po +++ b/resources/po/es.po @@ -178,5 +178,5 @@ msgstr "Skybox" msgid "DALI_DEMO_STR_TITLE_PBR" msgstr "PBR" -msgid "DALI_DEMO_STR_TITLE_SCENE3D_MODEL_VIEW" -msgstr "Scene3D Model View" +msgid "DALI_DEMO_STR_TITLE_SCENE3D_MODEL" +msgstr "Scene3D Model" diff --git a/resources/po/fi.po b/resources/po/fi.po index b87f9c8..08b06cd 100755 --- a/resources/po/fi.po +++ b/resources/po/fi.po @@ -178,5 +178,5 @@ msgstr "Skybox" msgid "DALI_DEMO_STR_TITLE_PBR" msgstr "PBR" -msgid "DALI_DEMO_STR_TITLE_SCENE3D_MODEL_VIEW" -msgstr "Scene3D Model View" +msgid "DALI_DEMO_STR_TITLE_SCENE3D_MODEL" +msgstr "Scene3D Model" diff --git a/resources/po/ko.po b/resources/po/ko.po index db44bf7..aafc98d 100755 --- a/resources/po/ko.po +++ b/resources/po/ko.po @@ -198,5 +198,5 @@ msgstr "PBR" msgid "DALI_DEMO_STR_TITLE_ANIMATED_VECTOR_IMAGES" msgstr "애니메이션 벡터 이미지" -msgid "DALI_DEMO_STR_TITLE_SCENE3D_MODEL_VIEW" -msgstr "Scene3D Model View" +msgid "DALI_DEMO_STR_TITLE_SCENE3D_MODEL" +msgstr "Scene3D Model" diff --git a/resources/po/ml.po b/resources/po/ml.po index ec16f33..2205dde 100755 --- a/resources/po/ml.po +++ b/resources/po/ml.po @@ -178,5 +178,5 @@ msgstr "Skybox" msgid "DALI_DEMO_STR_TITLE_PBR" msgstr "PBR" -msgid "DALI_DEMO_STR_TITLE_SCENE3D_MODEL_VIEW" -msgstr "Scene3D Model View" +msgid "DALI_DEMO_STR_TITLE_SCENE3D_MODEL" +msgstr "Scene3D Model" diff --git a/resources/po/ur.po b/resources/po/ur.po index a32349e..55b296f 100755 --- a/resources/po/ur.po +++ b/resources/po/ur.po @@ -178,5 +178,5 @@ msgstr "Skybox" msgid "DALI_DEMO_STR_TITLE_PBR" msgstr "PBR" -msgid "DALI_DEMO_STR_TITLE_SCENE3D_MODEL_VIEW" -msgstr "Scene3D Model View" +msgid "DALI_DEMO_STR_TITLE_SCENE3D_MODEL" +msgstr "Scene3D Model" diff --git a/resources/po/zn_CH.po b/resources/po/zn_CH.po index d5fb032..15af7d8 100755 --- a/resources/po/zn_CH.po +++ b/resources/po/zn_CH.po @@ -181,5 +181,5 @@ msgstr "Skybox" msgid "DALI_DEMO_STR_TITLE_PBR" msgstr "PBR" -msgid "DALI_DEMO_STR_TITLE_SCENE3D_MODEL_VIEW" -msgstr "Scene3D Model View" +msgid "DALI_DEMO_STR_TITLE_SCENE3D_MODEL" +msgstr "Scene3D Model" diff --git a/shared/dali-demo-strings.h b/shared/dali-demo-strings.h index 5f7bb98..3552ed3 100644 --- a/shared/dali-demo-strings.h +++ b/shared/dali-demo-strings.h @@ -115,7 +115,7 @@ extern "C" #define DALI_DEMO_STR_TITLE_RENDERING_RADIAL_PROGRESS dgettext(DALI_DEMO_DOMAIN_LOCAL, "DALI_DEMO_STR_TITLE_RENDERING_RADIAL_PROGRESS") #define DALI_DEMO_STR_TITLE_RENDERING_RAY_MARCHING dgettext(DALI_DEMO_DOMAIN_LOCAL, "DALI_DEMO_STR_TITLE_RENDERING_RAY_MARCHING") #define DALI_DEMO_STR_TITLE_RENDERER_STENCIL dgettext(DALI_DEMO_DOMAIN_LOCAL, "DALI_DEMO_STR_TITLE_RENDERER_STENCIL") -#define DALI_DEMO_STR_TITLE_SCENE3D_MODEL_VIEW dgettext(DALI_DEMO_DOMAIN_LOCAL, "DALI_DEMO_STR_TITLE_SCENE3D_MODEL_VIEW") +#define DALI_DEMO_STR_TITLE_SCENE3D_MODEL dgettext(DALI_DEMO_DOMAIN_LOCAL, "DALI_DEMO_STR_TITLE_SCENE3D_MODEL") #define DALI_DEMO_STR_TITLE_SCENE3D dgettext(DALI_DEMO_DOMAIN_LOCAL, "DALI_DEMO_STR_TITLE_SCENE3D") #define DALI_DEMO_STR_TITLE_SCRIPT_BASED_UI dgettext(DALI_DEMO_DOMAIN_LOCAL, "DALI_DEMO_STR_TITLE_SCRIPT_BASED_UI") #define DALI_DEMO_STR_TITLE_SCROLL_VIEW dgettext(DALI_DEMO_DOMAIN_LOCAL, "DALI_DEMO_STR_TITLE_SCROLL_VIEW") @@ -227,7 +227,7 @@ extern "C" #define DALI_DEMO_STR_TITLE_RENDERING_RAY_MARCHING "Ray Marching" #define DALI_DEMO_STR_TITLE_RENDERING_RADIAL_PROGRESS "Radial Progress" #define DALI_DEMO_STR_TITLE_RENDERER_STENCIL "Renderer Stencils" -#define DALI_DEMO_STR_TITLE_SCENE3D_MODEL_VIEW "Scene3D Model View" +#define DALI_DEMO_STR_TITLE_SCENE3D_MODEL "Scene3D Model" #define DALI_DEMO_STR_TITLE_SCENE3D "Scene3D" #define DALI_DEMO_STR_TITLE_SCRIPT_BASED_UI "Script Based UI" #define DALI_DEMO_STR_TITLE_SCROLL_VIEW "Scroll View" -- 2.7.4