mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-14 16:14:38 +00:00
Initial implementation of the new Base Game Template and some starting modules.
This makes some tweaks to the engine to support this, specifically, it tweaks the hardcoded shaderpaths to defer to a pref variable, so none of the shader paths are hardcoded. Also tweaks how post effects read in texture files, removing a bizzare filepath interpretation choice, where if the file path didn't start with "/" it forcefully appended the script's file path. This made it impossible to have images not in the same dir as the script file defining the post effect. This was changed and the existing template's post effects tweaked for now to just add "./" to those few paths impacted, as well as the perf vars to support the non-hardcoded shader paths in the engine.
This commit is contained in:
parent
5c8a82180b
commit
d680dc9934
2321 changed files with 296541 additions and 85 deletions
1
Templates/Modules/FPSGameplay/art/shapes/.gitignore
vendored
Normal file
1
Templates/Modules/FPSGameplay/art/shapes/.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
# Keep directory in git repo
|
||||
1932
Templates/Modules/FPSGameplay/art/shapes/Cheetah/Cheetah_Body.DAE
Normal file
1932
Templates/Modules/FPSGameplay/art/shapes/Cheetah/Cheetah_Body.DAE
Normal file
File diff suppressed because one or more lines are too long
|
|
@ -0,0 +1,54 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
// Copyright (c) 2012 GarageGames, LLC
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
// of this software and associated documentation files (the "Software"), to
|
||||
// deal in the Software without restriction, including without limitation the
|
||||
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||
// sell copies of the Software, and to permit persons to whom the Software is
|
||||
// furnished to do so, subject to the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included in
|
||||
// all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||
// IN THE SOFTWARE.
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
singleton TSShapeConstructor(CheetahDAE)
|
||||
{
|
||||
baseShape = "./Cheetah_Body.DAE";
|
||||
loadLights = "0";
|
||||
lodType = "TrailingNumber";
|
||||
neverImport = "null EnvironmentAmbientLight";
|
||||
forceUpdateMaterials = "0";
|
||||
loadLights = "0";
|
||||
};
|
||||
|
||||
function CheetahDAE::onLoad(%this)
|
||||
{
|
||||
%this.setSequenceCyclic("ambient", "0");
|
||||
%this.renameSequence("ambient", "timeline");
|
||||
%this.addSequence("timeline", "root", "0", "1");
|
||||
%this.addSequence("timeline", "spring0", "10", "11");
|
||||
%this.addSequence("timeline", "spring1", "20", "21");
|
||||
%this.addSequence("timeline", "spring2", "30", "31");
|
||||
%this.addSequence("timeline", "spring3", "40", "41");
|
||||
%this.addSequence("timeline", "brakeLight", "50", "51");
|
||||
%this.setSequencePriority("brakeLight", "8");
|
||||
%this.setNodeTransform("cam", "5.46934e-008 -4.75632 2.89171 -0.404897 0.817636 0.409303 1.71107", "1");
|
||||
%this.removeNode("CheetahMesh300");
|
||||
%this.removeNode("CheetahMesh200");
|
||||
%this.removeNode("CheetahMesh100");
|
||||
%this.removeNode("CheetahMesh2");
|
||||
%this.removeNode("TailLightsMesh300");
|
||||
%this.removeNode("TailLightsMesh200");
|
||||
%this.removeNode("TailLightsMesh100");
|
||||
%this.removeNode("TailLightsMesh2");
|
||||
%this.removeNode("nulldetail1");
|
||||
}
|
||||
BIN
Templates/Modules/FPSGameplay/art/shapes/Cheetah/Cheetah_D.dds
Normal file
BIN
Templates/Modules/FPSGameplay/art/shapes/Cheetah/Cheetah_D.dds
Normal file
Binary file not shown.
Binary file not shown.
BIN
Templates/Modules/FPSGameplay/art/shapes/Cheetah/Cheetah_N.dds
Normal file
BIN
Templates/Modules/FPSGameplay/art/shapes/Cheetah/Cheetah_N.dds
Normal file
Binary file not shown.
BIN
Templates/Modules/FPSGameplay/art/shapes/Cheetah/Cheetah_S.dds
Normal file
BIN
Templates/Modules/FPSGameplay/art/shapes/Cheetah/Cheetah_S.dds
Normal file
Binary file not shown.
File diff suppressed because one or more lines are too long
|
|
@ -0,0 +1,45 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
// Copyright (c) 2012 GarageGames, LLC
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
// of this software and associated documentation files (the "Software"), to
|
||||
// deal in the Software without restriction, including without limitation the
|
||||
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||
// sell copies of the Software, and to permit persons to whom the Software is
|
||||
// furnished to do so, subject to the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included in
|
||||
// all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||
// IN THE SOFTWARE.
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
singleton TSShapeConstructor(Cheetah_TurretDAE)
|
||||
{
|
||||
baseShape = "./Cheetah_Turret.DAE";
|
||||
lodType = "TrailingNumber";
|
||||
neverImport = "null EnvironmentAmbientLight";
|
||||
matNamePrefix = "";
|
||||
forceUpdateMaterials = "0";
|
||||
loadLights = "0";
|
||||
};
|
||||
|
||||
function Cheetah_TurretDAE::onLoad(%this)
|
||||
{
|
||||
%this.renameSequence("ambient", "fire");
|
||||
%this.removeNode("Cheetah_Turret_LOD200");
|
||||
%this.removeNode("Cheetah_Turret_LOD2");
|
||||
%this.removeNode("Cheetah_Turret_LOD100");
|
||||
%this.removeNode("collision-1");
|
||||
%this.removeNode("collision-2");
|
||||
%this.removeNode("Cheetah_Turret_LOD300");
|
||||
%this.removeNode("flash_LOD2");
|
||||
%this.removeNode("flash_LOD100");
|
||||
%this.removeNode("flash_LOD200");
|
||||
}
|
||||
|
|
@ -0,0 +1,66 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
// Copyright (c) 2012 GarageGames, LLC
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
// of this software and associated documentation files (the "Software"), to
|
||||
// deal in the Software without restriction, including without limitation the
|
||||
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||
// sell copies of the Software, and to permit persons to whom the Software is
|
||||
// furnished to do so, subject to the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included in
|
||||
// all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||
// IN THE SOFTWARE.
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
singleton Material(Cheetah_Main)
|
||||
{
|
||||
mapTo = "Cheetah_Main";
|
||||
diffuseMap[0] = "data/FPSGameplay/art/shapes/Cheetah/Cheetah_D";
|
||||
specular[0] = "0.9 0.9 0.9 1";
|
||||
specularPower[0] = "10";
|
||||
translucentBlendOp = "None";
|
||||
normalMap[0] = "data/FPSGameplay/art/shapes/Cheetah/Cheetah_N";
|
||||
specularMap[0] = "data/FPSGameplay/art/shapes/Cheetah/Cheetah_S";
|
||||
castDynamicShadows = true;
|
||||
};
|
||||
|
||||
singleton Material(Cheetah_TailLights)
|
||||
{
|
||||
mapTo = "Cheetah_TailLights";
|
||||
diffuseColor[0] = "0.588235 0 0 1";
|
||||
specular[0] = "0.9 0.9 0.9 1";
|
||||
specularPower[0] = "10";
|
||||
translucentBlendOp = "None";
|
||||
glow[0] = "1";
|
||||
emissive[0] = "1";
|
||||
};
|
||||
|
||||
singleton Material(Cheetah_MuzzleFlash)
|
||||
{
|
||||
mapTo = "Cheetah_MuzzleFlash";
|
||||
diffuseMap[0] = "data/FPSGameplay/art/shapes/Cheetah/Cheetah_MuzzleFlash_D";
|
||||
specular[0] = "0.9 0.9 0.9 1";
|
||||
specularPower[0] = "10";
|
||||
translucentBlendOp = "AddAlpha";
|
||||
glow[0] = "1";
|
||||
emissive[0] = "1";
|
||||
castShadows = "0";
|
||||
translucent = "1";
|
||||
};
|
||||
|
||||
singleton Material(Cheetah_Collider)
|
||||
{
|
||||
mapTo = "Collider";
|
||||
diffuseColor[0] = "1 0 0 0.75";
|
||||
specular[0] = "0.9 0.9 0.9 1";
|
||||
specularPower[0] = "10";
|
||||
translucent = "1";
|
||||
};
|
||||
455
Templates/Modules/FPSGameplay/art/shapes/Cheetah/wheel.DAE
Normal file
455
Templates/Modules/FPSGameplay/art/shapes/Cheetah/wheel.DAE
Normal file
File diff suppressed because one or more lines are too long
40
Templates/Modules/FPSGameplay/art/shapes/Cheetah/wheel.cs
Normal file
40
Templates/Modules/FPSGameplay/art/shapes/Cheetah/wheel.cs
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
// Copyright (c) 2012 GarageGames, LLC
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
// of this software and associated documentation files (the "Software"), to
|
||||
// deal in the Software without restriction, including without limitation the
|
||||
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||
// sell copies of the Software, and to permit persons to whom the Software is
|
||||
// furnished to do so, subject to the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included in
|
||||
// all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||
// IN THE SOFTWARE.
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
singleton TSShapeConstructor(WheelDae)
|
||||
{
|
||||
baseShape = "./wheel.DAE";
|
||||
lodType = "TrailingNumber";
|
||||
neverImport = "null EnvironmentAmbientLight";
|
||||
matNamePrefix = "";
|
||||
forceUpdateMaterials = "0";
|
||||
loadLights = "0";
|
||||
};
|
||||
|
||||
function WheelDae::onLoad(%this)
|
||||
{
|
||||
%this.removeNode("Tread_LOD100");
|
||||
%this.removeNode("Tread_LOD2");
|
||||
%this.removeNode("Tread_LOD300");
|
||||
%this.removeNode("Tread_LOD200");
|
||||
%this.removeNode("collision-1");
|
||||
}
|
||||
431
Templates/Modules/FPSGameplay/art/shapes/Cheetah/wheelBack.DAE
Normal file
431
Templates/Modules/FPSGameplay/art/shapes/Cheetah/wheelBack.DAE
Normal file
File diff suppressed because one or more lines are too long
|
|
@ -0,0 +1,41 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
// Copyright (c) 2012 GarageGames, LLC
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
// of this software and associated documentation files (the "Software"), to
|
||||
// deal in the Software without restriction, including without limitation the
|
||||
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||
// sell copies of the Software, and to permit persons to whom the Software is
|
||||
// furnished to do so, subject to the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included in
|
||||
// all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||
// IN THE SOFTWARE.
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
singleton TSShapeConstructor(WheelBackDae)
|
||||
{
|
||||
baseShape = "./wheelBack.DAE";
|
||||
lodType = "TrailingNumber";
|
||||
neverImport = "null EnvironmentAmbientLight";
|
||||
matNamePrefix = "";
|
||||
forceUpdateMaterials = "0";
|
||||
loadLights = "0";
|
||||
};
|
||||
|
||||
function WheelBackDae::onLoad(%this)
|
||||
{
|
||||
%this.removeNode("TireBack_LOD2");
|
||||
%this.removeNode("TireBack_LOD300");
|
||||
%this.removeNode("TireBack_LOD200");
|
||||
%this.removeNode("TireBack_LOD100");
|
||||
%this.removeNode("collision-1");
|
||||
%this.removeNode("nulldetail1");
|
||||
}
|
||||
|
|
@ -0,0 +1,34 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
// Copyright (c) 2012 GarageGames, LLC
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
// of this software and associated documentation files (the "Software"), to
|
||||
// deal in the Software without restriction, including without limitation the
|
||||
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||
// sell copies of the Software, and to permit persons to whom the Software is
|
||||
// furnished to do so, subject to the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included in
|
||||
// all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||
// IN THE SOFTWARE.
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
singleton TSShapeConstructor(PlayerAnim_Lurker_BackDAE)
|
||||
{
|
||||
baseShape = "./PlayerAnim_Lurker_Back.dae";
|
||||
neverImport = "EnvironmentAmbientLight";
|
||||
loadLights = "0";
|
||||
};
|
||||
|
||||
function PlayerAnim_Lurker_BackDAE::onLoad(%this)
|
||||
{
|
||||
%this.setSequenceCyclic("ambient", "true");
|
||||
%this.addSequence("ambient", "Back", "250", "269");
|
||||
}
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -0,0 +1,34 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
// Copyright (c) 2012 GarageGames, LLC
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
// of this software and associated documentation files (the "Software"), to
|
||||
// deal in the Software without restriction, including without limitation the
|
||||
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||
// sell copies of the Software, and to permit persons to whom the Software is
|
||||
// furnished to do so, subject to the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included in
|
||||
// all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||
// IN THE SOFTWARE.
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
singleton TSShapeConstructor(PlayerAnim_Lurker_Celebrate_01DAE)
|
||||
{
|
||||
baseShape = "./PlayerAnim_Lurker_Celebrate_01.dae";
|
||||
neverImport = "EnvironmentAmbientLight";
|
||||
loadLights = "0";
|
||||
};
|
||||
|
||||
function PlayerAnim_Lurker_Celebrate_01DAE::onLoad(%this)
|
||||
{
|
||||
%this.setSequenceCyclic("ambient", "false");
|
||||
%this.addSequence("ambient", "Celebrate_01", "2020", "2090");
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
|
|
@ -0,0 +1,34 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
// Copyright (c) 2012 GarageGames, LLC
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
// of this software and associated documentation files (the "Software"), to
|
||||
// deal in the Software without restriction, including without limitation the
|
||||
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||
// sell copies of the Software, and to permit persons to whom the Software is
|
||||
// furnished to do so, subject to the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included in
|
||||
// all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||
// IN THE SOFTWARE.
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
singleton TSShapeConstructor(PlayerAnim_Lurker_Crouch_BackwardDAE)
|
||||
{
|
||||
baseShape = "./PlayerAnim_Lurker_Crouch_Backward.dae";
|
||||
neverImport = "EnvironmentAmbientLight";
|
||||
loadLights = "0";
|
||||
};
|
||||
|
||||
function PlayerAnim_Lurker_Crouch_BackwardDAE::onLoad(%this)
|
||||
{
|
||||
%this.setSequenceCyclic("ambient", "true");
|
||||
%this.addSequence("ambient", "Crouch_Backward", "460", "489");
|
||||
}
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -0,0 +1,34 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
// Copyright (c) 2012 GarageGames, LLC
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
// of this software and associated documentation files (the "Software"), to
|
||||
// deal in the Software without restriction, including without limitation the
|
||||
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||
// sell copies of the Software, and to permit persons to whom the Software is
|
||||
// furnished to do so, subject to the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included in
|
||||
// all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||
// IN THE SOFTWARE.
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
singleton TSShapeConstructor(PlayerAnim_Lurker_Crouch_ForwardDAE)
|
||||
{
|
||||
baseShape = "./PlayerAnim_Lurker_Crouch_Forward.dae";
|
||||
neverImport = "EnvironmentAmbientLight";
|
||||
loadLights = "0";
|
||||
};
|
||||
|
||||
function PlayerAnim_Lurker_Crouch_ForwardDAE::onLoad(%this)
|
||||
{
|
||||
%this.setSequenceCyclic("ambient", "true");
|
||||
%this.addSequence("ambient", "Crouch_Forward", "400", "429");
|
||||
}
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -0,0 +1,34 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
// Copyright (c) 2012 GarageGames, LLC
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
// of this software and associated documentation files (the "Software"), to
|
||||
// deal in the Software without restriction, including without limitation the
|
||||
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||
// sell copies of the Software, and to permit persons to whom the Software is
|
||||
// furnished to do so, subject to the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included in
|
||||
// all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||
// IN THE SOFTWARE.
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
singleton TSShapeConstructor(PlayerAnim_Lurker_Crouch_RootDAE)
|
||||
{
|
||||
baseShape = "./PlayerAnim_Lurker_Crouch_Root.dae";
|
||||
neverImport = "EnvironmentAmbientLight";
|
||||
loadLights = "0";
|
||||
};
|
||||
|
||||
function PlayerAnim_Lurker_Crouch_RootDAE::onLoad(%this)
|
||||
{
|
||||
%this.setSequenceCyclic("ambient", "true");
|
||||
%this.addSequence("ambient", "Crouch_Root", "300", "359");
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
|
|
@ -0,0 +1,34 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
// Copyright (c) 2012 GarageGames, LLC
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
// of this software and associated documentation files (the "Software"), to
|
||||
// deal in the Software without restriction, including without limitation the
|
||||
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||
// sell copies of the Software, and to permit persons to whom the Software is
|
||||
// furnished to do so, subject to the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included in
|
||||
// all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||
// IN THE SOFTWARE.
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
singleton TSShapeConstructor(PlayerAnim_Lurker_Crouch_SideDAE)
|
||||
{
|
||||
baseShape = "./PlayerAnim_Lurker_Crouch_Side.dae";
|
||||
neverImport = "EnvironmentAmbientLight";
|
||||
loadLights = "0";
|
||||
};
|
||||
|
||||
function PlayerAnim_Lurker_Crouch_SideDAE::onLoad(%this)
|
||||
{
|
||||
%this.setSequenceCyclic("ambient", "true");
|
||||
%this.addSequence("ambient", "Crouch_Side", "520", "549");
|
||||
}
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -0,0 +1,34 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
// Copyright (c) 2012 GarageGames, LLC
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
// of this software and associated documentation files (the "Software"), to
|
||||
// deal in the Software without restriction, including without limitation the
|
||||
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||
// sell copies of the Software, and to permit persons to whom the Software is
|
||||
// furnished to do so, subject to the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included in
|
||||
// all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||
// IN THE SOFTWARE.
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
singleton TSShapeConstructor(PlayerAnim_Lurker_Death1DAE)
|
||||
{
|
||||
baseShape = "./PlayerAnim_Lurker_Death1.dae";
|
||||
neverImport = "EnvironmentAmbientLight";
|
||||
loadLights = "0";
|
||||
};
|
||||
|
||||
function PlayerAnim_Lurker_Death1DAE::onLoad(%this)
|
||||
{
|
||||
%this.setSequenceCyclic("ambient", "false");
|
||||
%this.addSequence("ambient", "Death1", "1140", "1180");
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
|
|
@ -0,0 +1,34 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
// Copyright (c) 2012 GarageGames, LLC
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
// of this software and associated documentation files (the "Software"), to
|
||||
// deal in the Software without restriction, including without limitation the
|
||||
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||
// sell copies of the Software, and to permit persons to whom the Software is
|
||||
// furnished to do so, subject to the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included in
|
||||
// all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||
// IN THE SOFTWARE.
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
singleton TSShapeConstructor(PlayerAnim_Lurker_Death2DAE)
|
||||
{
|
||||
baseShape = "./PlayerAnim_Lurker_Death2.dae";
|
||||
neverImport = "EnvironmentAmbientLight";
|
||||
loadLights = "0";
|
||||
};
|
||||
|
||||
function PlayerAnim_Lurker_Death2DAE::onLoad(%this)
|
||||
{
|
||||
%this.setSequenceCyclic("ambient", "false");
|
||||
%this.addSequence("ambient", "Death2", "1210", "1255");
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
|
|
@ -0,0 +1,34 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
// Copyright (c) 2012 GarageGames, LLC
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
// of this software and associated documentation files (the "Software"), to
|
||||
// deal in the Software without restriction, including without limitation the
|
||||
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||
// sell copies of the Software, and to permit persons to whom the Software is
|
||||
// furnished to do so, subject to the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included in
|
||||
// all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||
// IN THE SOFTWARE.
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
singleton TSShapeConstructor(PlayerAnim_Lurker_Death3DAE)
|
||||
{
|
||||
baseShape = "./PlayerAnim_Lurker_Death3.dae";
|
||||
neverImport = "EnvironmentAmbientLight";
|
||||
loadLights = "0";
|
||||
};
|
||||
|
||||
function PlayerAnim_Lurker_Death3DAE::onLoad(%this)
|
||||
{
|
||||
%this.setSequenceCyclic("ambient", "false");
|
||||
%this.addSequence("ambient", "Death3", "1280", "1320");
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
|
|
@ -0,0 +1,34 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
// Copyright (c) 2012 GarageGames, LLC
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
// of this software and associated documentation files (the "Software"), to
|
||||
// deal in the Software without restriction, including without limitation the
|
||||
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||
// sell copies of the Software, and to permit persons to whom the Software is
|
||||
// furnished to do so, subject to the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included in
|
||||
// all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||
// IN THE SOFTWARE.
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
singleton TSShapeConstructor(PlayerAnim_Lurker_FallDAE)
|
||||
{
|
||||
baseShape = "./PlayerAnim_Lurker_Fall.dae";
|
||||
neverImport = "EnvironmentAmbientLight";
|
||||
loadLights = "0";
|
||||
};
|
||||
|
||||
function PlayerAnim_Lurker_FallDAE::onLoad(%this)
|
||||
{
|
||||
%this.setSequenceCyclic("ambient", "true");
|
||||
%this.addSequence("ambient", "Fall", "1040", "1069");
|
||||
}
|
||||
|
|
@ -0,0 +1,798 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<COLLADA xmlns="http://www.collada.org/2005/11/COLLADASchema" version="1.4.1">
|
||||
<asset>
|
||||
<contributor>
|
||||
<author>MattO</author>
|
||||
<authoring_tool>OpenCOLLADA for 3ds Max; Version: 1.3.0; Revision: 839M; Platform: x64; Configuration: Release_Max2012</authoring_tool>
|
||||
<source_data>file:///C:/Dropbox/Prj/GGStout/Lurker/SoldierTP_Lurker_Animation_Master.max</source_data>
|
||||
</contributor>
|
||||
<created>2011-09-29T23:38:25</created>
|
||||
<modified>2011-09-29T23:38:25</modified>
|
||||
<unit name="meter" meter="1"/>
|
||||
<up_axis>Z_UP</up_axis>
|
||||
</asset>
|
||||
<library_effects>
|
||||
<effect id="ShapeBounds">
|
||||
<profile_COMMON>
|
||||
<technique sid="common">
|
||||
<blinn>
|
||||
<emission>
|
||||
<color>0 0 0 1</color>
|
||||
</emission>
|
||||
<ambient>
|
||||
<color>0.1647059 1 0 1</color>
|
||||
</ambient>
|
||||
<diffuse>
|
||||
<color>0.1647059 1 0 1</color>
|
||||
</diffuse>
|
||||
<specular>
|
||||
<color>0.9 0.9 0.9 1</color>
|
||||
</specular>
|
||||
<shininess>
|
||||
<float>10</float>
|
||||
</shininess>
|
||||
<reflective>
|
||||
<color>0 0 0 1</color>
|
||||
</reflective>
|
||||
<transparent opaque="A_ONE">
|
||||
<color>1 1 1 1</color>
|
||||
</transparent>
|
||||
<transparency>
|
||||
<float>1</float>
|
||||
</transparency>
|
||||
</blinn>
|
||||
</technique>
|
||||
</profile_COMMON>
|
||||
<extra>
|
||||
<technique profile="OpenCOLLADA3dsMax">
|
||||
<extended_shader>
|
||||
<apply_reflection_dimming>0</apply_reflection_dimming>
|
||||
<dim_level>0</dim_level>
|
||||
<falloff_type>0</falloff_type>
|
||||
<index_of_refraction>1.5</index_of_refraction>
|
||||
<opacity_type>0</opacity_type>
|
||||
<reflection_level>3</reflection_level>
|
||||
<wire_size>1</wire_size>
|
||||
<wire_units>0</wire_units>
|
||||
</extended_shader>
|
||||
<shader>
|
||||
<ambient_diffuse_lock>1</ambient_diffuse_lock>
|
||||
<ambient_diffuse_texture_lock>1</ambient_diffuse_texture_lock>
|
||||
<diffuse_specular_lock>0</diffuse_specular_lock>
|
||||
<soften>0.1</soften>
|
||||
<use_self_illum_color>0</use_self_illum_color>
|
||||
</shader>
|
||||
</technique>
|
||||
</extra>
|
||||
</effect>
|
||||
</library_effects>
|
||||
<library_materials>
|
||||
<material id="ShapeBounds-material" name="ShapeBounds">
|
||||
<instance_effect url="#ShapeBounds"/>
|
||||
</material>
|
||||
</library_materials>
|
||||
<library_geometries>
|
||||
<geometry id="geom-Bounds" name="Bounds">
|
||||
<mesh>
|
||||
<source id="geom-Bounds-positions">
|
||||
<float_array id="geom-Bounds-positions-array" count="24">-0.425 -0.425 0 0.425 -0.425 0 -0.425 0.425 0 0.425 0.425 0 -0.425 -0.425 1.84 0.425 -0.425 1.84 -0.425 0.425 1.84 0.425 0.425 1.84</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#geom-Bounds-positions-array" count="8" stride="3">
|
||||
<param name="X" type="float"/>
|
||||
<param name="Y" type="float"/>
|
||||
<param name="Z" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="geom-Bounds-normals">
|
||||
<float_array id="geom-Bounds-normals-array" count="72">0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 1 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#geom-Bounds-normals-array" count="24" stride="3">
|
||||
<param name="X" type="float"/>
|
||||
<param name="Y" type="float"/>
|
||||
<param name="Z" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="geom-Bounds-map1">
|
||||
<float_array id="geom-Bounds-map1-array" count="36">0 0 0 1 0 0 0 1 0 1 1 0 0 0 0 1 0 0 0 1 0 1 1 0 0 0 0 1 0 0 0 1 0 1 1 0</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#geom-Bounds-map1-array" count="12" stride="3">
|
||||
<param name="S" type="float"/>
|
||||
<param name="T" type="float"/>
|
||||
<param name="P" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<vertices id="geom-Bounds-vertices">
|
||||
<input semantic="POSITION" source="#geom-Bounds-positions"/>
|
||||
</vertices>
|
||||
<triangles material="ShapeBounds" count="12">
|
||||
<input semantic="VERTEX" source="#geom-Bounds-vertices" offset="0"/>
|
||||
<input semantic="NORMAL" source="#geom-Bounds-normals" offset="1"/>
|
||||
<input semantic="TEXCOORD" source="#geom-Bounds-map1" offset="2" set="0"/>
|
||||
<p>0 0 9 2 1 11 3 2 10 3 2 10 1 3 8 0 0 9 4 4 8 5 5 9 7 6 11 7 6 11 6 7 10 4 4 8 0 8 4 1 9 5 5 10 7 5 10 7 4 11 6 0 8 4 1 12 0 3 13 1 7 14 3 7 14 3 5 15 2 1 12 0 3 16 4 2 17 5 6 18 7 6 18 7 7 19 6 3 16 4 2 20 0 0 21 1 4 22 3 4 22 3 6 23 2 2 20 0</p>
|
||||
</triangles>
|
||||
</mesh>
|
||||
<extra>
|
||||
<technique profile="OpenCOLLADA3dsMax">
|
||||
<max_box>
|
||||
<generateuvs>1</generateuvs>
|
||||
<height>1.84</height>
|
||||
<heightsegments>1</heightsegments>
|
||||
<length>0.85</length>
|
||||
<lengthsegments>1</lengthsegments>
|
||||
<width>0.85</width>
|
||||
<widthsegments>1</widthsegments>
|
||||
</max_box>
|
||||
</technique>
|
||||
</extra>
|
||||
</geometry>
|
||||
</library_geometries>
|
||||
<library_lights>
|
||||
<light id="EnvironmentAmbientLight" name="EnvironmentAmbientLight">
|
||||
<technique_common>
|
||||
<ambient>
|
||||
<color>0 0 0</color>
|
||||
</ambient>
|
||||
</technique_common>
|
||||
</light>
|
||||
</library_lights>
|
||||
<library_visual_scenes>
|
||||
<visual_scene id="MaxScene">
|
||||
<node name="EnvironmentAmbientLight">
|
||||
<instance_light url="#EnvironmentAmbientLight"/>
|
||||
</node>
|
||||
<node id="node-Bip01" name="Bip01">
|
||||
<matrix>0.7792375 -0.6267175 0.003750234 -8.10623e-5 0.626718 0.7792453 0.001183393 0.009366653 -0.003664005 0.001428194 0.9999923 0.9109396 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_Pelvis" name="Bip01_Pelvis">
|
||||
<matrix sid="matrix">0.1747649 0.9844435 0.01811775 0 0.2778892 -0.06696894 0.958276 0 0.9445818 -0.1624383 -0.28527 0 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_Spine" name="Bip01_Spine">
|
||||
<matrix sid="matrix">0.9976641 0.06778118 -0.008484483 0.1928509 -0.06579353 0.9868717 0.1474982 -0.006243944 0.01837066 -0.1465954 0.989026 -0.05634505 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_Spine1" name="Bip01_Spine1">
|
||||
<matrix>0.9850422 0.02363086 -0.1706849 0.1022274 -0.01319329 0.9979871 0.06202855 -1.00818e-4 0.1718071 -0.05884887 0.9833714 5.93066e-6 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_Spine2" name="Bip01_Spine2">
|
||||
<matrix sid="matrix">0.9118831 -0.1827258 0.3675331 0.1268976 0.1518598 0.982094 0.111488 -1.68206e-4 -0.3813238 -0.04585051 0.9233038 7.80821e-6 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_Neck" name="Bip01_Neck">
|
||||
<matrix>0.840708 -0.4308255 0.3280237 0.2151071 0.4136219 0.9019013 0.1244631 -4.96954e-5 -0.3494668 0.03104065 0.9364345 -1.69128e-6 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_Head" name="Bip01_Head">
|
||||
<matrix sid="matrix">0.8256276 -0.1322618 -0.5484942 0.07051826 -0.4566818 0.4142266 -0.7873108 -0.01395917 0.331332 0.9005127 0.2815952 0 0 0 0 1</matrix>
|
||||
<node id="node-ALTEYE" name="ALTEYE">
|
||||
<matrix>0.08206864 0.1570575 0.984174 0.06454694 0.1160625 0.9792799 -0.1659546 0.2214611 -0.9898456 0.127845 0.06213956 0.04716256 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_L_Clavicle" name="Bip01_L_Clavicle">
|
||||
<matrix>-0.5778345 -0.4531802 0.6787745 -0.04690349 0.283809 -0.8913432 -0.3534966 -0.01204765 0.7652187 -0.01162016 0.6436654 0.055884 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_UpperArm" name="Bip01_L_UpperArm">
|
||||
<matrix sid="matrix">0.869007 -0.1269834 0.478228 0.1824006 -0.2814541 0.6680555 0.6888292 1.49012e-8 -0.4069526 -0.7331967 0.5448048 0 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Forearm" name="Bip01_L_Forearm">
|
||||
<matrix sid="matrix">0.3559558 0.9345028 2.98023e-8 0.284369 -0.9345028 0.3559557 2.98023e-8 5.96046e-8 -1.49012e-8 0 1 0 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Hand" name="Bip01_L_Hand">
|
||||
<matrix sid="matrix">0.9826421 -0.06120811 -0.175123 0.2810681 -0.1088463 -0.9546607 -0.2770845 -1.19209e-7 -0.1502233 0.2913363 -0.944752 5.96046e-8 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Finger0" name="Bip01_L_Finger0">
|
||||
<matrix>0.6413842 0.3141903 0.6999362 0.02119672 0.7352949 0.008702902 -0.6776915 -0.004734278 -0.2190156 0.9493199 -0.2254407 -0.02572185 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Finger01" name="Bip01_L_Finger01">
|
||||
<matrix>0.997564 -0.06975637 0 0.04982865 0.06975646 0.9975641 -4.65661e-9 0 -5.96046e-8 5.58794e-8 0.9999999 0 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Finger02" name="Bip01_L_Finger02">
|
||||
<matrix>0.9203136 0.3911814 0 0.05202222 -0.3911815 0.9203137 4.47035e-8 2.98023e-8 5.96046e-8 1.49012e-8 1 5.96046e-8 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_L_Finger1" name="Bip01_L_Finger1">
|
||||
<matrix>0.9592717 -0.2819768 -0.01693496 0.1199946 0.2798395 0.9567645 -0.07931916 -0.008367538 0.03856893 0.07134952 0.9967054 -0.0410139 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Finger11" name="Bip01_L_Finger11">
|
||||
<matrix>0.7001771 -0.7139691 -7.45058e-9 0.03644156 0.7139691 0.7001772 0 -5.96046e-8 2.98023e-8 4.84288e-8 1 1.19209e-7 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Finger12" name="Bip01_L_Finger12">
|
||||
<matrix>0.8757259 -0.4828089 0 0.03117549 0.4828089 0.8757259 -1.11759e-8 -2.98023e-8 0 1.11759e-8 1 0 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_L_Finger2" name="Bip01_L_Finger2">
|
||||
<matrix>0.6611331 -0.7495596 -0.03260922 0.1229538 0.7489769 0.6568219 0.08728345 -0.008802056 -0.04400566 -0.08212951 0.9956495 -0.01328242 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Finger21" name="Bip01_L_Finger21">
|
||||
<matrix>0.8156036 -0.5786111 1.67638e-8 0.03895533 0.5786111 0.8156035 5.30854e-8 5.96046e-8 5.58794e-9 -2.86382e-8 0.9999999 0 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Finger22" name="Bip01_L_Finger22">
|
||||
<matrix>0.9762959 -0.2164396 3.72529e-9 0.03800535 0.2164397 0.9762959 1.92085e-8 0 2.04891e-8 6.93835e-8 0.9999999 -5.96046e-8 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_L_Finger3" name="Bip01_L_Finger3">
|
||||
<matrix>0.4124629 -0.9064789 -0.09038851 0.121188 0.9061533 0.3980611 0.1429456 -0.001191258 -0.09359707 -0.1408655 0.9855943 0.01196867 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Finger31" name="Bip01_L_Finger31">
|
||||
<matrix>0.9381478 -0.3462351 -7.45058e-9 0.03155851 0.3462351 0.9381477 -8.3819e-9 5.96046e-8 7.45058e-9 -6.14673e-8 1 0 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Finger32" name="Bip01_L_Finger32">
|
||||
<matrix>0.9636304 -0.2672384 1.86265e-9 0.03366578 0.2672384 0.9636304 -1.234e-8 0 -1.49012e-8 -3.91155e-8 0.9999999 -5.96046e-8 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_L_Finger4" name="Bip01_L_Finger4">
|
||||
<matrix>0.07120568 -0.9696805 0.2337719 0.1136796 0.9750154 0.1171045 0.1887628 0.005147457 -0.2104154 0.2144903 0.9537919 0.03886575 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Finger41" name="Bip01_L_Finger41">
|
||||
<matrix>0.9790112 -0.2038069 1.49012e-8 0.03661621 0.203807 0.9790112 -1.49012e-8 5.96046e-8 1.49012e-8 3.72529e-9 1 -1.49012e-8 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Finger42" name="Bip01_L_Finger42">
|
||||
<matrix>0.9645151 0.2640274 0 0.01772618 -0.2640274 0.9645152 -1.11759e-8 0 1.49012e-8 -2.65427e-8 0.9999999 4.47035e-8 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_R_Clavicle" name="Bip01_R_Clavicle">
|
||||
<matrix>0.2073931 -0.1669672 -0.9639035 8.67128e-4 0.5679265 -0.7817281 0.2576057 -0.01629043 -0.7965221 -0.6008521 -0.06729986 -0.07212147 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_UpperArm" name="Bip01_R_UpperArm">
|
||||
<matrix sid="matrix">0.5832897 0.8093362 -0.06890497 0.1824007 -0.6477005 0.5146303 0.5618181 -2.98023e-8 0.4901603 -0.2830729 0.8243862 0 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Forearm" name="Bip01_R_Forearm">
|
||||
<matrix>-0.07265086 0.9973575 -2.98023e-8 0.2843689 -0.9973575 -0.07265082 0 0 7.45058e-8 0 1 -1.19209e-7 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Hand" name="Bip01_R_Hand">
|
||||
<matrix>0.9247895 0.3771958 -0.04987456 0.2810681 0.2033486 -0.6007847 -0.7731152 0 -0.3215797 0.704827 -0.6323018 1.19209e-7 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Finger0" name="Bip01_R_Finger0">
|
||||
<matrix>0.5215105 0.269013 -0.8097274 0.02119677 0.7250715 0.3605264 0.5867637 -0.004734233 0.4497752 -0.893114 -0.007035489 0.02572203 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Finger01" name="Bip01_R_Finger01">
|
||||
<matrix>0.6423535 -0.7636236 0.06527574 0.04982853 0.7605615 0.6456373 0.06854746 0 -0.09448884 0.005614473 0.9955102 0 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Finger02" name="Bip01_R_Finger02">
|
||||
<matrix>0.9505157 -0.3106764 4.09782e-8 0.05202231 0.3106765 0.9505159 0 0 5.02914e-8 -1.49012e-8 1 -2.98023e-8 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_R_Finger1" name="Bip01_R_Finger1">
|
||||
<matrix>0.9820224 -0.1733427 -0.0747267 0.1199946 0.1795577 0.9799357 0.08651489 -0.008367553 0.05823064 -0.09837732 0.993444 0.04101396 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Finger11" name="Bip01_R_Finger11">
|
||||
<matrix>0.8240547 -0.5665103 3.72529e-9 0.03644171 0.5665103 0.8240548 7.45058e-9 0 -8.3819e-9 0 1 0 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Finger12" name="Bip01_R_Finger12">
|
||||
<matrix>0.8146399 -0.5796779 0.01831832 0.03117551 0.5799673 0.8142334 -0.02573049 0 7.45058e-9 0.03158512 0.9995011 1.19209e-7 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_R_Finger2" name="Bip01_R_Finger2">
|
||||
<matrix>0.6754012 -0.7374503 -1.52119e-4 0.1229538 0.7368313 0.6748427 -0.04082684 -0.008802041 0.03021043 0.02746242 0.9991661 0.01328254 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Finger21" name="Bip01_R_Finger21">
|
||||
<matrix>0.5508358 -0.8338858 -0.0348487 0.03895522 0.832222 0.5519371 -0.05265062 -2.98023e-8 0.06313889 -9.77889e-9 0.9980047 0 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Finger22" name="Bip01_R_Finger22">
|
||||
<matrix>0.1984734 -0.9799246 0.01886613 0.03800537 0.9755272 0.199368 0.09272984 5.96046e-8 -0.09462959 0 0.9955126 -1.19209e-7 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_R_Finger3" name="Bip01_R_Finger3">
|
||||
<matrix>0.7159052 -0.6949216 0.06755453 0.1211881 0.6883786 0.6863562 -0.234627 -0.001191258 0.1166809 0.2144738 0.9697352 -0.01196861 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Finger31" name="Bip01_R_Finger31">
|
||||
<matrix>0.4441952 -0.8949344 0.04222351 0.03155842 0.8909185 0.4461975 0.08468728 0 -0.0946296 -2.32831e-10 0.9955125 0 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Finger32" name="Bip01_R_Finger32">
|
||||
<matrix>0.1993681 -0.9794359 -0.03095104 0.03366597 0.9799249 0.1992686 0.006297085 -2.98023e-8 -9.31323e-9 -0.03158511 0.9995011 0 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_R_Finger4" name="Bip01_R_Finger4">
|
||||
<matrix>0.5925791 -0.7897949 -0.1583476 0.1136797 0.7783522 0.6120423 -0.1399001 0.005147427 0.2074078 -0.0403483 0.977422 -0.03886557 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Finger41" name="Bip01_R_Finger41">
|
||||
<matrix>0.4202556 -0.9064696 0.04120624 0.03661624 0.906853 0.421151 0.01578781 -2.98023e-8 -0.03166521 0.030733 0.9990261 0 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Finger42" name="Bip01_R_Finger42">
|
||||
<matrix>0.402447 -0.9138246 -0.05441486 0.01772636 0.9154232 0.4021218 0.0172832 0 0.006087616 -0.05676816 0.9983687 -1.19209e-7 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-MOUNT0" name="MOUNT0">
|
||||
<matrix>-6.2238e-7 1 5.12227e-9 0.109539 -0.9999999 -6.57106e-7 4.75906e-7 0.0251826 4.76837e-7 4.88944e-9 0.9999999 0.01321661 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_L_Pauldron_Upper" name="Bip01_L_Pauldron_Upper">
|
||||
<matrix>0.9726267 0.1182923 0.2000107 0.176903 0.1448455 -0.9816831 -0.1237686 -0.0390837 0.1817062 0.1493513 -0.9719452 0.2290199 0 0 0 1</matrix>
|
||||
</node>
|
||||
<node id="node-Bip01_R_Pauldron_Lower" name="Bip01_R_Pauldron_Lower">
|
||||
<matrix>-0.1156725 -0.940376 -0.3198653 0.172906 0.9097751 -0.2295502 0.3458564 -0.1133294 -0.3986599 -0.2509995 0.8820827 -0.2351095 0 0 0 1</matrix>
|
||||
</node>
|
||||
<node id="node-Bip01_L_Pauldron_Lower" name="Bip01_L_Pauldron_Lower">
|
||||
<matrix>-0.2099972 -0.7687201 0.6041284 0.1529204 0.4002344 -0.6313509 -0.6642358 -0.1054225 0.892028 0.1023053 0.4402496 0.2344801 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_L_Thigh" name="Bip01_L_Thigh">
|
||||
<matrix sid="matrix">-0.8850529 0.4448214 -0.1371677 -0.1894343 0.1636993 0.5732781 0.8028415 -0.03385841 0.4357564 0.6881031 -0.5801985 0.1843713 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Calf" name="Bip01_L_Calf">
|
||||
<matrix sid="matrix">0.6778107 0.7352366 4.65661e-10 0.4629987 -0.7352365 0.6778106 -3.25963e-9 0 2.28174e-8 5.82077e-9 1 0 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Foot" name="Bip01_L_Foot">
|
||||
<matrix sid="matrix">0.8790581 0.4765733 -0.01161046 0.3610501 -0.4757286 0.878545 0.04290507 -2.98023e-8 0.03064766 -0.0321926 0.9990118 7.45058e-9 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Toe0" name="Bip01_L_Toe0">
|
||||
<matrix>4.47035e-7 -0.9999999 1.39279e-6 0.1486307 0.9999999 5.06639e-7 2.70084e-8 0.1543275 -2.23517e-8 1.38627e-6 1 0 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_R_Thigh" name="Bip01_R_Thigh">
|
||||
<matrix sid="matrix">-0.3184215 0.929522 -0.1860016 -0.194118 0.8122211 0.3686977 0.4520604 0.003519103 0.4887783 -0.007128775 -0.8723787 -0.06780353 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Calf" name="Bip01_R_Calf">
|
||||
<matrix sid="matrix">-0.3497498 0.9368433 -7.45058e-9 0.4629988 -0.936843 -0.3497498 2.6077e-8 0 1.49012e-8 -1.86265e-8 0.9999999 -2.98023e-8 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Foot" name="Bip01_R_Foot">
|
||||
<matrix sid="matrix">0.8885838 0.4383287 -0.1352301 0.36105 -0.4156701 0.8940974 0.1667583 0 0.1940038 -0.09196764 0.9766804 -1.49012e-8 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Toe0" name="Bip01_R_Toe0">
|
||||
<matrix>-0.2644268 -0.9539026 0.1419447 0.1486307 0.9630895 -0.2535029 0.09052611 0.1543275 -0.05036974 0.1606429 0.9857265 1.49012e-8 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_FannyPack" name="Bip01_FannyPack">
|
||||
<matrix sid="matrix">-0.8322091 -0.4771121 0.2824753 0.2028494 -0.4932149 0.8697606 0.01598545 -0.1504242 -0.2533128 -0.1260178 -0.9591415 -0.008565128 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-EYE" name="EYE">
|
||||
<matrix>0.7792377 0.6267179 -0.003664042 0.05980457 -0.6267175 0.7792451 0.001428225 0.07219034 0.003750281 0.001183214 0.999992 0.659456 0 0 0 1</matrix>
|
||||
<node id="node-CAM" name="CAM">
|
||||
<matrix>1 -6.03104e-8 3.55271e-15 4.84288e-8 6.03104e-8 1 -2.32831e-9 -0.104 -3.55271e-15 2.32832e-9 1 0.3005601 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bounds" name="Bounds">
|
||||
<matrix>0.9999915 0.001706907 0.003750479 0 -0.001711356 0.9999978 0.001183292 0.1035326 -0.003748452 -0.0011897 0.9999923 -8.93474e-5 0 0 0 1</matrix>
|
||||
<instance_geometry url="#geom-Bounds">
|
||||
<bind_material>
|
||||
<technique_common>
|
||||
<instance_material symbol="ShapeBounds" target="#ShapeBounds-material"/>
|
||||
</technique_common>
|
||||
</bind_material>
|
||||
</instance_geometry>
|
||||
</node>
|
||||
</visual_scene>
|
||||
</library_visual_scenes>
|
||||
<library_animations>
|
||||
<animation>
|
||||
<source id="node-Bip01_Pelvis_matrix-input">
|
||||
<float_array id="node-Bip01_Pelvis_matrix-input-array" count="30">34.66667 34.7 34.73333 34.76667 34.8 34.83333 34.86666 34.9 34.93333 34.96667 35 35.03333 35.06667 35.1 35.13334 35.16667 35.2 35.23333 35.26667 35.3 35.33333 35.36666 35.4 35.43333 35.46667 35.5 35.53333 35.56667 35.6 35.63334</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_Pelvis_matrix-input-array" count="30" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_Pelvis_matrix-output">
|
||||
<float_array id="node-Bip01_Pelvis_matrix-output-array" count="480">0.1747649 0.9844435 0.01811772 0 0.2778892 -0.06696891 0.958276 0 0.9445818 -0.1624383 -0.28527 0 0 0 0 1 0.1789557 0.9838079 0.00985831 0 0.2785211 -0.0602684 0.9585373 0 0.9436105 -0.1687899 -0.2847966 0 0 0 0 1 0.1898162 0.9817357 -0.01284992 0 0.280152 -0.04161369 0.9590533 0 0.941002 -0.1856438 -0.282934 0 0 0 0 1 0.2048299 0.9776706 -0.04696047 0 0.2823363 -0.01307708 0.9592264 0 0.937193 -0.2097368 -0.2787104 0 0 0 0 1 0.2215867 0.9710287 -0.08945786 0 0.2846034 0.02334487 0.9583611 0 0.9326844 -0.23782 -0.2711851 0 0 0 0 1 0.2378091 0.9615513 -0.1373539 0 0.286498 0.06568014 0.9558269 0 0.9280979 -0.266656 -0.2598631 0 0 0 0 1 0.2513462 0.9495118 -0.1877564 0 0.2876154 0.1119514 0.9511806 0 0.9241766 -0.2930772 -0.2449556 0 0 0 0 1 0.2601318 0.9357884 -0.2379741 0 0.287633 0.16017 0.9442526 0 0.9217367 -0.3140793 -0.2274982 0 0 0 0 1 0.2621052 0.9218068 -0.28561 0 0.2863317 0.2083458 0.9352039 0 0.9215828 -0.326901 -0.209334 0 0 0 0 1 0.2550978 0.9093707 -0.3285879 0 0.2836105 0.2545131 0.9245477 0 0.9243864 -0.3290409 -0.1929813 0 0 0 0 1 0.2328013 0.9054017 -0.3550373 0 0.2565313 0.2949686 0.9204268 0 0.9380806 -0.3053548 -0.1635947 0 0 0 0 1 0.1951585 0.9107606 -0.363907 0 0.1949468 0.3276156 0.9244803 0 0.9612017 -0.2513628 -0.113613 0 0 0 0 1 0.1471728 0.918314 -0.3674774 0 0.1167336 0.3528006 0.9283885 0 0.9821982 -0.1795305 -0.05527538 0 0 0 0 1 0.09401375 0.9231253 -0.3728289 0 0.0393061 0.3707538 0.9278991 0 0.9947947 -0.1018897 -0.001428425 0 0 0 0 1 0.04135423 0.9238311 -0.3805603 0 -0.02001005 0.3815756 0.924121 0 0.9989442 -0.03060126 0.03426569 0 0 0 0 1 -0.005489885 0.9225638 -0.3858054 0 -0.04379582 0.3852193 0.9217852 0 0.9990254 0.02195715 0.0382896 0 0 0 0 1 -0.039303 0.9243866 -0.3794267 0 -0.04341113 0.3777821 0.9248764 0 0.9982838 0.05282175 0.02528065 0 0 0 0 1 -0.05886483 0.9313927 -0.3592251 0 -0.04169738 0.357241 0.933081 0 0.9973947 0.06990438 0.01780772 0 0 0 0 1 -0.06772583 0.9422668 -0.3279429 0 -0.03777039 0.3260406 0.944601 0 0.9969887 0.0763604 0.01350843 0 0 0 0 1 -0.06905865 0.95514 -0.2879907 0 -0.03069365 0.2865089 0.9575858 0 0.9971403 0.07496905 0.009530782 0 0 0 0 1 -0.06571167 0.9681034 -0.2417806 0 -0.01950407 0.2410119 0.9703263 0 0.997648 0.06847751 0.003044664 0 0 0 0 1 -0.06031262 0.9795625 -0.1918848 0 -0.00324577 0.1920413 0.9813815 0 0.9981742 0.05981248 -0.008403062 0 0 0 0 1 -0.05541366 0.9884553 -0.1410163 0 0.01900219 0.1422519 0.9896482 0 0.9982826 0.05216038 -0.02666556 0 0 0 0 1 -0.05367696 0.994324 -0.09186184 0 0.04811728 0.09446316 0.9943649 0 0.9973983 0.04895436 -0.05291467 0 0 0 0 1 -0.04155457 0.9979579 -0.04851222 0 0.08520156 0.05191671 0.9950103 0 0.9954968 0.03721392 -0.0871849 0 0 0 0 1 -0.008765816 0.999851 -0.01487582 0 0.1277694 0.01587444 0.9916769 0 0.9917652 0.006792187 -0.1278895 0 0 0 0 1 0.03646862 0.9993063 0.007549047 0 0.1714664 -0.01369911 0.9850947 0 0.9845148 -0.03463065 -0.1718471 0 0 0 0 1 0.08559006 0.99615 0.01896142 0 0.2121841 -0.03681915 0.9765359 0 0.9734743 -0.07955843 -0.2145185 0 0 0 0 1 0.1301858 0.9912528 0.02166414 0 0.246033 -0.05346387 0.967786 0 0.9604787 -0.1206619 -0.2508412 0 0 0 0 1 0.1623808 0.9865304 0.01975679 0 0.2692317 -0.06356006 0.9609758 0 0.9492875 -0.1507248 -0.2759261 0 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_Pelvis_matrix-output-array" count="30" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_Pelvis_matrix-interpolation">
|
||||
<Name_array id="node-Bip01_Pelvis_matrix-interpolation-array" count="30">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_Pelvis_matrix-interpolation-array" count="30" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_Spine_matrix-input">
|
||||
<float_array id="node-Bip01_Spine_matrix-input-array" count="30">34.66667 34.7 34.73333 34.76667 34.8 34.83333 34.86666 34.9 34.93333 34.96667 35 35.03333 35.06667 35.1 35.13334 35.16667 35.2 35.23333 35.26667 35.3 35.33333 35.36666 35.4 35.43333 35.46667 35.5 35.53333 35.56667 35.6 35.63334</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_Spine_matrix-input-array" count="30" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_Spine_matrix-output">
|
||||
<float_array id="node-Bip01_Spine_matrix-output-array" count="480">0.9976641 0.06778115 -0.008484482 0.1928508 -0.06579351 0.9868717 0.1474981 -0.006243944 0.01837062 -0.1465954 0.989026 -0.05634504 0 0 0 1 0.9973933 0.07182532 -0.0069108 0.1927685 -0.06987851 0.9853361 0.155659 -0.007526218 0.01798969 -0.1547703 0.9877866 -0.05646985 0 0 0 1 0.9966026 0.08231228 -0.002810239 0.192537 -0.08049833 0.9807198 0.17807 -0.01093912 0.01741337 -0.1772387 0.9840139 -0.0567013 0 0 0 1 0.9952964 0.09683364 0.002856433 0.1921765 -0.09524154 0.9726877 0.2116774 -0.01584708 0.01771903 -0.210954 0.9773353 -0.0567649 0 0 0 1 0.9935434 0.1130871 0.009102225 0.1917229 -0.1116902 0.9608662 0.253499 -0.02161842 0.01992148 -0.2528789 0.9672929 -0.0563932 0 0 0 1 0.9915462 0.1288908 0.01493746 0.1912395 -0.1273944 0.9451943 0.3006303 -0.02761483 0.02462971 -0.2999919 0.9536238 -0.05540829 0 0 0 1 0.989652 0.1421705 0.01940274 0.1908174 -0.1399137 0.9261394 0.3502716 -0.03319811 0.03182864 -0.3493617 0.9364472 -0.05377548 0 0 0 1 0.9883106 0.1509162 0.02160555 0.1905644 -0.1468991 0.9047722 0.39976 -0.03774625 0.04078203 -0.3982608 0.9163653 -0.05162978 0 0 0 1 0.9879922 0.1531041 0.02075564 0.190586 -0.1461719 0.8827146 0.446597 -0.04067122 0.05005455 -0.4442684 0.8944945 -0.04927474 0 0 0 1 0.9890648 0.14659 0.01619648 0.1909587 -0.1357516 0.8619679 0.4884497 -0.04142695 0.05764096 -0.4853071 0.8724417 -0.04715704 0 0 0 1 0.9914903 0.1290617 -0.01704221 0.1930952 -0.1016312 0.8491906 0.5182151 -0.03681212 0.08135378 -0.5120732 0.8550807 -0.04200369 0 0 0 1 0.9908381 0.1024472 -0.08800315 0.1967023 -0.04009771 0.8453766 0.5326638 -0.02591145 0.1289657 -0.5242547 0.8417391 -0.03228002 0 0 0 1 0.9820592 0.06892693 -0.1755253 0.1996113 0.03635334 0.8441442 0.5348826 -0.01139795 0.1850364 -0.5316672 0.8264936 -0.02075088 0 0 0 1 0.9649848 0.03064298 -0.2605099 0.2007094 0.1158443 0.8412637 0.5280678 0.004199981 0.2353391 -0.539756 0.8082568 -0.01016384 0 0 0 1 0.945379 -0.010091 -0.3258169 0.2001379 0.1867291 0.8360418 0.5159133 0.01842314 0.2671904 -0.5485731 0.7922607 -0.003256916 0 0 0 1 0.9331891 -0.05157059 -0.3556664 0.1989107 0.2374963 0.8312528 0.502608 0.02886193 0.2697289 -0.5534977 0.7879638 -0.002594411 0 0 0 1 0.9288848 -0.08476328 -0.3605391 0.1978658 0.2647252 0.8327556 0.4862498 0.03505998 0.2590249 -0.5471139 0.7959728 -0.005017101 0 0 0 1 0.9264044 -0.104221 -0.3618186 0.1971694 0.2755396 0.8425522 0.4627997 0.03864932 0.2566176 -0.5284351 0.8092612 -0.005969941 0 0 0 1 0.9262211 -0.1136262 -0.3594496 0.1968535 0.2735174 0.8587225 0.4333408 0.04022377 0.2594285 -0.499685 0.8264454 -0.005996286 0 0 0 1 0.9283357 -0.1162701 -0.3530921 0.1968485 0.2617838 0.8788444 0.3988758 0.04028755 0.2639357 -0.4627245 0.8463002 -0.005728483 0 0 0 1 0.9325334 -0.115116 -0.3422425 0.1970385 0.2434408 0.9004526 0.3604467 0.03933739 0.2666799 -0.4194445 0.867726 -0.005794405 0 0 0 1 0.9384909 -0.112902 -0.3263251 0.197287 0.2218331 0.921356 0.3192077 0.03791421 0.2646223 -0.3719632 0.8897296 -0.006751179 0 0 0 1 0.9457898 -0.1122801 -0.3047537 0.1974388 0.2006582 0.9398409 0.2764694 0.03662472 0.255378 -0.3226334 0.911422 -0.009040057 0 0 0 1 0.9538553 -0.1159946 -0.2769573 0.1973091 0.1839638 0.9547427 0.2337176 0.03614097 0.2373129 -0.273883 0.9320251 -0.01296579 0 0 0 1 0.9644831 -0.1109644 -0.2397074 0.1972526 0.1605033 0.9669332 0.1981896 0.03389745 0.209789 -0.2296243 0.9504007 -0.01864385 0 0 0 1 0.9772885 -0.08659636 -0.193412 0.1973798 0.1210914 0.9772129 0.174333 0.02788555 0.173908 -0.1937942 0.9655049 -0.02586174 0 0 0 1 0.9884651 -0.05004298 -0.1429432 0.1971361 0.07292002 0.9844868 0.1595896 0.01961708 0.1327393 -0.1681722 0.9767796 -0.03402543 0 0 0 1 0.9955848 -0.008911907 -0.09344291 0.1962403 0.02307087 0.9881785 0.1515626 0.01058107 0.0909875 -0.1530492 0.9840211 -0.04222506 0 0 0 1 0.9982985 0.02917677 -0.05048596 0.194835 -0.02140706 0.9887393 0.1481106 0.002260982 0.05423879 -0.1467778 0.9876813 -0.04939079 0 0 0 1 0.9981724 0.05700498 -0.02006369 0.1934598 -0.05344176 0.9876405 0.1473452 -0.003854572 0.02821511 -0.1460036 0.9888817 -0.05443972 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_Spine_matrix-output-array" count="30" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_Spine_matrix-interpolation">
|
||||
<Name_array id="node-Bip01_Spine_matrix-interpolation-array" count="30">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_Spine_matrix-interpolation-array" count="30" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_Spine2_matrix-input">
|
||||
<float_array id="node-Bip01_Spine2_matrix-input-array" count="30">34.66667 34.7 34.73333 34.76667 34.8 34.83333 34.86666 34.9 34.93333 34.96667 35 35.03333 35.06667 35.1 35.13334 35.16667 35.2 35.23333 35.26667 35.3 35.33333 35.36666 35.4 35.43333 35.46667 35.5 35.53333 35.56667 35.6 35.63334</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_Spine2_matrix-input-array" count="30" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_Spine2_matrix-output">
|
||||
<float_array id="node-Bip01_Spine2_matrix-output-array" count="480">0.9118831 -0.1827258 0.367533 0.1268975 0.1518598 0.9820941 0.111488 -1.68206e-4 -0.3813238 -0.04585045 0.9233038 7.80821e-6 0 0 0 1 0.9122964 -0.1832538 0.3662421 0.1268974 0.1525693 0.982004 0.1113131 -1.68204e-4 -0.3800498 -0.04567319 0.9238377 7.86781e-6 0 0 0 1 0.9134422 -0.1847317 0.3626261 0.1268976 0.1545541 0.9817501 0.110814 -1.68154e-4 -0.3764791 -0.04517686 0.9253228 7.689e-6 0 0 0 1 0.9151714 -0.187004 0.3570586 0.1268982 0.157603 0.9813545 0.1100196 -1.68093e-4 -0.3709753 -0.04441332 0.92758 7.51019e-6 0 0 0 1 0.9173325 -0.1899197 0.3499024 0.1268987 0.1615093 0.9808384 0.1089525 -1.68001e-4 -0.36389 -0.04343318 0.9304287 7.39098e-6 0 0 0 1 0.9197785 -0.1933308 0.3415123 0.1268992 0.1660706 0.980222 0.1076357 -1.67888e-4 -0.3555672 -0.04228579 0.9336937 7.27177e-6 0 0 0 1 0.9223729 -0.1970926 0.3322387 0.1268999 0.1710887 0.9795262 0.1060978 -1.67776e-4 -0.3463476 -0.04101938 0.937209 6.97374e-6 0 0 0 1 0.9249935 -0.2010625 0.3224297 0.1269005 0.1763691 0.9787742 0.1043777 -1.67634e-4 -0.3365724 -0.03968191 0.9408211 6.85453e-6 0 0 0 1 0.9275342 -0.2050991 0.3124334 0.1269012 0.1817209 0.9779908 0.1025262 -1.67513e-4 -0.326585 -0.03832077 0.9443905 6.55651e-6 0 0 0 1 0.9299069 -0.209062 0.3025988 0.1269019 0.1869565 0.9772027 0.1006081 -1.67388e-4 -0.3167338 -0.03698319 0.9477931 6.25849e-6 0 0 0 1 0.9320405 -0.2128114 0.2932773 0.1269025 0.1918914 0.9764403 0.09870195 -1.67243e-4 -0.3073726 -0.03571677 0.9509186 6.07967e-6 0 0 0 1 0.9338791 -0.2162059 0.2848241 0.1269031 0.1963428 0.9757355 0.0968995 -1.67131e-4 -0.2988632 -0.03456914 0.9536696 5.90086e-6 0 0 0 1 0.9353783 -0.2191035 0.277599 0.1269036 0.2001295 0.9751232 0.09530323 -1.67031e-4 -0.2915746 -0.03358882 0.9559582 5.72205e-6 0 0 0 1 0.9365004 -0.2213592 0.2719686 0.1269041 0.2030686 0.9746397 0.09402394 -1.6693e-4 -0.2858844 -0.03282511 0.9577018 5.60284e-6 0 0 0 1 0.9372088 -0.2228252 0.268307 0.1269043 0.2049745 0.974322 0.09317535 -1.66884e-4 -0.2821793 -0.03232854 0.9588168 5.48363e-6 0 0 0 1 0.9374576 -0.2233487 0.2669991 0.1269043 0.2056543 0.9742081 0.09286898 -1.66854e-4 -0.2808549 -0.03215116 0.9592115 5.48363e-6 0 0 0 1 0.9372087 -0.2228252 0.2683071 0.1269043 0.2049745 0.974322 0.09317541 -1.6688e-4 -0.2821793 -0.03232854 0.9588168 5.48363e-6 0 0 0 1 0.9365004 -0.2213592 0.2719686 0.1269041 0.2030686 0.9746397 0.09402394 -1.6693e-4 -0.2858844 -0.03282511 0.9577018 5.60284e-6 0 0 0 1 0.9353782 -0.2191035 0.2775991 0.1269036 0.2001295 0.9751232 0.09530329 -1.67031e-4 -0.2915746 -0.03358882 0.9559583 5.78165e-6 0 0 0 1 0.9338791 -0.2162059 0.2848241 0.1269031 0.1963428 0.9757355 0.0968995 -1.67131e-4 -0.2988632 -0.03456914 0.9536696 5.90086e-6 0 0 0 1 0.9320405 -0.2128114 0.2932773 0.1269025 0.1918914 0.9764403 0.09870195 -1.67243e-4 -0.3073726 -0.03571677 0.9509186 6.07967e-6 0 0 0 1 0.9299069 -0.209062 0.3025988 0.1269019 0.1869565 0.9772027 0.1006081 -1.67388e-4 -0.3167338 -0.03698319 0.9477931 6.25849e-6 0 0 0 1 0.9275342 -0.2050991 0.3124334 0.1269012 0.1817209 0.9779907 0.1025262 -1.67513e-4 -0.326585 -0.03832077 0.9443905 6.55651e-6 0 0 0 1 0.9249935 -0.2010625 0.3224297 0.1269005 0.1763691 0.9787742 0.1043777 -1.67634e-4 -0.3365724 -0.03968191 0.9408211 6.85453e-6 0 0 0 1 0.9223729 -0.1970926 0.3322387 0.1268999 0.1710887 0.9795262 0.1060978 -1.67776e-4 -0.3463476 -0.04101938 0.937209 6.97374e-6 0 0 0 1 0.9197785 -0.1933308 0.3415123 0.1268992 0.1660706 0.9802219 0.1076357 -1.67888e-4 -0.3555672 -0.04228574 0.9336937 7.27177e-6 0 0 0 1 0.9173325 -0.1899197 0.3499024 0.1268987 0.1615093 0.9808384 0.1089525 -1.68001e-4 -0.36389 -0.04343318 0.9304287 7.39098e-6 0 0 0 1 0.9151714 -0.187004 0.3570587 0.1268982 0.157603 0.9813545 0.1100198 -1.68085e-4 -0.3709754 -0.04441326 0.92758 7.56979e-6 0 0 0 1 0.9134422 -0.1847317 0.3626261 0.1268976 0.1545541 0.9817501 0.110814 -1.68154e-4 -0.3764791 -0.04517686 0.9253228 7.689e-6 0 0 0 1 0.9122964 -0.1832538 0.3662421 0.1268974 0.1525693 0.982004 0.1113131 -1.68204e-4 -0.3800498 -0.04567319 0.9238377 7.86781e-6 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_Spine2_matrix-output-array" count="30" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_Spine2_matrix-interpolation">
|
||||
<Name_array id="node-Bip01_Spine2_matrix-interpolation-array" count="30">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_Spine2_matrix-interpolation-array" count="30" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_Head_matrix-input">
|
||||
<float_array id="node-Bip01_Head_matrix-input-array" count="30">34.66667 34.7 34.73333 34.76667 34.8 34.83333 34.86666 34.9 34.93333 34.96667 35 35.03333 35.06667 35.1 35.13334 35.16667 35.2 35.23333 35.26667 35.3 35.33333 35.36666 35.4 35.43333 35.46667 35.5 35.53333 35.56667 35.6 35.63334</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_Head_matrix-input-array" count="30" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_Head_matrix-output">
|
||||
<float_array id="node-Bip01_Head_matrix-output-array" count="480">0.8256276 -0.1322618 -0.5484942 0.07051825 -0.4566818 0.4142265 -0.7873108 -0.01395916 0.331332 0.9005127 0.2815952 0 0 0 0 1 0.825881 -0.1310095 -0.5484133 0.07051825 -0.4572301 0.4135393 -0.7873537 -0.01395922 0.3299413 0.9010115 0.2816326 0 0 0 0 1 0.8265799 -0.1274999 -0.5481874 0.07051825 -0.4587599 0.4116145 -0.7874725 -0.01395916 0.3260445 0.9023954 0.2817403 0 0 0 0 1 0.8276248 -0.1220904 -0.5478422 0.07051837 -0.4610974 0.4086512 -0.7876506 -0.01395916 0.320041 0.9044877 0.2819142 0 0 0 0 1 0.8289124 -0.115127 -0.5474026 0.07051813 -0.4640709 0.4048426 -0.7878709 -0.01395916 0.3123172 0.9071097 0.2821519 0 0 0 0 1 0.8303432 -0.1069483 -0.5468932 0.07051825 -0.4675132 0.4003779 -0.7881173 -0.01395922 0.3032518 0.9100876 0.2824512 0 0 0 0 1 0.8318254 -0.09788978 -0.5463371 0.07051813 -0.4712632 0.3954437 -0.7883753 -0.01395916 0.2932194 0.913259 0.282808 0 0 0 0 1 0.8332805 -0.08828723 -0.5457555 0.07051825 -0.4751679 0.3902249 -0.7886318 -0.01395916 0.2825936 0.916477 0.2832155 0 0 0 0 1 0.8346446 -0.07847893 -0.5451694 0.07051813 -0.4790832 0.384907 -0.7888763 -0.01395916 0.2717496 0.9196129 0.2836626 0 0 0 0 1 0.8358696 -0.068807 -0.5445983 0.07051825 -0.4828727 0.3796754 -0.7891011 -0.01395916 0.2610663 0.9225574 0.2841341 0 0 0 0 1 0.8369247 -0.05961948 -0.5440614 0.07051813 -0.4864084 0.3747168 -0.7892999 -0.01395922 0.2509267 0.9252206 0.2846103 0 0 0 0 1 0.8377917 -0.0512706 -0.5435776 0.07051813 -0.4895679 0.3702203 -0.7894685 -0.0139591 0.24172 0.9275282 0.2850669 0 0 0 0 1 0.8384652 -0.04412174 -0.5431658 0.07051801 -0.4922333 0.3663769 -0.7896038 -0.01395916 0.2338421 0.9294197 0.2854759 0 0 0 0 1 0.8389472 -0.03854244 -0.5428462 0.07051813 -0.4942888 0.3633818 -0.789704 -0.01395916 0.2276975 0.9308427 0.2858068 0 0 0 0 1 0.8392404 -0.0349102 -0.5426387 0.07051825 -0.495615 0.3614339 -0.7897667 -0.01395916 0.2236989 0.931744 0.2860278 0 0 0 0 1 0.8393413 -0.03361201 -0.5425646 0.07051825 -0.4960868 0.3607381 -0.7897885 -0.01395916 0.2222701 0.9320614 0.2861078 0 0 0 0 1 0.8392405 -0.03491026 -0.5426387 0.07051825 -0.495615 0.3614339 -0.7897667 -0.01395916 0.2236989 0.9317439 0.2860277 0 0 0 0 1 0.8389472 -0.03854244 -0.5428462 0.07051813 -0.4942888 0.3633818 -0.789704 -0.01395916 0.2276975 0.9308427 0.2858068 0 0 0 0 1 0.8384653 -0.04412186 -0.5431659 0.07051801 -0.4922335 0.3663769 -0.7896039 -0.0139591 0.2338422 0.9294197 0.2854759 0 0 0 0 1 0.8377917 -0.0512706 -0.5435776 0.07051813 -0.4895679 0.3702203 -0.7894685 -0.0139591 0.24172 0.9275282 0.2850669 0 0 0 0 1 0.8369247 -0.05961948 -0.5440614 0.07051813 -0.4864084 0.3747168 -0.7892999 -0.01395922 0.2509267 0.9252206 0.2846103 0 0 0 0 1 0.8358696 -0.068807 -0.5445983 0.07051825 -0.4828727 0.3796754 -0.7891011 -0.01395916 0.2610663 0.9225574 0.2841341 0 0 0 0 1 0.8346446 -0.07847893 -0.5451694 0.07051813 -0.4790832 0.3849071 -0.7888764 -0.01395922 0.2717497 0.9196129 0.2836626 0 0 0 0 1 0.8332805 -0.08828723 -0.5457555 0.07051825 -0.4751679 0.3902249 -0.7886318 -0.01395916 0.2825936 0.916477 0.2832155 0 0 0 0 1 0.8318254 -0.09788978 -0.5463371 0.07051813 -0.4712632 0.3954437 -0.7883753 -0.01395916 0.2932194 0.913259 0.282808 0 0 0 0 1 0.8303431 -0.1069483 -0.5468932 0.07051825 -0.4675132 0.4003779 -0.7881173 -0.01395922 0.3032518 0.9100875 0.2824512 0 0 0 0 1 0.8289124 -0.115127 -0.5474026 0.07051813 -0.4640709 0.4048426 -0.7878709 -0.01395916 0.3123172 0.9071097 0.2821519 0 0 0 0 1 0.8276249 -0.1220905 -0.5478422 0.07051813 -0.4610975 0.4086512 -0.7876507 -0.01395916 0.3200411 0.9044878 0.2819142 0 0 0 0 1 0.8265799 -0.1274999 -0.5481874 0.07051825 -0.4587599 0.4116145 -0.7874725 -0.01395916 0.3260445 0.9023954 0.2817403 0 0 0 0 1 0.825881 -0.1310095 -0.5484133 0.07051825 -0.4572301 0.4135393 -0.7873537 -0.01395922 0.3299413 0.9010115 0.2816326 0 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_Head_matrix-output-array" count="30" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_Head_matrix-interpolation">
|
||||
<Name_array id="node-Bip01_Head_matrix-interpolation-array" count="30">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_Head_matrix-interpolation-array" count="30" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_UpperArm_matrix-input">
|
||||
<float_array id="node-Bip01_L_UpperArm_matrix-input-array" count="30">34.66667 34.7 34.73333 34.76667 34.8 34.83333 34.86666 34.9 34.93333 34.96667 35 35.03333 35.06667 35.1 35.13334 35.16667 35.2 35.23333 35.26667 35.3 35.33333 35.36666 35.4 35.43333 35.46667 35.5 35.53333 35.56667 35.6 35.63334</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_UpperArm_matrix-input-array" count="30" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_UpperArm_matrix-output">
|
||||
<float_array id="node-Bip01_L_UpperArm_matrix-output-array" count="480">0.869007 -0.1269834 0.478228 0.1824006 -0.2814542 0.6680555 0.6888293 0 -0.4069526 -0.7331967 0.5448048 0 0 0 0 1 0.8698486 -0.1253079 0.4771392 0.1824007 -0.2819402 0.6674 0.6892658 0 -0.4048129 -0.7340815 0.5452076 2.38419e-7 0 0 0 1 0.872182 -0.1205739 0.4740892 0.1824007 -0.2833202 0.6655464 0.6904909 0 -0.3987834 -0.7365527 0.5463166 0 0 0 0 1 0.8757051 -0.1131694 0.4693969 0.1824007 -0.2854974 0.662644 0.6923831 0 -0.3893995 -0.7403349 0.5479712 1.19209e-7 0 0 0 1 0.8801043 -0.1034491 0.4633732 0.1824007 -0.2883843 0.658827 0.6948248 0 -0.3771618 -0.745148 0.5500033 -1.19209e-7 0 0 0 1 0.885069 -0.09176242 0.4563249 0.1824006 -0.2918924 0.6542265 0.697701 0 -0.3625625 -0.7507113 0.5522508 1.19209e-7 0 0 0 1 0.8903019 -0.07848453 0.4485564 0.1824007 -0.2959173 0.6489836 0.7008949 0 -0.346115 -0.7567434 0.5545662 0 0 0 0 1 0.8955299 -0.0640338 0.4403705 0.1824007 -0.3003334 0.6432564 0.7042878 0 -0.3283692 -0.7629686 0.5568237 0 0 0 0 1 0.9005157 -0.04888254 0.4320669 0.1824007 -0.3049921 0.6372257 0.7077592 0 -0.3099212 -0.7691254 0.558923 0 0 0 0 1 0.9050668 -0.0335654 0.4239428 0.1824007 -0.3097216 0.6311008 0.7111853 0 -0.2914217 -0.7749744 0.5607925 1.19209e-7 0 0 0 1 0.9090409 -0.01867675 0.4162884 0.1824007 -0.3143293 0.6251174 0.7144408 0 -0.2735726 -0.7803073 0.5623866 0 0 0 0 1 0.9123464 -0.004869103 0.4093905 0.1824006 -0.318606 0.6195413 0.7173973 0 -0.2571273 -0.784949 0.5636848 1.19209e-7 0 0 0 1 0.9149383 0.007159471 0.4035301 0.1824007 -0.322331 0.6146611 0.7199265 0 -0.2428799 -0.7887588 0.5646848 -1.19209e-7 0 0 0 1 0.9168048 0.01667547 0.3989875 0.1824008 -0.3252751 0.6107849 0.7218988 0 -0.2316575 -0.791621 0.5653948 0 0 0 0 1 0.9179445 0.02293014 0.3960456 0.1824007 -0.3272089 0.6082299 0.7231813 0 -0.224304 -0.7934299 0.5658242 0 0 0 0 1 0.9183374 0.02517735 0.3949969 0.1824006 -0.3279032 0.6073102 0.7236393 0 -0.2216663 -0.794066 0.5659714 0 0 0 0 1 0.9179446 0.02293002 0.3960456 0.1824007 -0.3272088 0.6082298 0.7231814 0 -0.2243041 -0.7934301 0.5658242 0 0 0 0 1 0.9168048 0.01667511 0.3989877 0.1824008 -0.3252752 0.6107851 0.7218988 0 -0.2316579 -0.7916211 0.5653946 0 0 0 0 1 0.9149382 0.007158339 0.4035305 0.1824007 -0.3223304 0.6146615 0.7199267 0 -0.2428812 -0.7887585 0.5646846 -1.19209e-7 0 0 0 1 0.9123463 -0.004869997 0.4093909 0.1824006 -0.3186058 0.6195416 0.7173973 0 -0.2571282 -0.784949 0.5636847 1.19209e-7 0 0 0 1 0.9090407 -0.01867812 0.4162889 0.1824007 -0.3143289 0.6251177 0.7144408 0 -0.2735739 -0.7803072 0.5623862 0 0 0 0 1 0.9050664 -0.03356623 0.4239432 0.1824007 -0.3097214 0.6311007 0.7111853 0 -0.2914226 -0.7749744 0.5607919 1.19209e-7 0 0 0 1 0.9005154 -0.04888349 0.4320678 0.1824006 -0.3049921 0.6372258 0.7077593 0 -0.3099224 -0.7691252 0.5589225 -1.19209e-7 0 0 0 1 0.8955296 -0.06403493 0.4403712 0.1824007 -0.3003332 0.6432564 0.7042879 0 -0.3283705 -0.7629685 0.5568231 0 0 0 0 1 0.8903014 -0.0784862 0.4485571 0.1824007 -0.2959169 0.6489839 0.7008948 0 -0.3461169 -0.756743 0.5545656 0 0 0 0 1 0.8850683 -0.09176403 0.4563258 0.1824005 -0.2918921 0.6542268 0.6977009 0 -0.3625643 -0.7507109 0.5522502 1.19209e-7 0 0 0 1 0.8801035 -0.1034505 0.4633741 0.1824007 -0.288384 0.6588271 0.6948249 0 -0.3771634 -0.7451476 0.5500026 -1.19209e-7 0 0 0 1 0.8757042 -0.1131714 0.4693979 0.1824007 -0.2854968 0.6626444 0.6923829 0 -0.3894017 -0.7403342 0.5479703 0 0 0 0 1 0.8721811 -0.1205757 0.4740904 0.1824007 -0.2833199 0.6655466 0.6904909 0 -0.3987855 -0.7365521 0.5463158 0 0 0 0 1 0.8698477 -0.1253098 0.4771403 0.1824007 -0.2819398 0.6674003 0.6892656 0 -0.4048152 -0.7340809 0.5452066 2.38419e-7 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_UpperArm_matrix-output-array" count="30" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_UpperArm_matrix-interpolation">
|
||||
<Name_array id="node-Bip01_L_UpperArm_matrix-interpolation-array" count="30">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_UpperArm_matrix-interpolation-array" count="30" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_Forearm_matrix-input">
|
||||
<float_array id="node-Bip01_L_Forearm_matrix-input-array" count="30">34.66667 34.7 34.73333 34.76667 34.8 34.83333 34.86666 34.9 34.93333 34.96667 35 35.03333 35.06667 35.1 35.13334 35.16667 35.2 35.23333 35.26667 35.3 35.33333 35.36666 35.4 35.43333 35.46667 35.5 35.53333 35.56667 35.6 35.63334</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_Forearm_matrix-input-array" count="30" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_Forearm_matrix-output">
|
||||
<float_array id="node-Bip01_L_Forearm_matrix-output-array" count="480">0.3559558 0.9345028 0 0.284369 -0.9345028 0.3559557 0 0 0 0 1 0 0 0 0 1 0.3551868 0.9347952 0 0.284369 -0.9347952 0.3551868 0 0 0 0 1 0 0 0 0 1 0.3530931 0.9355882 0 0.2843689 -0.9355881 0.3530932 0 0 0 0 1 0 0 0 0 1 0.3500398 0.9367348 0 0.2843689 -0.9367349 0.3500398 0 0 0 0 1 0 0 0 0 1 0.3464145 0.9380815 0 0.2843689 -0.9380815 0.3464145 0 0 0 0 1 0 0 0 0 1 0.3425928 0.939484 0 0.2843689 -0.939484 0.3425928 0 1.19209e-7 0 0 1 -1.19209e-7 0 0 0 1 0.338903 0.9408214 0 0.284369 -0.9408213 0.3389031 0 0 0 0 1 0 0 0 0 1 0.3356081 0.9420017 0 0.2843689 -0.9420017 0.3356082 0 0 0 0 1 0 0 0 0 1 0.3328889 0.9429661 0 0.2843688 -0.942966 0.3328889 0 0 0 0 1 0 0 0 0 1 0.3308406 0.9436866 0 0.2843689 -0.9436866 0.3308406 0 0 0 0 1 0 0 0 0 1 0.3294698 0.9441661 0 0.2843689 -0.9441661 0.32947 0 0 0 0 1 0 0 0 0 1 0.3287049 0.9444326 0 0.2843689 -0.9444327 0.3287049 0 0 0 0 0.9999999 0 0 0 0 1 0.3284106 0.944535 0 0.284369 -0.9445351 0.3284106 0 0 0 0 1 0 0 0 0 1 0.3284099 0.9445354 0 0.2843689 -0.9445355 0.3284098 0 0 0 0 1 0 0 0 0 1 0.3285169 0.9444982 0 0.2843689 -0.9444981 0.328517 0 0 0 0 1 0 0 0 0 1 0.3285766 0.9444776 0 0.284369 -0.9444776 0.3285764 0 0 0 0 1 0 0 0 0 1 0.3285168 0.9444981 0 0.2843688 -0.9444981 0.3285169 0 0 0 0 1 0 0 0 0 1 0.3284094 0.9445354 0 0.2843689 -0.9445356 0.3284094 0 0 0 0 1 0 0 0 0 1 0.3284097 0.9445354 0 0.2843689 -0.9445354 0.3284097 0 0 0 0 1 0 0 0 0 1 0.3287044 0.944433 0 0.2843689 -0.9444329 0.3287045 0 0 0 0 1 0 0 0 0 1 0.3294685 0.9441666 0 0.2843689 -0.9441664 0.3294686 0 0 0 0 1 0 0 0 0 1 0.330841 0.9436867 0 0.2843689 -0.9436865 0.3308409 0 0 0 0 1 0 0 0 0 1 0.3328891 0.9429659 0 0.2843689 -0.942966 0.3328892 0 0 0 0 1 0 0 0 0 1 0.3356083 0.9420015 0 0.284369 -0.9420016 0.3356084 0 0 0 0 1 0 0 0 0 1 0.3389028 0.9408214 0 0.2843689 -0.9408214 0.3389029 0 0 0 0 1 0 0 0 0 1 0.3425924 0.9394842 0 0.2843689 -0.9394841 0.3425924 0 0 0 0 1 0 0 0 0 1 0.3464146 0.9380816 0 0.284369 -0.9380816 0.3464145 0 0 0 0 1 0 0 0 0 1 0.3500395 0.9367349 0 0.284369 -0.9367349 0.3500394 0 0 1.60187e-7 0 0.9999999 0 0 0 0 1 0.3530935 0.9355881 0 0.2843689 -0.9355881 0.3530936 0 0 0 0 1 0 0 0 0 1 0.3551869 0.9347953 0 0.2843689 -0.9347952 0.3551868 0 0 0 0 0.9999999 0 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_Forearm_matrix-output-array" count="30" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_Forearm_matrix-interpolation">
|
||||
<Name_array id="node-Bip01_L_Forearm_matrix-interpolation-array" count="30">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_Forearm_matrix-interpolation-array" count="30" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_Hand_matrix-input">
|
||||
<float_array id="node-Bip01_L_Hand_matrix-input-array" count="30">34.66667 34.7 34.73333 34.76667 34.8 34.83333 34.86666 34.9 34.93333 34.96667 35 35.03333 35.06667 35.1 35.13334 35.16667 35.2 35.23333 35.26667 35.3 35.33333 35.36666 35.4 35.43333 35.46667 35.5 35.53333 35.56667 35.6 35.63334</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_Hand_matrix-input-array" count="30" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_Hand_matrix-output">
|
||||
<float_array id="node-Bip01_L_Hand_matrix-output-array" count="480">0.9826421 -0.06120806 -0.175123 0.2810681 -0.1088463 -0.9546607 -0.2770845 -1.19209e-7 -0.1502233 0.2913363 -0.944752 0 0 0 0 1 0.982756 -0.0595929 -0.1750413 0.281068 -0.1073358 -0.9546796 -0.2776076 0 -0.1505649 0.2916088 -0.9446134 0 0 0 0 1 0.9830577 -0.05509483 -0.1748201 0.2810681 -0.1031339 -0.9547172 -0.2790677 0 -0.1515286 0.2923696 -0.9442242 0 0 0 0 1 0.9834746 -0.04824513 -0.1744996 0.281068 -0.0967465 -0.9547308 -0.2812991 0 -0.153029 0.2935327 -0.943621 0 0 0 0 1 0.983928 -0.03957736 -0.1741242 0.281068 -0.08868384 -0.9546735 -0.2841365 1.19209e-7 -0.1549864 0.2950118 -0.9428399 0 0 0 0 1 0.9843468 -0.02961117 -0.1737371 0.281068 -0.07944285 -0.9545046 -0.2874191 0 -0.1573221 0.2967223 -0.9419159 0 0 0 0 1 0.9846751 -0.01884299 -0.1733775 0.281068 -0.06949651 -0.954198 -0.2909922 -1.19209e-7 -0.1599534 0.2985818 -0.9408845 1.19209e-7 0 0 0 1 0.9848779 -0.007740974 -0.1730774 0.2810681 -0.05928629 -0.9537474 -0.2947054 -1.19209e-7 -0.1627907 0.3005099 -0.9397835 0 0 0 0 1 0.9849413 0.003267109 -0.1728586 0.2810681 -0.04921102 -0.9531658 -0.2984182 1.78814e-7 -0.1657379 0.3024309 -0.9386516 0 0 0 0 1 0.9848724 0.01379036 -0.172732 0.2810681 -0.03962922 -0.9524844 -0.3019988 -1.19209e-7 -0.1686893 0.3042755 -0.9375291 0 0 0 0 1 0.9846953 0.02348172 -0.1726956 0.2810681 -0.03085172 -0.9517482 -0.3053253 -1.19209e-7 -0.1715322 0.3059804 -0.9364577 0 0 0 0 1 0.9844475 0.03202909 -0.1727346 0.2810681 -0.02315104 -0.951013 -0.3082829 0 -0.1741469 0.3074873 -0.9354808 0 0 0 0 1 0.9841745 0.03915059 -0.1728233 0.2810679 -0.01676672 -0.9503384 -0.3107665 0 -0.1764074 0.308746 -0.9346424 0 0 0 0 1 0.9839249 0.04458165 -0.1729291 0.2810682 -0.01191866 -0.9497863 -0.3126724 0 -0.1781851 0.3097073 -0.9339869 0 0 0 0 1 0.9837461 0.04805701 -0.173015 0.281068 -0.008826375 -0.9494158 -0.313898 0 -0.1793481 0.3103229 -0.9335598 0 0 0 0 1 0.9836792 0.04928696 -0.1730491 0.281068 -0.007733881 -0.9492816 -0.3143324 1.19209e-7 -0.1797648 0.3105405 -0.9334075 0 0 0 0 1 0.9837461 0.04805648 -0.1730148 0.281068 -0.008826673 -0.9494159 -0.313897 0 -0.1793478 0.3103221 -0.93356 0 0 0 0 1 0.983925 0.04458051 -0.1729285 0.281068 -0.01191931 -0.9497867 -0.312671 0 -0.1781842 0.309706 -0.9339874 0 0 0 0 1 0.9841747 0.03914862 -0.1728227 0.2810681 -0.01676797 -0.9503391 -0.3107643 0 -0.176406 0.3087441 -0.9346432 0 0 0 0 1 0.984448 0.03202635 -0.1727333 0.2810681 -0.02315276 -0.9510138 -0.3082805 0 -0.1741448 0.3074852 -0.935482 0 0 0 0 1 0.9846956 0.02347898 -0.172694 0.2810682 -0.03085333 -0.9517493 -0.3053218 -1.19209e-7 -0.1715301 0.3059772 -0.936459 0 0 0 0 1 0.9848726 0.01378607 -0.1727305 0.2810682 -0.0396322 -0.9524857 -0.3019944 0 -0.1686867 0.3042718 -0.9375306 0 0 0 0 1 0.9849416 0.003262162 -0.1728567 0.281068 -0.04921448 -0.9531671 -0.2984134 1.78814e-7 -0.1657347 0.3024268 -0.9386533 0 0 0 0 1 0.9848782 -0.007746696 -0.173075 0.2810681 -0.05929017 -0.9537488 -0.2946998 0 -0.1627871 0.3005051 -0.9397858 0 0 0 0 1 0.9846755 -0.01884943 -0.1733748 0.281068 -0.06950086 -0.9541994 -0.2909864 0 -0.1599492 0.2985769 -0.9408869 0 0 0 0 1 0.9843471 -0.0296173 -0.173734 0.2810682 -0.07944697 -0.954506 -0.2874137 0 -0.1573178 0.2967174 -0.9419183 0 0 0 0 1 0.9839285 -0.03958421 -0.1741208 0.2810681 -0.08868843 -0.9546752 -0.2841303 1.19209e-7 -0.1549817 0.2950063 -0.9428428 0 0 0 0 1 0.9834748 -0.0482527 -0.1744961 0.2810682 -0.09675157 -0.9547324 -0.281292 0 -0.153024 0.2935264 -0.9436238 0 0 0 0 1 0.9830579 -0.05510306 -0.1748163 0.281068 -0.1031397 -0.9547185 -0.2790605 1.78814e-7 -0.1515232 0.2923631 -0.9442269 0 0 0 0 1 0.9827561 -0.05960142 -0.1750371 0.2810681 -0.1073416 -0.9546813 -0.2775999 -1.19209e-7 -0.1505593 0.2916018 -0.9446167 0 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_Hand_matrix-output-array" count="30" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_Hand_matrix-interpolation">
|
||||
<Name_array id="node-Bip01_L_Hand_matrix-interpolation-array" count="30">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_Hand_matrix-interpolation-array" count="30" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_R_UpperArm_matrix-input">
|
||||
<float_array id="node-Bip01_R_UpperArm_matrix-input-array" count="30">34.66667 34.7 34.73333 34.76667 34.8 34.83333 34.86666 34.9 34.93333 34.96667 35 35.03333 35.06667 35.1 35.13334 35.16667 35.2 35.23333 35.26667 35.3 35.33333 35.36666 35.4 35.43333 35.46667 35.5 35.53333 35.56667 35.6 35.63334</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_R_UpperArm_matrix-input-array" count="30" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_R_UpperArm_matrix-output">
|
||||
<float_array id="node-Bip01_R_UpperArm_matrix-output-array" count="480">0.5832898 0.8093362 -0.06890493 0.1824007 -0.6477006 0.5146303 0.5618181 0 0.4901603 -0.2830729 0.8243862 0 0 0 0 1 0.5825634 0.8098173 -0.06939655 0.1824007 -0.6485168 0.5145941 0.560909 0 0.4899448 -0.2817602 0.8249637 1.19209e-7 0 0 0 1 0.5805318 0.8111552 -0.07077944 0.1824006 -0.650797 0.5144872 0.5583602 0 0.4893319 -0.2780829 0.8265736 -1.19209e-7 0 0 0 1 0.5774131 0.8131887 -0.07292562 0.1824007 -0.6542913 0.5143067 0.5544292 0 0.4883615 -0.2724201 0.8290296 -1.19209e-7 0 0 0 1 0.5734199 0.8157553 -0.07571387 0.1824007 -0.6587526 0.5140467 0.5493642 0 0.4870672 -0.2651396 0.8321455 1.19209e-7 0 0 0 1 0.5687608 0.8186977 -0.07902526 0.1824006 -0.663941 0.513702 0.5434084 0 0.4854826 -0.2566012 0.8357406 0 0 0 0 1 0.5636398 0.8218664 -0.08273839 0.1824007 -0.6696233 0.5132712 0.5368031 0 0.4836477 -0.24716 0.839641 1.19209e-7 0 0 0 1 0.5582558 0.8251236 -0.08672595 0.1824006 -0.675574 0.512759 0.5297908 0 0.4816123 -0.2371689 0.8436828 0 0 0 0 1 0.552804 0.8283438 -0.09085279 0.1824006 -0.681576 0.5121777 0.5226168 0 0.4794391 -0.2269815 0.8477131 0 0 0 0 1 0.5474753 0.8314148 -0.09497505 0.1824007 -0.6874203 0.5115475 0.5155313 0 0.4772046 -0.2169529 0.851591 -1.19209e-7 0 0 0 1 0.5424565 0.8342376 -0.09893858 0.1824007 -0.6929047 0.5108971 0.5087901 0 0.4749993 -0.2074415 0.8551865 1.19209e-7 0 0 0 1 0.5379322 0.8367236 -0.1025803 0.1824007 -0.6978322 0.5102627 0.5026553 0 0.4729263 -0.1988105 0.8583794 1.19209e-7 0 0 0 1 0.5340858 0.838793 -0.1057284 0.1824006 -0.7020094 0.5096871 0.497395 0 0.4710998 -0.1914292 0.8610573 1.19209e-7 0 0 0 1 0.5311016 0.8403707 -0.1082043 0.1824007 -0.7052431 0.5092172 0.4932852 0 0.4696418 -0.1856741 0.8631117 0 0 0 0 1 0.5291672 0.8413801 -0.1098251 0.1824007 -0.7073357 0.5089017 0.4906073 0 0.4686774 -0.18193 0.8644322 0 0 0 0 1 0.5284774 0.8417375 -0.1104061 0.1824007 -0.7080812 0.508787 0.4896498 0 0.4683297 -0.1805924 0.8649011 0 0 0 0 1 0.5291672 0.8413801 -0.1098251 0.1824007 -0.7073356 0.5089017 0.4906074 0 0.4686773 -0.1819301 0.8644322 0 0 0 0 1 0.5311016 0.8403707 -0.1082043 0.1824007 -0.7052431 0.5092172 0.4932852 0 0.4696418 -0.1856741 0.8631117 0 0 0 0 1 0.5340858 0.8387929 -0.1057283 0.1824006 -0.7020095 0.509687 0.497395 0 0.4710999 -0.1914292 0.8610574 1.19209e-7 0 0 0 1 0.5379322 0.8367236 -0.1025803 0.1824007 -0.6978322 0.5102627 0.5026553 0 0.4729263 -0.1988105 0.8583794 1.19209e-7 0 0 0 1 0.5424565 0.8342376 -0.09893858 0.1824007 -0.6929047 0.5108971 0.5087901 0 0.4749993 -0.2074415 0.8551865 1.19209e-7 0 0 0 1 0.5474753 0.8314148 -0.09497505 0.1824007 -0.6874203 0.5115475 0.5155313 0 0.4772046 -0.2169529 0.851591 -1.19209e-7 0 0 0 1 0.5528041 0.8283439 -0.09085279 0.1824007 -0.681576 0.5121778 0.5226168 0 0.4794391 -0.2269816 0.8477132 0 0 0 0 1 0.5582558 0.8251236 -0.08672595 0.1824006 -0.675574 0.512759 0.5297908 0 0.4816123 -0.2371689 0.8436828 0 0 0 0 1 0.5636398 0.8218664 -0.08273839 0.1824007 -0.6696233 0.5132712 0.5368031 0 0.4836477 -0.24716 0.839641 1.19209e-7 0 0 0 1 0.5687609 0.8186978 -0.07902526 0.1824007 -0.6639411 0.513702 0.5434084 0 0.4854826 -0.2566012 0.8357406 0 0 0 0 1 0.5734199 0.8157553 -0.07571387 0.1824007 -0.6587526 0.5140467 0.5493642 0 0.4870672 -0.2651396 0.8321455 1.19209e-7 0 0 0 1 0.5774132 0.8131886 -0.07292556 0.1824006 -0.6542912 0.5143065 0.5544292 0 0.4883616 -0.2724201 0.8290295 -1.19209e-7 0 0 0 1 0.5805318 0.8111552 -0.07077944 0.1824006 -0.650797 0.5144872 0.5583602 0 0.4893319 -0.2780829 0.8265736 -1.19209e-7 0 0 0 1 0.5825634 0.8098173 -0.06939655 0.1824007 -0.6485168 0.5145941 0.560909 0 0.4899448 -0.2817602 0.8249637 1.19209e-7 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_R_UpperArm_matrix-output-array" count="30" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_R_UpperArm_matrix-interpolation">
|
||||
<Name_array id="node-Bip01_R_UpperArm_matrix-interpolation-array" count="30">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_R_UpperArm_matrix-interpolation-array" count="30" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_Thigh_matrix-input">
|
||||
<float_array id="node-Bip01_L_Thigh_matrix-input-array" count="30">34.66667 34.7 34.73333 34.76667 34.8 34.83333 34.86666 34.9 34.93333 34.96667 35 35.03333 35.06667 35.1 35.13334 35.16667 35.2 35.23333 35.26667 35.3 35.33333 35.36666 35.4 35.43333 35.46667 35.5 35.53333 35.56667 35.6 35.63334</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_Thigh_matrix-input-array" count="30" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_Thigh_matrix-output">
|
||||
<float_array id="node-Bip01_L_Thigh_matrix-output-array" count="480">-0.8850529 0.4448214 -0.1371676 -0.1894343 0.1636992 0.5732781 0.8028416 -0.03385835 0.4357565 0.6881031 -0.5801985 0.1843713 0 0 0 1 -0.9060972 0.4025251 -0.1302351 -0.1894829 0.1412613 0.5780188 0.8037035 -0.0349006 0.3987892 0.7098364 -0.5806027 0.1842133 0 0 0 1 -0.9359632 0.3314592 -0.118775 -0.1895563 0.1044242 0.5834732 0.8053908 -0.03776502 0.3362563 0.7414133 -0.5807219 0.1837323 0 0 0 1 -0.9609197 0.2557681 -0.1059048 -0.1895173 0.06686496 0.5856842 0.8077765 -0.04206323 0.2686304 0.7691272 -0.5798974 0.1828809 0 0 0 1 -0.9729296 0.2110345 -0.0941919 -0.1892366 0.04824942 0.5840882 0.8102548 -0.0474081 0.2260082 0.7837762 -0.5784591 0.1816006 0 0 0 1 -0.9765982 0.1982949 -0.08327645 -0.1886363 0.04862326 0.580744 0.8126327 -0.0534144 0.2095033 0.7895665 -0.5767954 0.179858 0 0 0 1 -0.9779723 0.1957442 -0.07248532 -0.1877186 0.05506664 0.5769053 0.8149527 -0.05970835 0.2013395 0.7930099 -0.5749763 0.1776683 0 0 0 1 -0.9768267 0.2047058 -0.06248992 -0.1865772 0.06779921 0.5728796 0.8168305 -0.06594234 0.2030093 0.7936651 -0.5734832 0.1751081 0 0 0 1 -0.973111 0.2240552 -0.05342322 -0.1853951 0.08602464 0.5686746 0.8180518 -0.07180768 0.2136694 0.7914596 -0.5726578 0.1723198 0 0 0 1 -0.9676492 0.2483298 -0.04457789 -0.1844279 0.1070805 0.564211 0.8186572 -0.07703953 0.2284485 0.7873996 -0.5725496 0.1695085 0 0 0 1 -0.959 0.2809246 -0.037418 -0.1814048 0.1319267 0.5593636 0.8183566 -0.08045184 0.2508269 0.7798677 -0.5734912 0.1672951 0 0 0 1 -0.945392 0.324264 -0.03296345 -0.1753349 0.1613854 0.5535742 0.817013 -0.08200484 0.2831757 0.7670779 -0.5756762 0.1655943 0 0 0 1 -0.9271858 0.3733963 -0.03002685 -0.1681866 0.1935522 0.5461527 0.8150182 -0.08294981 0.3207241 0.7498617 -0.5786567 0.1636507 0 0 0 1 -0.9049409 0.4246309 -0.0277574 -0.1617738 0.2268618 0.5366 0.8127694 -0.08398103 0.3600217 0.729211 -0.5819239 0.1613258 0 0 0 1 -0.8787067 0.4766513 -0.02604162 -0.1577131 0.2605128 0.5245395 0.81055 -0.08510512 0.4000096 0.7054515 -0.5850901 0.1592865 0 0 0 1 -0.8466191 0.5315508 -0.02626234 -0.1573895 0.2948047 0.5094864 0.808402 -0.08573293 0.4430871 0.6766663 -0.5880447 0.1587387 0 0 0 1 -0.801916 0.5966364 -0.03091329 -0.1587541 0.3330737 0.4894289 0.8059287 -0.08491903 0.4959763 0.6359907 -0.5912048 0.1597598 0 0 0 1 -0.7370784 0.6744641 -0.0425859 -0.159061 0.3763657 0.4620109 0.8030533 -0.08253777 0.5613059 0.5758854 -0.5943834 0.1614539 0 0 0 1 -0.6577219 0.7508242 -0.06053853 -0.1587026 0.4172032 0.4300249 0.8006372 -0.0788725 0.6271708 0.5013397 -0.5960831 0.1636446 0 0 0 1 -0.5787323 0.8113933 -0.08191442 -0.158128 0.4479795 0.4002339 0.7994543 -0.07416051 0.6814569 0.425974 -0.5951157 0.1661758 0 0 0 1 -0.5237163 0.8457628 -0.1020123 -0.1577782 0.4626049 0.382902 0.799614 -0.06864291 0.7153446 0.3715795 -0.591786 0.1689073 0 0 0 1 -0.4983621 0.858739 -0.1191739 -0.1580405 0.4634319 0.3800405 0.8004997 -0.0625897 0.7327114 0.3437097 -0.5873649 0.1717124 0 0 0 1 -0.4934061 0.8594292 -0.1339094 -0.159219 0.4560733 0.3867231 0.801525 -0.05630081 0.7406399 0.3344047 -0.5827743 0.1744779 0 0 0 1 -0.5081321 0.8488945 -0.1455329 -0.1615221 0.4414603 0.4017934 0.8022934 -0.05008578 0.7395368 0.3434242 -0.5789174 0.1771045 0 0 0 1 -0.5383285 0.8285653 -0.1538892 -0.165031 0.4209656 0.4225785 0.8026302 -0.04444342 0.7300619 0.3672966 -0.5762836 0.1794471 0 0 0 1 -0.5783931 0.800099 -0.159069 -0.1696054 0.3962428 0.4459996 0.8025434 -0.03987556 0.713059 0.4011555 -0.5749966 0.1813727 0 0 0 1 -0.6226435 0.765682 -0.161388 -0.1748538 0.3691761 0.4692886 0.8021702 -0.03660911 0.6899449 0.4398856 -0.574871 0.1828101 0 0 0 1 -0.6863684 0.7097869 -0.1584326 -0.1801766 0.3302245 0.4982714 0.8016715 -0.03468114 0.6479585 0.4979237 -0.5763868 0.1837332 0 0 0 1 -0.7673956 0.6232156 -0.1506867 -0.1848616 0.2741114 0.5313413 0.8015854 -0.0338816 0.5796267 0.5738282 -0.5785794 0.1841999 0 0 0 1 -0.839686 0.5240657 -0.1424161 -0.1881792 0.2122673 0.5580968 0.802166 -0.03378295 0.4998698 0.6433375 -0.5798681 0.1843529 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_Thigh_matrix-output-array" count="30" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_Thigh_matrix-interpolation">
|
||||
<Name_array id="node-Bip01_L_Thigh_matrix-interpolation-array" count="30">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_Thigh_matrix-interpolation-array" count="30" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_Calf_matrix-input">
|
||||
<float_array id="node-Bip01_L_Calf_matrix-input-array" count="30">34.66667 34.7 34.73333 34.76667 34.8 34.83333 34.86666 34.9 34.93333 34.96667 35 35.03333 35.06667 35.1 35.13334 35.16667 35.2 35.23333 35.26667 35.3 35.33333 35.36666 35.4 35.43333 35.46667 35.5 35.53333 35.56667 35.6 35.63334</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_Calf_matrix-input-array" count="30" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_Calf_matrix-output">
|
||||
<float_array id="node-Bip01_L_Calf_matrix-output-array" count="480">0.6778107 0.7352367 0 0.4629988 -0.7352365 0.6778106 0 0 0 0 1 0 0 0 0 1 0.6922793 0.7216297 0 0.4629988 -0.7216297 0.6922792 0 0 0 0 1 0 0 0 0 1 0.725941 0.6877571 0 0.4629988 -0.6877571 0.725941 0 0 0 0 1 0 0 0 0 1 0.7590454 0.6510377 0 0.4629988 -0.6510376 0.7590453 0 0 0 0 1 0 0 0 0 1 0.7589145 0.6511905 0 0.4629988 -0.6511905 0.7589145 0 0 0 0 1 0 0 0 0 1 0.720375 0.6935849 0 0.4629987 -0.6935849 0.7203752 0 0 0 0 1 0 0 0 0 1 0.6636937 0.7480044 0 0.4629987 -0.7480043 0.6636936 0 0 0 0 1 0 0 0 0 1 0.5892221 0.8079713 0 0.4629988 -0.8079712 0.5892222 0 0 0 0 1 0 0 0 0 1 0.4992173 0.8664768 0 0.4629986 -0.8664768 0.4992174 0 0 0 0 1 0 0 0 0 1 0.4004972 0.9162978 0 0.4629987 -0.9162979 0.4004973 0 0 0 0 1 0 0 0 0 1 0.2910504 0.9567079 0 0.4629988 -0.9567078 0.2910504 0 0 0 0 1 0 0 0 0 1 0.1692135 0.9855796 0 0.4629988 -0.9855795 0.1692135 0 0 1.22935e-7 0 1 0 0 0 0 1 0.04345381 0.9990554 0 0.4629987 -0.9990553 0.04345381 0 0 0 0 1 0 0 0 0 1 -0.07885825 0.9968859 0 0.4629988 -0.996886 -0.07885825 0 0 1.22003e-7 0 1 0 0 0 0 1 -0.1930202 0.9811946 0 0.4629986 -0.9811947 -0.1930202 0 0 0 0 1 0 0 0 0 1 -0.2973292 0.954775 0 0.4629987 -0.954775 -0.2973292 0 0 0 0 1 0 0 0 0 1 -0.3936053 0.9192796 0 0.4629988 -0.9192795 -0.3936053 0 0 0 0 1 0 0 0 0 1 -0.4760351 0.8794261 0 0.4629986 -0.8794261 -0.4760352 0 0 0 0 1 0 0 0 0 1 -0.5305668 0.847643 0 0.4629988 -0.847643 -0.5305668 0 0 0 0 1 0 0 0 0 1 -0.5496206 0.8354141 0 0.4629986 -0.835414 -0.5496208 0 0 0 0 1 0 0 0 0 1 -0.5302811 0.847822 0 0.4629988 -0.8478219 -0.530281 0 0 0 0 1 0 0 0 0 1 -0.4729946 0.8810654 0 0.4629988 -0.8810652 -0.4729946 0 0 0 0 1 0 0 0 0 1 -0.3834897 0.9235451 0 0.4629988 -0.9235451 -0.3834897 0 0 0 0 1 0 0 0 0 1 -0.2686037 0.9632508 0 0.4629986 -0.9632507 -0.2686036 0 0 0 0 1 0 0 0 0 1 -0.1372312 0.9905392 0 0.4629987 -0.9905391 -0.1372312 0 0 0 0 1 0 0 0 0 1 -7.57813e-4 1 0 0.4629988 -0.9999999 -7.57754e-4 0 0 0 0 1 0 0 0 0 1 0.127184 0.9918793 0 0.4629988 -0.991879 0.1271839 0 0 0 0 1 0 0 0 0 1 0.2595388 0.9657328 0 0.4629988 -0.9657326 0.2595388 0 0 0 0 1 0 0 0 0 1 0.4118779 0.9112389 0 0.4629988 -0.9112389 0.4118781 0 0 0 0 1 0 0 0 0 1 0.5639131 0.8258342 0 0.4629988 -0.825834 0.563913 0 0 0 0 1 0 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_Calf_matrix-output-array" count="30" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_Calf_matrix-interpolation">
|
||||
<Name_array id="node-Bip01_L_Calf_matrix-interpolation-array" count="30">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_Calf_matrix-interpolation-array" count="30" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_Foot_matrix-input">
|
||||
<float_array id="node-Bip01_L_Foot_matrix-input-array" count="30">34.66667 34.7 34.73333 34.76667 34.8 34.83333 34.86666 34.9 34.93333 34.96667 35 35.03333 35.06667 35.1 35.13334 35.16667 35.2 35.23333 35.26667 35.3 35.33333 35.36666 35.4 35.43333 35.46667 35.5 35.53333 35.56667 35.6 35.63334</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_Foot_matrix-input-array" count="30" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_Foot_matrix-output">
|
||||
<float_array id="node-Bip01_L_Foot_matrix-output-array" count="480">0.8790581 0.4765734 -0.01161044 0.3610501 -0.4757286 0.8785451 0.04290503 0 0.03064763 -0.03219258 0.9990118 0 0 0 0 1 0.891915 0.4521595 -0.006305336 0.3610501 -0.4514569 0.8911567 0.04501944 0 0.02597492 -0.0373069 0.9989662 0 0 0 0 1 0.9049909 0.4254195 0.003187477 0.3610501 -0.4250585 0.9038584 0.04863822 0 0.01781058 -0.045372 0.9988115 0 0 0 0 1 0.9176157 0.3972163 0.01416963 0.36105 -0.3973914 0.9161502 0.05243074 0 0.007844746 -0.05374217 0.9985241 0 0 0 0 1 0.9352013 0.3533526 0.02324503 0.3610501 -0.3541117 0.9335058 0.05631566 0 -0.0018 -0.06089788 0.9981424 0 0 0 0 1 0.9585489 0.2833221 0.03021079 0.3610501 -0.2846991 0.9566306 0.06167852 0 -0.01142573 -0.06772297 0.9976388 0 0 0 0 1 0.9782354 0.2044684 0.03532886 0.3610501 -0.2064778 0.9760763 0.06813079 0 -0.02055299 -0.0739426 0.9970508 0 0 0 0 1 0.9916142 0.1236261 0.03765559 0.3610501 -0.1261737 0.9891569 0.07515668 0 -0.02795594 -0.07927763 0.9964603 0 0 0 0 1 0.9984758 0.04045325 0.03755247 0.3610501 -0.04345917 0.9955998 0.08302128 0 -0.03402876 -0.08452677 0.99584 0 0 0 0 1 0.9977548 -0.05587089 0.0369265 0.36105 0.05218267 0.9941803 0.09424686 0 -0.04197722 -0.09210836 0.9948639 0 0 0 0 1 0.9880359 -0.1506608 0.03295767 0.3610501 0.1464595 0.9835706 0.1055383 0 -0.04831659 -0.09944868 0.9938689 0 0 0 0 1 0.9731212 -0.2290161 0.02423053 0.3610501 0.2249691 0.9678382 0.112598 0 -0.0492382 -0.1041203 0.9933452 0 0 0 0 1 0.9542014 -0.2988549 0.01362407 0.3610501 0.2952865 0.9481626 0.1174461 0 -0.04801732 -0.1080442 0.9929857 0 0 0 0 1 0.9311495 -0.3646253 0.002949476 0.36105 0.361576 0.9243479 0.1218321 0 -0.04714947 -0.1123775 0.9925463 0 0 0 0 1 0.9055127 -0.424261 -0.007008433 0.36105 0.4216933 0.8979522 0.1259224 0 -0.04713088 -0.1169797 0.9920153 0 0 0 0 1 0.8841019 -0.4670182 -0.01607024 0.3610502 0.4651146 0.8761391 0.1266854 0 -0.04508459 -0.1194773 0.9918129 0 0 0 0 1 0.870928 -0.4908254 -0.02398389 0.3610501 0.489802 0.8630955 0.123127 0 -0.03973358 -0.118982 0.9921011 0 0 0 0 1 0.8737711 -0.4854326 -0.02966499 0.3610501 0.4854489 0.8668623 0.1135329 0 -0.02939713 -0.1136026 0.9930914 0 0 0 0 1 0.8941572 -0.4466041 -0.03205406 0.3610501 0.4474796 0.8888174 0.09882116 0 -0.01564359 -0.1027052 0.9945888 0 0 0 0 1 0.9250642 -0.3784646 -0.03194922 0.3610501 0.3798084 0.9214886 0.08126604 0 -0.001315534 -0.08731091 0.9961802 0 0 0 0 1 0.9546371 -0.2961426 -0.03110164 0.3610501 0.2975853 0.9525147 0.06448912 0 0.01052701 -0.07081913 0.9974337 0 0 0 0 1 0.9787086 -0.2029755 -0.0305134 0.3610501 0.2043131 0.977621 0.05013942 0 0.01965337 -0.05530613 0.9982761 0 0 0 0 1 0.9947533 -0.09750741 -0.0309596 0.3610502 0.0986638 0.9943826 0.03832256 0 0.02704894 -0.04117608 0.9987856 0 0 0 0 1 0.9994207 0.009864211 -0.03256905 0.36105 -0.008889079 0.9995116 0.02995282 0 0.03284853 -0.02964591 0.9990206 0 0 0 0 1 0.9931059 0.1119754 -0.03466552 0.36105 -0.1111357 0.9934836 0.02527236 0 0.03726947 -0.02124553 0.9990794 0 0 0 0 1 0.9784824 0.2031037 -0.03634494 0.3610501 -0.2023277 0.9790254 0.02392452 0 0.04044187 -0.01605618 0.9990528 0 0 0 0 1 0.9600746 0.2772936 -0.0369485 0.36105 -0.2765088 0.9606866 0.02498507 0 0.04242396 -0.01377087 0.9990048 0 0 0 0 1 0.9435591 0.3294342 -0.03419536 0.3610501 -0.3285425 0.9440372 0.0292108 0 0.04190468 -0.01632744 0.9989882 0 0 0 0 1 0.9268139 0.3745332 -0.02722412 0.3610501 -0.3735433 0.9269374 0.03539514 0 0.03849166 -0.02263534 0.9990026 0 0 0 0 1 0.9046273 0.4258024 -0.01848483 0.3610501 -0.424851 0.9043605 0.04041719 0 0.03392672 -0.02870923 0.9990118 0 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_Foot_matrix-output-array" count="30" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_Foot_matrix-interpolation">
|
||||
<Name_array id="node-Bip01_L_Foot_matrix-interpolation-array" count="30">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_Foot_matrix-interpolation-array" count="30" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_R_Thigh_matrix-input">
|
||||
<float_array id="node-Bip01_R_Thigh_matrix-input-array" count="30">34.66667 34.7 34.73333 34.76667 34.8 34.83333 34.86666 34.9 34.93333 34.96667 35 35.03333 35.06667 35.1 35.13334 35.16667 35.2 35.23333 35.26667 35.3 35.33333 35.36666 35.4 35.43333 35.46667 35.5 35.53333 35.56667 35.6 35.63334</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_R_Thigh_matrix-input-array" count="30" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_R_Thigh_matrix-output">
|
||||
<float_array id="node-Bip01_R_Thigh_matrix-output-array" count="480">-0.3184214 0.929522 -0.1860015 -0.194118 0.8122211 0.3686977 0.4520604 0.003519058 0.4887783 -0.007128775 -0.8723787 -0.0678035 0 0 0 1 -0.2948321 0.9315101 -0.2129855 -0.1940694 0.8086048 0.3619814 0.4638184 0.004561245 0.5091484 -0.03547257 -0.8599474 -0.06764549 0 0 0 1 -0.2631664 0.9309502 -0.2531306 -0.1939959 0.8003904 0.3571708 0.4814603 0.007425665 0.5386264 -0.07589918 -0.839119 -0.06716448 0 0 0 1 -0.2412765 0.9248334 -0.2940554 -0.1940349 0.7858288 0.3639855 0.4999876 0.01172393 0.5694372 -0.1104419 -0.8145819 -0.06631308 0 0 0 1 -0.2440137 0.9136976 -0.324983 -0.1943157 0.7654418 0.3872252 0.5139604 0.0170688 0.595446 -0.1233422 -0.7938707 -0.06503283 0 0 0 1 -0.2718604 0.8970741 -0.348353 -0.1949159 0.7375072 0.4267562 0.5234138 0.0230751 0.6182029 -0.1146174 -0.7776167 -0.06329017 0 0 0 1 -0.3161104 0.874019 -0.3690052 -0.1958336 0.7009724 0.4772678 0.5299556 0.02936905 0.6393055 -0.09113806 -0.7635326 -0.06110042 0 0 0 1 -0.3717331 0.8453081 -0.3837556 -0.1969751 0.6585349 0.5314755 0.5327902 0.03560304 0.6543287 -0.05466067 -0.7542321 -0.05854028 0 0 0 1 -0.4301754 0.8137921 -0.3907575 -0.1981572 0.6154333 0.5810444 0.5325683 0.04146838 0.6604474 -0.01138746 -0.7507858 -0.05575203 0 0 0 1 -0.4803512 0.786399 -0.3883804 -0.1991243 0.5812987 0.6170364 0.5304318 0.04670023 0.6567759 0.02902853 -0.7535268 -0.05294066 0 0 0 1 -0.5169191 0.7686814 -0.3767272 -0.2021474 0.5626546 0.6367583 0.5272178 0.05011254 0.6451467 0.06056165 -0.7616547 -0.0507273 0 0 0 1 -0.5454566 0.7578014 -0.3580696 -0.2082173 0.5549067 0.6466918 0.5233238 0.05166554 0.6281365 0.08675515 -0.7732515 -0.04902648 0 0 0 1 -0.5711079 0.7500646 -0.3335249 -0.2153656 0.5530917 0.651839 0.5188403 0.05261051 0.6065683 0.1118439 -0.7871249 -0.0470829 0 0 0 1 -0.5977219 0.7415059 -0.3047907 -0.2217785 0.5522765 0.6564232 0.513906 0.05364173 0.5811361 0.138844 -0.8018747 -0.04475802 0 0 0 1 -0.6264441 0.7294797 -0.2746402 -0.2258391 0.548995 0.6630451 0.5088964 0.05476582 0.5533286 0.1680189 -0.8158414 -0.04271864 0 0 0 1 -0.6555103 0.7137154 -0.2468131 -0.2261627 0.5419571 0.6721943 0.5044177 0.05539357 0.5259171 0.1968888 -0.8274335 -0.04217088 0 0 0 1 -0.6808016 0.6990628 -0.2186785 -0.2247982 0.5370551 0.6794214 0.4999581 0.05457973 0.498077 0.22293 -0.8379865 -0.04319196 0 0 0 1 -0.7006139 0.6886113 -0.1869616 -0.2244912 0.5383988 0.6821253 0.4948046 0.05219846 0.4682594 0.2460071 -0.8486539 -0.04488605 0 0 0 1 -0.7144032 0.6823463 -0.1550212 -0.2248496 0.5445253 0.6812617 0.4892591 0.0485332 0.4394542 0.2651153 -0.8582504 -0.04707676 0 0 0 1 -0.7202158 0.6820791 -0.1267164 -0.2254242 0.5555345 0.6764304 0.4835527 0.04382121 0.4155361 0.277867 -0.8660944 -0.04960799 0 0 0 1 -0.7149202 0.6910625 -0.106403 -0.2257741 0.5726683 0.6660317 0.4779673 0.03830361 0.4011731 0.2807748 -0.8719093 -0.05233949 0 0 0 1 -0.6973837 0.7104847 -0.09416669 -0.2255117 0.5969015 0.6485047 0.4723877 0.0322504 0.3966919 0.2732272 -0.876346 -0.0551446 0 0 0 1 -0.6707638 0.736614 -0.08646261 -0.2243332 0.6260658 0.6248526 0.466477 0.02596151 0.3976398 0.2587646 -0.8802973 -0.05791008 0 0 0 1 -0.6376281 0.765886 -0.08275908 -0.2220302 0.6571021 0.5968176 0.4604622 0.01974648 0.4020537 0.2392224 -0.883813 -0.06053668 0 0 0 1 -0.6007217 0.7951704 -0.08268898 -0.2185212 0.6872837 0.5664978 0.4546661 0.01410412 0.4083802 0.216297 -0.8868153 -0.06287932 0 0 0 1 -0.5627797 0.8221345 -0.0858702 -0.2139468 0.7145736 0.5360927 0.4494318 0.009536266 0.4155279 0.1915704 -0.8891777 -0.06480491 0 0 0 1 -0.5262278 0.8453896 -0.09165537 -0.2086985 0.7378215 0.5075184 0.4450217 0.006269812 0.4227336 0.1665574 -0.8908169 -0.06624227 0 0 0 1 -0.4797358 0.8707899 -0.107603 -0.2033756 0.7610509 0.4740021 0.442858 0.00434184 0.4366404 0.1305633 -0.8901113 -0.06716543 0 0 0 1 -0.4193105 0.8976352 -0.1357566 -0.1986906 0.7840219 0.4334399 0.4443414 0.003542304 0.4576989 0.07988071 -0.8855115 -0.06763207 0 0 0 1 -0.3599563 0.9181398 -0.1656829 -0.195373 0.8017143 0.3952254 0.4483869 0.003443658 0.4771639 0.02856922 -0.8783497 -0.06778508 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_R_Thigh_matrix-output-array" count="30" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_R_Thigh_matrix-interpolation">
|
||||
<Name_array id="node-Bip01_R_Thigh_matrix-interpolation-array" count="30">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_R_Thigh_matrix-interpolation-array" count="30" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_R_Calf_matrix-input">
|
||||
<float_array id="node-Bip01_R_Calf_matrix-input-array" count="30">34.66667 34.7 34.73333 34.76667 34.8 34.83333 34.86666 34.9 34.93333 34.96667 35 35.03333 35.06667 35.1 35.13334 35.16667 35.2 35.23333 35.26667 35.3 35.33333 35.36666 35.4 35.43333 35.46667 35.5 35.53333 35.56667 35.6 35.63334</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_R_Calf_matrix-input-array" count="30" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_R_Calf_matrix-output">
|
||||
<float_array id="node-Bip01_R_Calf_matrix-output-array" count="480">-0.3497498 0.9368433 0 0.4629988 -0.936843 -0.3497498 0 0 0 0 1 0 0 0 0 1 -0.346863 0.937916 0 0.4629988 -0.9379158 -0.346863 0 0 0 0 1 0 0 0 0 1 -0.3367616 0.94159 0 0.4629988 -0.94159 -0.3367615 0 0 0 0 1 0 0 0 0 1 -0.3057432 0.9521142 0 0.4629989 -0.9521141 -0.3057433 0 0 0 0 1 0 0 0 0 1 -0.2486887 0.9685833 0 0.4629987 -0.9685832 -0.2486888 0 0 0 0 1 0 0 0 0 1 -0.1569139 0.9876124 0 0.4629988 -0.9876123 -0.1569139 0 0 0 0 1 0 0 0 0 1 -0.02887129 0.9995833 0 0.4629988 -0.9995831 -0.02887123 0 0 0 0 1 0 0 0 0 1 0.1177403 0.9930444 0 0.4629987 -0.9930443 0.1177402 0 0 0 0 1 0 0 0 0 1 0.2550468 0.9669287 0 0.4629987 -0.9669287 0.2550469 0 0 0 0 1 0 0 0 0 1 0.3475325 0.937668 0 0.4629987 -0.9376679 0.3475326 0 0 0 0 1 0 0 0 0 1 0.3845173 0.9231178 0 0.4629988 -0.9231178 0.3845174 0 0 0 0 1 0 0 0 0 1 0.3882129 0.9215697 0 0.4629987 -0.9215697 0.388213 0 0 0 0 1 0 0 0 0 1 0.3729484 0.9278521 0 0.4629988 -0.9278519 0.3729483 0 0 0 0 0.9999999 0 0 0 0 1 0.3532139 0.9355427 0 0.4629988 -0.9355425 0.3532139 0 0 0 0 1 0 0 0 0 1 0.3407174 0.9401655 0 0.4629986 -0.9401655 0.3407174 0 0 0 1.19209e-7 1 0 0 0 0 1 0.3420829 0.9396698 0 0.4629988 -0.9396697 0.342083 0 0 0 0 1 0 0 0 0 1 0.3396331 0.940558 0 0.4629987 -0.9405578 0.339633 0 0 0 0 1 0 0 0 0 1 0.3204355 0.9472703 0 0.4629988 -0.9472703 0.3204355 0 0 0 0 1 0 0 0 0 1 0.2912588 0.9566445 0 0.4629988 -0.9566443 0.2912587 0 0 0 0 1 0 0 0 0 1 0.2544065 0.9670975 0 0.4629988 -0.9670972 0.2544065 0 0 0 0 1 0 0 0 0 1 0.2087924 0.9779601 0 0.4629988 -0.9779598 0.2087925 0 0 0 0 1 0 0 0 0 1 0.1486265 0.9888934 0 0.4629987 -0.9888933 0.1486265 0 0 0 0 1 0 0 0 0 1 0.07507157 0.9971781 0 0.4629987 -0.9971781 0.07507157 0 0 0 0 1 0 0 0 0 1 -0.003459513 0.9999941 0 0.4629988 -0.9999939 -0.003459513 0 0 0 0 1 0 0 0 0 1 -0.0795266 0.9968328 0 0.4629988 -0.9968327 -0.0795266 0 0 0 0 1 0 0 0 0 1 -0.1474254 0.9890732 0 0.4629987 -0.9890732 -0.1474255 0 0 0 0 1 0 0 0 0 1 -0.203091 0.9791598 0 0.4629987 -0.9791597 -0.2030912 0 0 0 0 0.9999999 0 0 0 0 1 -0.2522233 0.9676691 0 0.4629988 -0.967669 -0.2522231 0 0 0 0 1 0 0 0 0 1 -0.2960224 0.9551811 0 0.4629987 -0.955181 -0.2960225 0 0 1.56462e-7 0 1 0 0 0 0 1 -0.3285108 0.9445005 0 0.4629989 -0.9445001 -0.3285108 0 0 0 0 1 0 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_R_Calf_matrix-output-array" count="30" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_R_Calf_matrix-interpolation">
|
||||
<Name_array id="node-Bip01_R_Calf_matrix-interpolation-array" count="30">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_R_Calf_matrix-interpolation-array" count="30" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_R_Foot_matrix-input">
|
||||
<float_array id="node-Bip01_R_Foot_matrix-input-array" count="30">34.66667 34.7 34.73333 34.76667 34.8 34.83333 34.86666 34.9 34.93333 34.96667 35 35.03333 35.06667 35.1 35.13334 35.16667 35.2 35.23333 35.26667 35.3 35.33333 35.36666 35.4 35.43333 35.46667 35.5 35.53333 35.56667 35.6 35.63334</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_R_Foot_matrix-input-array" count="30" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_R_Foot_matrix-output">
|
||||
<float_array id="node-Bip01_R_Foot_matrix-output-array" count="480">0.8885838 0.4383288 -0.1352301 0.36105 -0.4156701 0.8940975 0.1667582 0 0.1940038 -0.09196764 0.9766804 0 0 0 0 1 0.9013105 0.4089585 -0.1428022 0.3610501 -0.3904932 0.9097763 0.1407909 0 0.1874957 -0.07113301 0.9796864 0 0 0 0 1 0.9182485 0.3639811 -0.1560042 0.3610501 -0.3515819 0.9306045 0.1018106 0 0.1822355 -0.03863918 0.9824953 0 0 0 0 1 0.9323092 0.3184749 -0.1713869 0.3610501 -0.3123018 0.947919 0.06258708 0 0.1823933 -0.004826068 0.9832138 0 0 0 0 1 0.9407165 0.2842836 -0.1850281 0.3610501 -0.2827665 0.9585462 0.0351088 0 0.1873388 0.01929217 0.9821059 0 0 0 0 1 0.9445537 0.2623535 -0.1974576 0.3610501 -0.2637692 0.9643872 0.01958024 0 0.1955625 0.03358864 0.9801159 0 0 0 0 1 0.9449489 0.250208 -0.2108735 0.3610501 -0.2531558 0.9673334 0.01335078 0 0.2073255 0.04076802 0.9774222 0 0 0 0 1 0.9421173 0.2513474 -0.2219006 0.3610501 -0.2538342 0.9670855 0.0177232 0 0.2190514 0.03962862 0.9749082 0 0 0 0 1 0.937247 0.2646342 -0.2270166 0.3610501 -0.2650607 0.9637899 0.02917939 0 0.2265183 0.03282493 0.9734537 0 0 0 0 1 0.9327562 0.2825037 -0.223959 0.3610501 -0.2805749 0.9589526 0.04107701 0 0.2263705 0.02452236 0.9737325 0 0 0 0 1 0.9291735 0.3018798 -0.2133197 0.3610501 -0.2981517 0.9531957 0.05023372 0 0.2184999 0.01692575 0.9756901 0 0 0 0 1 0.9248433 0.3250756 -0.1974606 0.3610501 -0.3198457 0.9456465 0.05874341 0 0.205824 0.008828341 0.9785493 0 0 0 0 1 0.9193415 0.3509827 -0.1778257 0.36105 -0.344232 0.9363799 0.06853049 0 0.1905655 -0.001789629 0.9816727 0 0 0 0 1 0.9117493 0.3799343 -0.1560886 0.3610501 -0.3715141 0.9248755 0.08113342 0 0.175188 -0.01598423 0.9844053 0 0 0 0 1 0.9012224 0.4120268 -0.1342854 0.3610502 -0.4019377 0.9105772 0.09641379 0 0.1620022 -0.03291583 0.9862411 0 0 0 0 1 0.8877466 0.4458649 -0.1145014 0.3610501 -0.4343653 0.8937026 0.1123495 0 0.1524229 -0.05000239 0.9870495 0 0 0 0 1 0.8738954 0.4766358 -0.09552717 0.3610501 -0.4639185 0.876434 0.1290081 0 0.1452131 -0.06842261 0.9870316 0 0 0 0 1 0.861411 0.502119 -0.07647037 0.3610502 -0.4881887 0.8600738 0.1481377 0 0.1401529 -0.09027546 0.986006 0 0 0 0 1 0.8507914 0.522113 -0.05960172 0.3610501 -0.5069518 0.8453295 0.1685768 0 0.1383993 -0.1132086 0.9838849 0 0 0 0 1 0.843733 0.5346843 -0.04719877 0.3610501 -0.5181913 0.8343148 0.1881392 0 0.1399737 -0.1342812 0.9810076 0 0 0 0 1 0.8427067 0.5367735 -0.04147326 0.3610501 -0.5188103 0.8302496 0.203768 0 0.1438104 -0.1501998 0.9781402 0 0 0 0 1 0.8505265 0.5241962 -0.04270195 0.3610501 -0.5045844 0.8362066 0.214833 0 0.1483222 -0.1611744 0.9757168 0 0 0 0 1 0.8650993 0.4992309 -0.0486989 0.3610502 -0.4777532 0.8496574 0.2232356 0 0.1528235 -0.1698548 0.9735472 0 0 0 0 1 0.8816747 0.4683104 -0.05775541 0.3610501 -0.4448885 0.8658186 0.2289821 0 0.1572403 -0.1761929 0.971716 0 0 0 0 1 0.8967025 0.4373208 -0.06837677 0.36105 -0.4120318 0.8811289 0.2320382 0 0.1617237 -0.1798959 0.9703003 0 0 0 0 1 0.9079312 0.4115445 -0.07932287 0.3610501 -0.3846065 0.8933172 0.2325124 0 0.1665498 -0.1805972 0.9693533 0 0 0 0 1 0.9138907 0.395982 -0.08945643 0.3610501 -0.3677172 0.9008184 0.230891 0 0.1720127 -0.1781145 0.9688585 0 0 0 0 1 0.913128 0.3949279 -0.1011402 0.3610501 -0.3663123 0.9037176 0.2216067 0 0.1789208 -0.1653065 0.9698769 0 0 0 0 1 0.9061875 0.4070137 -0.114735 0.36105 -0.3797473 0.9026145 0.2026789 0 0.1860545 -0.1400948 0.9725005 0 0 0 0 1 0.8960998 0.4252868 -0.1270303 0.3610501 -0.4005075 0.8981229 0.1815723 0 0.1913093 -0.1118304 0.9751383 0 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_R_Foot_matrix-output-array" count="30" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_R_Foot_matrix-interpolation">
|
||||
<Name_array id="node-Bip01_R_Foot_matrix-interpolation-array" count="30">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_R_Foot_matrix-interpolation-array" count="30" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_FannyPack_matrix-input">
|
||||
<float_array id="node-Bip01_FannyPack_matrix-input-array" count="30">34.66667 34.7 34.73333 34.76667 34.8 34.83333 34.86666 34.9 34.93333 34.96667 35 35.03333 35.06667 35.1 35.13334 35.16667 35.2 35.23333 35.26667 35.3 35.33333 35.36666 35.4 35.43333 35.46667 35.5 35.53333 35.56667 35.6 35.63334</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_FannyPack_matrix-input-array" count="30" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_FannyPack_matrix-output">
|
||||
<float_array id="node-Bip01_FannyPack_matrix-output-array" count="480">-0.8322091 -0.4771121 0.2824753 0.2028494 -0.4932149 0.8697606 0.01598542 -0.1504241 -0.2533128 -0.1260178 -0.9591415 -0.008565127 0 0 0 1 -0.8240975 -0.4911903 0.2821265 0.2028495 -0.5078815 0.8612786 0.01597779 -0.1504241 -0.2508377 -0.1301196 -0.9592441 -0.008565127 0 0 0 1 -0.8036939 -0.5241806 0.2816218 0.2028495 -0.5422968 0.8400358 0.01594269 -0.1504241 -0.2449293 -0.1399095 -0.959393 -0.008565068 0 0 0 1 -0.7774227 -0.5624076 0.281623 0.2028495 -0.5822662 0.8128424 0.01591384 -0.1504241 -0.2378652 -0.1516078 -0.9593932 -0.008565127 0 0 0 1 -0.7538468 -0.5933961 0.282128 0.2028495 -0.6147522 0.7885591 0.01594626 -0.1504241 -0.231937 -0.1614177 -0.9592442 -0.008565127 0 0 0 1 -0.7435455 -0.606092 0.2824754 0.2028495 -0.6280871 0.7779787 0.01598531 -0.1504242 -0.2294484 -0.1655333 -0.9591413 -0.008565127 0 0 0 1 -0.7538468 -0.593396 0.282128 0.2028495 -0.6147523 0.7885591 0.01594626 -0.1504241 -0.231937 -0.1614177 -0.9592443 -0.008565127 0 0 0 1 -0.7774227 -0.5624079 0.281623 0.2028495 -0.5822665 0.8128423 0.01591396 -0.1504241 -0.2378652 -0.1516077 -0.9593933 -0.008565127 0 0 0 1 -0.8036938 -0.5241808 0.2816218 0.2028494 -0.542297 0.8400356 0.01594281 -0.1504241 -0.2449293 -0.1399095 -0.959393 -0.008565127 0 0 0 1 -0.8240975 -0.4911903 0.2821266 0.2028495 -0.5078816 0.8612787 0.01597785 -0.1504241 -0.2508378 -0.1301196 -0.9592441 -0.008565127 0 0 0 1 -0.8322091 -0.4771122 0.2824754 0.2028495 -0.493215 0.8697608 0.01598542 -0.1504242 -0.2533128 -0.1260178 -0.9591415 -0.008565127 0 0 0 1 -0.8240975 -0.4911903 0.2821266 0.2028495 -0.5078815 0.8612787 0.01597779 -0.1504241 -0.2508378 -0.1301195 -0.9592441 -0.008565127 0 0 0 1 -0.803694 -0.5241806 0.2816219 0.2028495 -0.5422969 0.8400357 0.01594269 -0.1504242 -0.2449293 -0.1399095 -0.9593931 -0.008565127 0 0 0 1 -0.7774228 -0.5624076 0.281623 0.2028495 -0.5822663 0.8128425 0.0159139 -0.1504241 -0.2378652 -0.1516077 -0.9593931 -0.008565127 0 0 0 1 -0.7538468 -0.5933961 0.282128 0.2028495 -0.6147522 0.788559 0.01594632 -0.1504241 -0.2319371 -0.1614177 -0.9592443 -0.008565127 0 0 0 1 -0.7435457 -0.6060922 0.2824754 0.2028494 -0.6280872 0.7779788 0.01598531 -0.1504242 -0.2294484 -0.1655333 -0.9591414 -0.008565127 0 0 0 1 -0.7538468 -0.593396 0.282128 0.2028495 -0.6147524 0.7885591 0.01594626 -0.1504242 -0.231937 -0.1614177 -0.9592444 -0.008565127 0 0 0 1 -0.7774226 -0.5624077 0.281623 0.2028494 -0.5822663 0.8128423 0.01591396 -0.1504242 -0.2378652 -0.1516076 -0.9593932 -0.008565127 0 0 0 1 -0.8036938 -0.5241808 0.2816218 0.2028495 -0.542297 0.8400356 0.01594275 -0.1504242 -0.2449293 -0.1399095 -0.9593931 -0.008565127 0 0 0 1 -0.8240975 -0.4911903 0.2821266 0.2028495 -0.5078816 0.8612787 0.01597791 -0.1504242 -0.2508378 -0.1301195 -0.9592441 -0.008565127 0 0 0 1 -0.832209 -0.4771122 0.2824753 0.2028493 -0.4932149 0.8697607 0.01598554 -0.1504242 -0.2533127 -0.1260177 -0.9591415 -0.008565127 0 0 0 1 -0.8240975 -0.4911903 0.2821266 0.2028494 -0.5078817 0.8612788 0.01597785 -0.1504242 -0.2508378 -0.1301196 -0.9592443 -0.008565127 0 0 0 1 -0.8036939 -0.5241806 0.2816218 0.2028495 -0.5422968 0.8400357 0.01594269 -0.1504241 -0.2449293 -0.1399095 -0.9593932 -0.008565127 0 0 0 1 -0.7774229 -0.5624076 0.281623 0.2028495 -0.5822662 0.8128424 0.0159139 -0.1504241 -0.2378652 -0.1516078 -0.9593932 -0.008565127 0 0 0 1 -0.7538469 -0.5933962 0.282128 0.2028495 -0.6147524 0.7885591 0.01594626 -0.1504242 -0.2319371 -0.1614177 -0.9592443 -0.008565127 0 0 0 1 -0.7435455 -0.6060921 0.2824754 0.2028495 -0.6280871 0.7779788 0.01598531 -0.1504241 -0.2294484 -0.1655333 -0.9591413 -0.008565127 0 0 0 1 -0.7538469 -0.5933961 0.282128 0.2028496 -0.6147523 0.7885593 0.01594632 -0.1504242 -0.231937 -0.1614177 -0.9592443 -0.008565127 0 0 0 1 -0.7774227 -0.5624077 0.281623 0.2028495 -0.5822665 0.8128423 0.01591396 -0.1504241 -0.2378652 -0.1516077 -0.9593932 -0.008565127 0 0 0 1 -0.8036937 -0.5241808 0.2816218 0.2028494 -0.542297 0.8400356 0.01594275 -0.1504241 -0.2449293 -0.1399095 -0.959393 -0.008565127 0 0 0 1 -0.8240976 -0.4911903 0.2821266 0.2028495 -0.5078817 0.8612788 0.01597791 -0.1504242 -0.2508378 -0.1301195 -0.9592442 -0.008565127 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_FannyPack_matrix-output-array" count="30" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_FannyPack_matrix-interpolation">
|
||||
<Name_array id="node-Bip01_FannyPack_matrix-interpolation-array" count="30">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_FannyPack_matrix-interpolation-array" count="30" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<sampler id="node-Bip01_Pelvis_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-Bip01_Pelvis_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-Bip01_Pelvis_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-Bip01_Pelvis_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<sampler id="node-Bip01_Spine_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-Bip01_Spine_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-Bip01_Spine_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-Bip01_Spine_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<sampler id="node-Bip01_Spine2_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-Bip01_Spine2_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-Bip01_Spine2_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-Bip01_Spine2_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<sampler id="node-Bip01_Head_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-Bip01_Head_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-Bip01_Head_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-Bip01_Head_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<sampler id="node-Bip01_L_UpperArm_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-Bip01_L_UpperArm_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-Bip01_L_UpperArm_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-Bip01_L_UpperArm_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<sampler id="node-Bip01_L_Forearm_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-Bip01_L_Forearm_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-Bip01_L_Forearm_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-Bip01_L_Forearm_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<sampler id="node-Bip01_L_Hand_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-Bip01_L_Hand_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-Bip01_L_Hand_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-Bip01_L_Hand_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<sampler id="node-Bip01_R_UpperArm_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-Bip01_R_UpperArm_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-Bip01_R_UpperArm_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-Bip01_R_UpperArm_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<sampler id="node-Bip01_L_Thigh_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-Bip01_L_Thigh_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-Bip01_L_Thigh_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-Bip01_L_Thigh_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<sampler id="node-Bip01_L_Calf_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-Bip01_L_Calf_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-Bip01_L_Calf_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-Bip01_L_Calf_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<sampler id="node-Bip01_L_Foot_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-Bip01_L_Foot_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-Bip01_L_Foot_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-Bip01_L_Foot_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<sampler id="node-Bip01_R_Thigh_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-Bip01_R_Thigh_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-Bip01_R_Thigh_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-Bip01_R_Thigh_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<sampler id="node-Bip01_R_Calf_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-Bip01_R_Calf_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-Bip01_R_Calf_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-Bip01_R_Calf_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<sampler id="node-Bip01_R_Foot_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-Bip01_R_Foot_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-Bip01_R_Foot_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-Bip01_R_Foot_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<sampler id="node-Bip01_FannyPack_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-Bip01_FannyPack_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-Bip01_FannyPack_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-Bip01_FannyPack_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<channel source="#node-Bip01_Pelvis_matrix-sampler" target="node-Bip01_Pelvis/matrix"/>
|
||||
<channel source="#node-Bip01_Spine_matrix-sampler" target="node-Bip01_Spine/matrix"/>
|
||||
<channel source="#node-Bip01_Spine2_matrix-sampler" target="node-Bip01_Spine2/matrix"/>
|
||||
<channel source="#node-Bip01_Head_matrix-sampler" target="node-Bip01_Head/matrix"/>
|
||||
<channel source="#node-Bip01_L_UpperArm_matrix-sampler" target="node-Bip01_L_UpperArm/matrix"/>
|
||||
<channel source="#node-Bip01_L_Forearm_matrix-sampler" target="node-Bip01_L_Forearm/matrix"/>
|
||||
<channel source="#node-Bip01_L_Hand_matrix-sampler" target="node-Bip01_L_Hand/matrix"/>
|
||||
<channel source="#node-Bip01_R_UpperArm_matrix-sampler" target="node-Bip01_R_UpperArm/matrix"/>
|
||||
<channel source="#node-Bip01_L_Thigh_matrix-sampler" target="node-Bip01_L_Thigh/matrix"/>
|
||||
<channel source="#node-Bip01_L_Calf_matrix-sampler" target="node-Bip01_L_Calf/matrix"/>
|
||||
<channel source="#node-Bip01_L_Foot_matrix-sampler" target="node-Bip01_L_Foot/matrix"/>
|
||||
<channel source="#node-Bip01_R_Thigh_matrix-sampler" target="node-Bip01_R_Thigh/matrix"/>
|
||||
<channel source="#node-Bip01_R_Calf_matrix-sampler" target="node-Bip01_R_Calf/matrix"/>
|
||||
<channel source="#node-Bip01_R_Foot_matrix-sampler" target="node-Bip01_R_Foot/matrix"/>
|
||||
<channel source="#node-Bip01_FannyPack_matrix-sampler" target="node-Bip01_FannyPack/matrix"/>
|
||||
</animation>
|
||||
</library_animations>
|
||||
<scene>
|
||||
<instance_visual_scene url="#MaxScene"/>
|
||||
</scene>
|
||||
</COLLADA>
|
||||
|
|
@ -0,0 +1,34 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
// Copyright (c) 2012 GarageGames, LLC
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
// of this software and associated documentation files (the "Software"), to
|
||||
// deal in the Software without restriction, including without limitation the
|
||||
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||
// sell copies of the Software, and to permit persons to whom the Software is
|
||||
// furnished to do so, subject to the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included in
|
||||
// all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||
// IN THE SOFTWARE.
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
singleton TSShapeConstructor(PlayerAnim_Lurker_HeadDAE)
|
||||
{
|
||||
baseShape = "./PlayerAnim_Lurker_Head.dae";
|
||||
neverImport = "EnvironmentAmbientLight";
|
||||
loadLights = "0";
|
||||
};
|
||||
|
||||
function PlayerAnim_Lurker_HeadDAE::onLoad(%this)
|
||||
{
|
||||
%this.setSequenceCyclic("ambient", "false");
|
||||
%this.addSequence("ambient", "Head", "900", "910");
|
||||
}
|
||||
|
|
@ -0,0 +1,738 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<COLLADA xmlns="http://www.collada.org/2005/11/COLLADASchema" version="1.4.1">
|
||||
<asset>
|
||||
<contributor>
|
||||
<author>MattO</author>
|
||||
<authoring_tool>OpenCOLLADA for 3ds Max; Version: 1.3.0; Revision: 839M; Platform: x64; Configuration: Release_Max2012</authoring_tool>
|
||||
<source_data>file:///C:/Dropbox/Prj/GGStout/Lurker/SoldierTP_Lurker_Animation_Master.max</source_data>
|
||||
</contributor>
|
||||
<created>2011-09-29T23:38:25</created>
|
||||
<modified>2011-09-29T23:38:25</modified>
|
||||
<unit name="meter" meter="1"/>
|
||||
<up_axis>Z_UP</up_axis>
|
||||
</asset>
|
||||
<library_effects>
|
||||
<effect id="ShapeBounds">
|
||||
<profile_COMMON>
|
||||
<technique sid="common">
|
||||
<blinn>
|
||||
<emission>
|
||||
<color>0 0 0 1</color>
|
||||
</emission>
|
||||
<ambient>
|
||||
<color>0.1647059 1 0 1</color>
|
||||
</ambient>
|
||||
<diffuse>
|
||||
<color>0.1647059 1 0 1</color>
|
||||
</diffuse>
|
||||
<specular>
|
||||
<color>0.9 0.9 0.9 1</color>
|
||||
</specular>
|
||||
<shininess>
|
||||
<float>10</float>
|
||||
</shininess>
|
||||
<reflective>
|
||||
<color>0 0 0 1</color>
|
||||
</reflective>
|
||||
<transparent opaque="A_ONE">
|
||||
<color>1 1 1 1</color>
|
||||
</transparent>
|
||||
<transparency>
|
||||
<float>1</float>
|
||||
</transparency>
|
||||
</blinn>
|
||||
</technique>
|
||||
</profile_COMMON>
|
||||
<extra>
|
||||
<technique profile="OpenCOLLADA3dsMax">
|
||||
<extended_shader>
|
||||
<apply_reflection_dimming>0</apply_reflection_dimming>
|
||||
<dim_level>0</dim_level>
|
||||
<falloff_type>0</falloff_type>
|
||||
<index_of_refraction>1.5</index_of_refraction>
|
||||
<opacity_type>0</opacity_type>
|
||||
<reflection_level>3</reflection_level>
|
||||
<wire_size>1</wire_size>
|
||||
<wire_units>0</wire_units>
|
||||
</extended_shader>
|
||||
<shader>
|
||||
<ambient_diffuse_lock>1</ambient_diffuse_lock>
|
||||
<ambient_diffuse_texture_lock>1</ambient_diffuse_texture_lock>
|
||||
<diffuse_specular_lock>0</diffuse_specular_lock>
|
||||
<soften>0.1</soften>
|
||||
<use_self_illum_color>0</use_self_illum_color>
|
||||
</shader>
|
||||
</technique>
|
||||
</extra>
|
||||
</effect>
|
||||
</library_effects>
|
||||
<library_materials>
|
||||
<material id="ShapeBounds-material" name="ShapeBounds">
|
||||
<instance_effect url="#ShapeBounds"/>
|
||||
</material>
|
||||
</library_materials>
|
||||
<library_geometries>
|
||||
<geometry id="geom-Bounds" name="Bounds">
|
||||
<mesh>
|
||||
<source id="geom-Bounds-positions">
|
||||
<float_array id="geom-Bounds-positions-array" count="24">-0.425 -0.425 0 0.425 -0.425 0 -0.425 0.425 0 0.425 0.425 0 -0.425 -0.425 1.84 0.425 -0.425 1.84 -0.425 0.425 1.84 0.425 0.425 1.84</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#geom-Bounds-positions-array" count="8" stride="3">
|
||||
<param name="X" type="float"/>
|
||||
<param name="Y" type="float"/>
|
||||
<param name="Z" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="geom-Bounds-normals">
|
||||
<float_array id="geom-Bounds-normals-array" count="72">0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 1 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#geom-Bounds-normals-array" count="24" stride="3">
|
||||
<param name="X" type="float"/>
|
||||
<param name="Y" type="float"/>
|
||||
<param name="Z" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="geom-Bounds-map1">
|
||||
<float_array id="geom-Bounds-map1-array" count="36">0 0 0 1 0 0 0 1 0 1 1 0 0 0 0 1 0 0 0 1 0 1 1 0 0 0 0 1 0 0 0 1 0 1 1 0</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#geom-Bounds-map1-array" count="12" stride="3">
|
||||
<param name="S" type="float"/>
|
||||
<param name="T" type="float"/>
|
||||
<param name="P" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<vertices id="geom-Bounds-vertices">
|
||||
<input semantic="POSITION" source="#geom-Bounds-positions"/>
|
||||
</vertices>
|
||||
<triangles material="ShapeBounds" count="12">
|
||||
<input semantic="VERTEX" source="#geom-Bounds-vertices" offset="0"/>
|
||||
<input semantic="NORMAL" source="#geom-Bounds-normals" offset="1"/>
|
||||
<input semantic="TEXCOORD" source="#geom-Bounds-map1" offset="2" set="0"/>
|
||||
<p>0 0 9 2 1 11 3 2 10 3 2 10 1 3 8 0 0 9 4 4 8 5 5 9 7 6 11 7 6 11 6 7 10 4 4 8 0 8 4 1 9 5 5 10 7 5 10 7 4 11 6 0 8 4 1 12 0 3 13 1 7 14 3 7 14 3 5 15 2 1 12 0 3 16 4 2 17 5 6 18 7 6 18 7 7 19 6 3 16 4 2 20 0 0 21 1 4 22 3 4 22 3 6 23 2 2 20 0</p>
|
||||
</triangles>
|
||||
</mesh>
|
||||
<extra>
|
||||
<technique profile="OpenCOLLADA3dsMax">
|
||||
<max_box>
|
||||
<generateuvs>1</generateuvs>
|
||||
<height>1.84</height>
|
||||
<heightsegments>1</heightsegments>
|
||||
<length>0.85</length>
|
||||
<lengthsegments>1</lengthsegments>
|
||||
<width>0.85</width>
|
||||
<widthsegments>1</widthsegments>
|
||||
</max_box>
|
||||
</technique>
|
||||
</extra>
|
||||
</geometry>
|
||||
</library_geometries>
|
||||
<library_lights>
|
||||
<light id="EnvironmentAmbientLight" name="EnvironmentAmbientLight">
|
||||
<technique_common>
|
||||
<ambient>
|
||||
<color>0 0 0</color>
|
||||
</ambient>
|
||||
</technique_common>
|
||||
</light>
|
||||
</library_lights>
|
||||
<library_visual_scenes>
|
||||
<visual_scene id="MaxScene">
|
||||
<node name="EnvironmentAmbientLight">
|
||||
<instance_light url="#EnvironmentAmbientLight"/>
|
||||
</node>
|
||||
<node id="node-Bip01" name="Bip01">
|
||||
<matrix>0.7792376 -0.6267173 0.003750267 -8.10623e-5 0.6267178 0.7792454 0.001183462 0.009366653 -0.003664074 0.001428161 0.9999923 0.7990584 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_Pelvis" name="Bip01_Pelvis">
|
||||
<matrix sid="matrix">-0.009626727 0.991236 0.1317526 0 -0.1217413 -0.1319404 0.9837534 0 0.9925151 -0.0065694 0.1219445 0 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_Spine" name="Bip01_Spine">
|
||||
<matrix sid="matrix">0.9142389 -0.1596023 -0.3724171 0.1975123 0.1756539 0.9844078 0.009333353 0.02499345 0.3651207 -0.07394949 0.9280187 0.02780973 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_Spine1" name="Bip01_Spine1">
|
||||
<matrix>0.9850424 0.02363086 -0.1706849 0.1022274 -0.01319331 0.9979873 0.06202858 -1.00836e-4 0.1718071 -0.05884882 0.9833715 5.93066e-6 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_Spine2" name="Bip01_Spine2">
|
||||
<matrix>0.9369743 -0.3477308 -0.03409588 0.1269256 0.3490361 0.9270918 0.1366547 -1.58779e-4 -0.01590914 -0.1399428 0.9900318 2.40505e-5 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_Neck" name="Bip01_Neck">
|
||||
<matrix sid="matrix">0.9240022 -0.1965201 0.3280243 0.2150941 0.1639444 0.9785863 0.1244633 -5.39124e-5 -0.3454595 -0.06122665 0.9364341 3.36766e-6 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_Head" name="Bip01_Head">
|
||||
<matrix sid="matrix">0.7834033 0.3850439 -0.4878733 0.07051814 -0.4782695 -0.1278206 -0.8688614 -0.01395917 -0.3969103 0.9140038 0.08401962 -1.49012e-8 0 0 0 1</matrix>
|
||||
<node id="node-ALTEYE" name="ALTEYE">
|
||||
<matrix sid="matrix">0.009382491 -0.1786713 0.9838643 0.06454706 -0.004153793 0.9838922 0.1787161 0.2214611 -0.9999476 -0.005763882 0.008489079 0.04716256 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_L_Clavicle" name="Bip01_L_Clavicle">
|
||||
<matrix sid="matrix">-0.6318739 -0.2048873 0.7475004 -0.0421201 0.1231928 -0.9787166 -0.1641262 -0.02386767 0.7652183 -0.01162041 0.6436659 0.055884 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_UpperArm" name="Bip01_L_UpperArm">
|
||||
<matrix>0.8909864 0.428419 0.1503339 0.1824007 -0.3034132 0.3155105 0.899107 -2.98023e-8 0.3377627 -0.8467054 0.4111036 0 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Forearm" name="Bip01_L_Forearm">
|
||||
<matrix>0.3454525 0.9384363 0 0.284369 -0.9384362 0.3454526 -5.96046e-8 5.96046e-8 4.47035e-8 2.98023e-8 1 0 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Hand" name="Bip01_L_Hand">
|
||||
<matrix>0.9513536 0.2418793 -0.1908419 0.2810681 0.1384887 -0.8890261 -0.43641 -2.98023e-8 -0.2752219 0.3887509 -0.8792758 -5.96046e-8 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Finger0" name="Bip01_L_Finger0">
|
||||
<matrix>0.6413842 0.3141903 0.6999362 0.02119672 0.7352949 0.008702911 -0.6776915 -0.004734278 -0.2190156 0.94932 -0.2254408 -0.02572191 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Finger01" name="Bip01_L_Finger01">
|
||||
<matrix>0.997564 -0.06975643 -2.98023e-8 0.04982853 0.06975646 0.9975641 1.86265e-9 -2.98023e-8 0 6.33299e-8 0.9999999 5.96046e-8 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Finger02" name="Bip01_L_Finger02">
|
||||
<matrix>0.9203135 0.3911814 -2.98023e-8 0.05202222 -0.3911815 0.9203135 -2.23517e-8 0 0 -4.47035e-8 0.9999999 0 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_L_Finger1" name="Bip01_L_Finger1">
|
||||
<matrix>0.9592717 -0.2819768 -0.01693491 0.1199946 0.2798395 0.9567645 -0.07931914 -0.008367538 0.03856893 0.07134952 0.9967054 -0.0410139 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Finger11" name="Bip01_L_Finger11">
|
||||
<matrix>0.7001772 -0.7139691 -2.23517e-8 0.03644168 0.7139692 0.7001772 2.98023e-8 5.96046e-8 1.49012e-8 -1.49012e-8 1 -1.19209e-7 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Finger12" name="Bip01_L_Finger12">
|
||||
<matrix>0.8757257 -0.4828088 -1.49012e-8 0.03117537 0.4828088 0.8757259 1.86265e-8 -2.98023e-8 0 5.58794e-8 0.9999999 0 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_L_Finger2" name="Bip01_L_Finger2">
|
||||
<matrix>0.6611332 -0.7495596 -0.03260915 0.1229538 0.7489769 0.656822 0.08728346 -0.008802116 -0.04400572 -0.08212953 0.9956495 -0.01328254 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Finger21" name="Bip01_L_Finger21">
|
||||
<matrix>0.8156035 -0.5786111 1.86265e-9 0.03895521 0.5786111 0.8156034 3.81842e-8 5.96046e-8 5.58794e-9 -6.57747e-8 0.9999999 5.96046e-8 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Finger22" name="Bip01_L_Finger22">
|
||||
<matrix>0.9762961 -0.2164396 -1.86265e-9 0.03800535 0.2164396 0.9762962 2.42144e-8 0 0 5.54137e-8 1 5.96046e-8 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_L_Finger3" name="Bip01_L_Finger3">
|
||||
<matrix>0.412463 -0.9064789 -0.09038838 0.1211882 0.9061533 0.3980611 0.1429456 -0.001191199 -0.09359706 -0.1408656 0.9855945 0.01196867 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Finger31" name="Bip01_L_Finger31">
|
||||
<matrix>0.9381477 -0.3462351 -5.58794e-9 0.03155839 0.3462351 0.9381477 -2.79397e-9 -2.98023e-8 -7.45058e-9 -1.42027e-8 0.9999999 -5.96046e-8 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Finger32" name="Bip01_L_Finger32">
|
||||
<matrix>0.9636306 -0.2672384 3.72529e-9 0.03366578 0.2672384 0.9636304 -5.02914e-8 0 1.49012e-8 2.79397e-9 1 5.96046e-8 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_L_Finger4" name="Bip01_L_Finger4">
|
||||
<matrix>0.07120571 -0.9696807 0.233772 0.1136796 0.9750154 0.1171046 0.1887628 0.005147338 -0.2104155 0.2144902 0.953792 0.0388658 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Finger41" name="Bip01_L_Finger41">
|
||||
<matrix>0.9790111 -0.2038069 0 0.03661621 0.2038069 0.9790111 0 5.96046e-8 -1.49012e-8 0 0.9999999 -4.47035e-8 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Finger42" name="Bip01_L_Finger42">
|
||||
<matrix>0.9645151 0.2640274 0 0.01772642 -0.2640274 0.9645152 -1.49012e-8 -1.19209e-7 2.98023e-8 -2.8871e-8 0.9999999 0 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_R_Clavicle" name="Bip01_R_Clavicle">
|
||||
<matrix sid="matrix">0.05201046 0.04280636 -0.9977287 0.005102277 0.6023684 -0.7982134 -0.002845615 -0.01549792 -0.7965221 -0.6008521 -0.06730054 -0.07212149 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_UpperArm" name="Bip01_R_UpperArm">
|
||||
<matrix>0.3444382 0.9301254 -0.1273917 0.1824006 -0.8985945 0.3659246 0.2421301 0 0.2718272 0.03107467 0.9618442 0 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Forearm" name="Bip01_R_Forearm">
|
||||
<matrix>-0.07265081 0.9973576 2.98023e-8 0.2843689 -0.9973575 -0.0726508 7.45058e-9 1.49012e-8 1.49012e-8 -2.98023e-8 1 -1.19209e-7 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Hand" name="Bip01_R_Hand">
|
||||
<matrix>0.9247895 0.3771958 -0.04987458 0.2810681 0.2033487 -0.6007847 -0.7731152 5.96046e-8 -0.3215797 0.704827 -0.6323017 1.19209e-7 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Finger0" name="Bip01_R_Finger0">
|
||||
<matrix>0.5215105 0.269013 -0.8097276 0.02119675 0.7250717 0.3605265 0.5867639 -0.004734248 0.4497753 -0.893114 -0.00703546 0.02572179 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Finger01" name="Bip01_R_Finger01">
|
||||
<matrix>0.6423534 -0.7636236 0.06527573 0.04982853 0.7605615 0.6456373 0.06854747 0 -0.09448878 0.00561447 0.99551 0 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Finger02" name="Bip01_R_Finger02">
|
||||
<matrix>0.9505157 -0.3106764 -2.42144e-8 0.0520224 0.3106764 0.9505158 1.11759e-8 1.19209e-7 -2.79397e-8 5.21541e-8 0.9999999 2.98023e-8 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_R_Finger1" name="Bip01_R_Finger1">
|
||||
<matrix>0.9820225 -0.1733428 -0.07472673 0.1199946 0.1795577 0.9799358 0.08651492 -0.008367568 0.05823066 -0.09837736 0.9934441 0.04101396 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Finger11" name="Bip01_R_Finger11">
|
||||
<matrix>0.8240548 -0.5665103 3.72529e-9 0.03644174 0.5665103 0.8240548 -7.45058e-9 0 -1.30385e-8 2.98023e-8 1 -1.19209e-7 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Finger12" name="Bip01_R_Finger12">
|
||||
<matrix>0.8146397 -0.5796779 0.01831834 0.03117546 0.5799672 0.8142334 -0.0257305 0 1.49012e-8 0.0315851 0.999501 1.19209e-7 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_R_Finger2" name="Bip01_R_Finger2">
|
||||
<matrix>0.6754014 -0.7374504 -1.52119e-4 0.1229537 0.7368314 0.6748428 -0.04082685 -0.008802056 0.03021043 0.02746242 0.9991663 0.01328242 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Finger21" name="Bip01_R_Finger21">
|
||||
<matrix>0.5508358 -0.8338859 -0.03484871 0.03895518 0.832222 0.5519371 -0.05265062 5.96046e-8 0.0631389 -1.02445e-8 0.9980047 -1.19209e-7 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Finger22" name="Bip01_R_Finger22">
|
||||
<matrix>0.1984734 -0.9799246 0.01886612 0.03800538 0.9755272 0.199368 0.09272984 0 -0.09462957 0 0.9955125 1.19209e-7 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_R_Finger3" name="Bip01_R_Finger3">
|
||||
<matrix>0.7159052 -0.6949216 0.06755453 0.1211881 0.6883786 0.6863563 -0.234627 -0.001191258 0.1166809 0.2144739 0.9697352 -0.01196873 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Finger31" name="Bip01_R_Finger31">
|
||||
<matrix>0.4441952 -0.8949346 0.04222354 0.03155845 0.8909186 0.4461976 0.08468728 1.49012e-8 -0.09462957 2.07219e-8 0.9955127 0 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Finger32" name="Bip01_R_Finger32">
|
||||
<matrix>0.1993681 -0.9794358 -0.03095101 0.03366594 0.9799249 0.1992686 0.006297074 0 -2.23517e-8 -0.03158513 0.9995011 -1.19209e-7 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_R_Finger4" name="Bip01_R_Finger4">
|
||||
<matrix>0.5925791 -0.789795 -0.1583476 0.1136796 0.7783523 0.6120424 -0.1399001 0.005147427 0.2074078 -0.04034829 0.9774221 -0.0388658 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Finger41" name="Bip01_R_Finger41">
|
||||
<matrix>0.4202557 -0.9064696 0.04120626 0.03661621 0.9068531 0.4211511 0.01578783 -5.96046e-8 -0.03166523 0.030733 0.999026 0 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Finger42" name="Bip01_R_Finger42">
|
||||
<matrix>0.4024471 -0.9138246 -0.05441486 0.01772633 0.9154232 0.4021218 0.0172832 0 0.006087616 -0.05676817 0.9983689 0 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-MOUNT0" name="MOUNT0">
|
||||
<matrix>-6.18693e-7 1 8.84756e-9 0.109539 -1 -6.59553e-7 4.76837e-7 0.0251826 4.77768e-7 6.75209e-9 1 0.01321661 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_L_Pauldron_Upper" name="Bip01_L_Pauldron_Upper">
|
||||
<matrix>0.9726268 0.1182922 0.2000107 0.176903 0.1448453 -0.9816829 -0.1237685 -0.03908372 0.1817063 0.1493511 -0.9719449 0.2290199 0 0 0 1</matrix>
|
||||
</node>
|
||||
<node id="node-Bip01_R_Pauldron_Lower" name="Bip01_R_Pauldron_Lower">
|
||||
<matrix>-0.1156724 -0.9403759 -0.3198653 0.172906 0.909775 -0.2295502 0.3458564 -0.1133294 -0.3986599 -0.2509996 0.8820826 -0.2351095 0 0 0 1</matrix>
|
||||
</node>
|
||||
<node id="node-Bip01_L_Pauldron_Lower" name="Bip01_L_Pauldron_Lower">
|
||||
<matrix>-0.2099968 -0.7687201 0.6041283 0.1529202 0.4002343 -0.6313505 -0.6642359 -0.1054225 0.892028 0.1023054 0.4402497 0.2344801 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_L_Thigh" name="Bip01_L_Thigh">
|
||||
<matrix sid="matrix">-0.4488794 0.8921273 -0.05115139 -0.1485698 0.5193911 0.3070586 0.7974635 -4.51207e-4 0.7271453 0.3313972 -0.6011952 0.1658256 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Calf" name="Bip01_L_Calf">
|
||||
<matrix sid="matrix">0.4034076 0.9150205 3.72529e-9 0.4629987 -0.9150203 0.4034076 -3.72529e-9 0 8.56817e-8 -1.09896e-7 1 0 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Foot" name="Bip01_L_Foot">
|
||||
<matrix sid="matrix">0.9319396 -0.353629 -0.08021898 0.3610501 0.3615513 0.9231071 0.1309717 2.98023e-8 0.02773532 -0.1510608 0.9881354 7.45058e-9 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Toe0" name="Bip01_L_Toe0">
|
||||
<matrix>4.76837e-7 -1 1.39046e-6 0.1486307 1 4.7707e-7 2.30575e-8 0.1543275 -2.30466e-8 1.38953e-6 1 3.72529e-9 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_R_Thigh" name="Bip01_R_Thigh">
|
||||
<matrix sid="matrix">-0.9150401 0.3601362 0.1816684 -0.2416654 0.4023325 0.8470625 0.3472952 0.01840352 -0.02881089 0.3908803 -0.9199907 -0.07079414 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Calf" name="Bip01_R_Calf">
|
||||
<matrix>0.4440028 0.8960254 0 0.4629987 -0.8960253 0.4440028 1.49012e-8 7.45058e-9 1.49012e-8 -5.96046e-8 0.9999999 -2.98023e-8 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Foot" name="Bip01_R_Foot">
|
||||
<matrix sid="matrix">0.6470511 -0.7363819 0.1976526 0.3610501 0.7123461 0.6762879 0.1876114 0 -0.2718237 0.0194029 0.9621514 0 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Toe0" name="Bip01_R_Toe0">
|
||||
<matrix sid="matrix">-0.1805808 -0.9786911 0.09774577 0.1486307 0.9833315 -0.1817879 -0.003513592 0.1543275 0.0212077 0.095482 0.9952052 0 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_FannyPack" name="Bip01_FannyPack">
|
||||
<matrix>-0.9629918 -0.2062317 0.1735378 0.2299508 -0.2083319 0.9780385 0.006227079 -0.1378937 -0.1710108 -0.03015682 -0.9848076 0.01013964 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-EYE" name="EYE">
|
||||
<matrix>0.7792379 0.6267177 -0.003664111 0.05939458 -0.6267173 0.7792452 0.001428191 0.07235012 0.003750314 0.001183282 0.999992 0.7713364 0 0 0 1</matrix>
|
||||
<node id="node-CAM" name="CAM">
|
||||
<matrix>1 -6.03104e-8 3.55271e-15 4.84288e-8 6.03104e-8 1 -2.32831e-9 -0.104 -3.55271e-15 2.32832e-9 1 0.3005601 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bounds" name="Bounds">
|
||||
<matrix>0.9999915 0.001706907 0.003750479 0 -0.001711356 0.9999978 0.001183292 0.1035326 -0.003748452 -0.0011897 0.9999923 -8.93474e-5 0 0 0 1</matrix>
|
||||
<instance_geometry url="#geom-Bounds">
|
||||
<bind_material>
|
||||
<technique_common>
|
||||
<instance_material symbol="ShapeBounds" target="#ShapeBounds-material"/>
|
||||
</technique_common>
|
||||
</bind_material>
|
||||
</instance_geometry>
|
||||
</node>
|
||||
</visual_scene>
|
||||
</library_visual_scenes>
|
||||
<library_animations>
|
||||
<animation>
|
||||
<source id="node-Bip01_Pelvis_matrix-input">
|
||||
<float_array id="node-Bip01_Pelvis_matrix-input-array" count="11">30 30.03333 30.06667 30.1 30.13333 30.16667 30.2 30.23333 30.26667 30.3 30.33333</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_Pelvis_matrix-input-array" count="11" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_Pelvis_matrix-output">
|
||||
<float_array id="node-Bip01_Pelvis_matrix-output-array" count="176">-0.009626686 0.991236 0.1317526 0 -0.1217413 -0.1319403 0.9837534 0 0.9925152 -0.006569385 0.1219445 0 0 0 0 1 -0.009940087 0.9911621 0.1322827 0 -0.121455 -0.1325064 0.9837127 0 0.9925472 -0.00628817 0.1216987 0 0 0 0 1 -0.01055955 0.991015 0.1333325 0 -0.1208881 -0.1336271 0.983631 0 0.9926099 -0.005731523 0.121213 0 0 0 0 1 -0.01102226 0.9909041 0.1341182 0 -0.120464 -0.1344653 0.9835688 0 0.9926565 -0.005315244 0.1208504 0 0 0 0 1 -0.01087093 0.9909405 0.1338611 0 -0.1206028 -0.134191 0.9835892 0 0.9926413 -0.00545144 0.120969 0 0 0 0 1 -0.009626686 0.991236 0.1317526 0 -0.1217413 -0.1319403 0.9837534 0 0.9925152 -0.006569385 0.1219445 0 0 0 0 1 -0.009940087 0.9911621 0.1322827 0 -0.121455 -0.1325064 0.9837127 0 0.9925472 -0.00628817 0.1216987 0 0 0 0 1 -0.01055955 0.991015 0.1333325 0 -0.1208881 -0.1336271 0.983631 0 0.9926099 -0.005731523 0.121213 0 0 0 0 1 -0.01102226 0.9909041 0.1341182 0 -0.120464 -0.1344653 0.9835688 0 0.9926565 -0.005315244 0.1208504 0 0 0 0 1 -0.01087093 0.9909405 0.1338611 0 -0.1206028 -0.134191 0.9835892 0 0.9926413 -0.00545144 0.120969 0 0 0 0 1 -0.009626686 0.991236 0.1317526 0 -0.1217413 -0.1319403 0.9837534 0 0.9925152 -0.006569385 0.1219445 0 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_Pelvis_matrix-output-array" count="11" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_Pelvis_matrix-interpolation">
|
||||
<Name_array id="node-Bip01_Pelvis_matrix-interpolation-array" count="11">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_Pelvis_matrix-interpolation-array" count="11" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_Spine_matrix-input">
|
||||
<float_array id="node-Bip01_Spine_matrix-input-array" count="11">30 30.03333 30.06667 30.1 30.13333 30.16667 30.2 30.23333 30.26667 30.3 30.33333</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_Spine_matrix-input-array" count="11" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_Spine_matrix-output">
|
||||
<float_array id="node-Bip01_Spine_matrix-output-array" count="176">0.9142389 -0.1596023 -0.3724171 0.1975123 0.1756539 0.9844078 0.009333312 0.02499341 0.3651207 -0.07394945 0.9280187 0.02780967 0 0 0 1 0.9142667 -0.1599635 -0.3721936 0.1975103 0.1757783 0.9843913 0.008709371 0.02504748 0.364991 -0.07338643 0.9281142 0.02777481 0 0 0 1 0.9143216 -0.1606777 -0.3717509 0.1975063 0.1760243 0.9843575 0.007474303 0.02515447 0.3647348 -0.0722711 0.9283025 0.02770584 0 0 0 1 0.9143624 -0.1612111 -0.3714194 0.1975034 0.176208 0.9843311 0.006550192 0.02523446 0.3645437 -0.07143652 0.9284421 0.02765446 0 0 0 1 0.9143491 -0.1610366 -0.3715279 0.1975043 0.1761479 0.9843398 0.006852567 0.02520829 0.3646063 -0.07170969 0.9283965 0.02767127 0 0 0 1 0.9142389 -0.1596023 -0.3724171 0.1975123 0.1756539 0.9844078 0.009333312 0.02499341 0.3651207 -0.07394945 0.9280187 0.02780967 0 0 0 1 0.9142667 -0.1599635 -0.3721936 0.1975103 0.1757783 0.9843913 0.008709371 0.02504748 0.364991 -0.07338643 0.9281142 0.02777481 0 0 0 1 0.9143216 -0.1606777 -0.3717509 0.1975063 0.1760243 0.9843575 0.007474303 0.02515447 0.3647348 -0.0722711 0.9283025 0.02770584 0 0 0 1 0.9143624 -0.1612111 -0.3714194 0.1975034 0.176208 0.9843311 0.006550192 0.02523446 0.3645437 -0.07143652 0.9284421 0.02765446 0 0 0 1 0.9143491 -0.1610366 -0.3715279 0.1975043 0.1761479 0.9843398 0.006852567 0.02520829 0.3646063 -0.07170969 0.9283965 0.02767127 0 0 0 1 0.9142389 -0.1596023 -0.3724171 0.1975123 0.1756539 0.9844078 0.009333312 0.02499341 0.3651207 -0.07394945 0.9280187 0.02780967 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_Spine_matrix-output-array" count="11" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_Spine_matrix-interpolation">
|
||||
<Name_array id="node-Bip01_Spine_matrix-interpolation-array" count="11">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_Spine_matrix-interpolation-array" count="11" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_Neck_matrix-input">
|
||||
<float_array id="node-Bip01_Neck_matrix-input-array" count="11">30 30.03333 30.06667 30.1 30.13333 30.16667 30.2 30.23333 30.26667 30.3 30.33333</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_Neck_matrix-input-array" count="11" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_Neck_matrix-output">
|
||||
<float_array id="node-Bip01_Neck_matrix-output-array" count="176">0.9240022 -0.1965201 0.3280243 0.215094 0.1639443 0.9785863 0.1244633 -5.39124e-5 -0.3454595 -0.0612266 0.9364342 3.36766e-6 0 0 0 1 0.922951 -0.2011445 0.3281807 0.2150945 0.1688228 0.9777535 0.124488 -5.38528e-5 -0.3459197 -0.05949199 0.9363762 3.30806e-6 0 0 0 1 0.919895 -0.2142538 0.3284639 0.2150951 0.1826796 0.9752534 0.1245362 -5.37634e-5 -0.3470178 -0.0545566 0.9362704 2.98023e-6 0 0 0 1 0.9147948 -0.2348203 0.3286488 0.2150962 0.204469 0.9709132 0.12458 -5.34654e-5 -0.3483434 -0.04676663 0.9361997 2.6226e-6 0 0 0 1 0.9074384 -0.2619293 0.3285555 0.2150977 0.2332643 0.9644002 0.1245807 -5.31673e-5 -0.3494903 -0.03640908 0.9362324 1.99676e-6 0 0 0 1 0.8975148 -0.2947333 0.328024 0.2150996 0.2682157 0.9552851 0.124463 -5.26607e-5 -0.3500398 -0.02372628 0.9364344 1.3411e-6 0 0 0 1 0.8847678 -0.3316606 0.3273949 0.2151017 0.3076378 0.9433537 0.12427 -5.20051e-5 -0.3500645 -0.00923115 0.9366803 5.36442e-7 0 0 0 1 0.8702139 -0.3683165 0.3272171 0.2151037 0.3467906 0.9296849 0.1241874 -5.126e-5 -0.3499488 0.00540626 0.9367533 -3.27826e-7 0 0 0 1 0.8560244 -0.4000017 0.3274466 0.2151054 0.3806545 0.9163322 0.1242489 -5.04851e-5 -0.3497496 0.0182839 0.9366649 -1.01328e-6 0 0 0 1 0.8450884 -0.4223195 0.3278295 0.2151066 0.4045215 0.9060302 0.1243872 -4.99189e-5 -0.3495543 0.02749586 0.9365127 -1.46031e-6 0 0 0 1 0.8407082 -0.4308254 0.3280237 0.2151072 0.4136219 0.9019015 0.124463 -4.97103e-5 -0.3494668 0.03104072 0.9364345 -1.69873e-6 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_Neck_matrix-output-array" count="11" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_Neck_matrix-interpolation">
|
||||
<Name_array id="node-Bip01_Neck_matrix-interpolation-array" count="11">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_Neck_matrix-interpolation-array" count="11" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_Head_matrix-input">
|
||||
<float_array id="node-Bip01_Head_matrix-input-array" count="11">30 30.03333 30.06667 30.1 30.13333 30.16667 30.2 30.23333 30.26667 30.3 30.33333</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_Head_matrix-input-array" count="11" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_Head_matrix-output">
|
||||
<float_array id="node-Bip01_Head_matrix-output-array" count="176">0.7834033 0.3850439 -0.4878733 0.07051813 -0.4782695 -0.1278206 -0.8688614 -0.01395916 -0.3969103 0.9140039 0.0840196 0 0 0 0 1 0.7954688 0.3602588 -0.487281 0.07051825 -0.4870653 -0.09832787 -0.8678128 -0.01395916 -0.3605505 0.9276559 0.09725272 0 0 0 0 1 0.8217783 0.2892664 -0.4909226 0.07051801 -0.506124 -0.02523058 -0.8620915 -0.0139591 -0.2617604 0.956916 0.1256706 0 0 0 0 1 0.8439205 0.1758909 -0.5068141 0.07051825 -0.5239952 0.06772851 -0.8490242 -0.01395916 -0.1150097 0.982077 0.1493235 0 0 0 0 1 0.8439793 0.03406953 -0.5352928 0.07051825 -0.5332893 0.1602085 -0.8306236 -0.01395916 0.05745947 0.986495 0.1533815 0 0 0 0 1 0.8154672 -0.1078992 -0.5686572 0.07051837 -0.5332087 0.2421659 -0.8105826 -0.01395922 0.2251705 0.9642165 0.1399455 0 0 0 0 1 0.7689089 -0.2194447 -0.600519 0.07051813 -0.5262407 0.3162121 -0.7893544 -0.0139591 0.3631111 0.9229592 0.1276575 0 0 0 0 1 0.7182499 -0.2956584 -0.629844 0.07051825 -0.51414 0.3843951 -0.7667468 -0.01395916 0.4688041 0.8745436 0.1240819 0 0 0 0 1 0.674475 -0.3404016 -0.6551414 0.07051813 -0.4995915 0.4429175 -0.744468 -0.01395916 0.5435916 0.829428 0.128675 0 0 0 0 1 0.6454684 -0.3604786 -0.6733689 0.07051825 -0.4871209 0.4847577 -0.7264455 -0.01395922 0.5882889 0.7969099 0.1372991 0 0 0 0 1 0.6354455 -0.3649967 -0.680431 0.07051813 -0.4819583 0.5009902 -0.7188357 -0.01395916 0.6032621 0.7847204 0.1424388 0 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_Head_matrix-output-array" count="11" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_Head_matrix-interpolation">
|
||||
<Name_array id="node-Bip01_Head_matrix-interpolation-array" count="11">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_Head_matrix-interpolation-array" count="11" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-ALTEYE_matrix-input">
|
||||
<float_array id="node-ALTEYE_matrix-input-array" count="11">30 30.03333 30.06667 30.1 30.13333 30.16667 30.2 30.23333 30.26667 30.3 30.33333</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-ALTEYE_matrix-input-array" count="11" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-ALTEYE_matrix-output">
|
||||
<float_array id="node-ALTEYE_matrix-output-array" count="176">0.009382486 -0.1786713 0.9838643 0.06454706 -0.004153788 0.9838922 0.1787161 0.221461 -0.9999476 -0.005763828 0.008489072 0.04716253 0 0 0 1 0.009036362 -0.1398865 0.9901266 0.06454694 0.009752631 0.9901322 0.1397984 0.221461 -0.9999117 0.008392632 0.0103113 0.04716253 0 0 0 1 0.01032269 -0.03601723 0.9992983 0.06454682 0.0386309 0.9986197 0.03559386 0.2214611 -0.9992004 0.03823596 0.01169967 0.04716253 0 0 0 1 0.015114 0.1141872 0.9933446 0.06454694 0.06066054 0.9915235 -0.1149007 0.2214611 -0.9980441 0.06199294 0.008059144 0.04716253 0 0 0 1 0.02113324 0.2845444 0.9584302 0.06454694 0.06144315 0.9564627 -0.2853149 0.2214611 -0.9978871 0.06491827 0.002729713 0.04716253 0 0 0 1 0.0252242 0.4437668 0.8957877 0.06454694 0.04412788 0.8947049 -0.4444732 0.2214611 -0.9987075 0.0507403 0.002985596 0.04716253 0 0 0 1 0.02923458 0.5695947 0.8214062 0.06454694 0.02707672 0.8210045 -0.5702799 0.221461 -0.999206 0.03891247 0.008578836 0.04716253 0 0 0 1 0.03431767 0.6621831 0.7485566 0.06454694 0.01807385 0.7484638 -0.6629299 0.2214611 -0.9992477 0.0362792 0.01371723 0.04716253 0 0 0 1 0.04068213 0.7253538 0.6871737 0.06454694 0.01746159 0.6871219 -0.7263328 0.2214611 -0.9990199 0.04154753 0.01528757 0.04716253 0 0 0 1 0.04727184 0.7620773 0.6457588 0.06454694 0.02211397 0.6455243 -0.7634197 0.221461 -0.9986373 0.05036813 0.01366245 0.04716253 0 0 0 1 0.05066829 0.7742123 0.6308952 0.06454694 0.02562248 0.630491 -0.775774 0.2214612 -0.998387 0.05547189 0.0121085 0.04716253 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-ALTEYE_matrix-output-array" count="11" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-ALTEYE_matrix-interpolation">
|
||||
<Name_array id="node-ALTEYE_matrix-interpolation-array" count="11">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-ALTEYE_matrix-interpolation-array" count="11" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_Clavicle_matrix-input">
|
||||
<float_array id="node-Bip01_L_Clavicle_matrix-input-array" count="11">30 30.03333 30.06667 30.1 30.13333 30.16667 30.2 30.23333 30.26667 30.3 30.33333</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_Clavicle_matrix-input-array" count="11" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_Clavicle_matrix-output">
|
||||
<float_array id="node-Bip01_L_Clavicle_matrix-output-array" count="176">-0.6318739 -0.2048873 0.7475004 -0.04212009 0.1231927 -0.9787166 -0.1641262 -0.02386766 0.7652183 -0.0116204 0.6436659 0.055884 0 0 0 1 -0.6313779 -0.2097849 0.7465605 -0.04224884 0.126359 -0.9776781 -0.1678656 -0.02365612 0.7651115 -0.01165205 0.6437924 0.05587691 0 0 0 1 -0.6297501 -0.2236711 0.7438991 -0.04259908 0.1353359 -0.9745942 -0.178466 -0.02305209 0.7649175 -0.01171272 0.6440215 0.05586409 0 0 0 1 -0.6267134 -0.2454581 0.7395814 -0.04311776 0.149416 -0.9693358 -0.1950973 -0.02209162 0.7647909 -0.01176476 0.6441711 0.05585533 0 0 0 1 -0.6219195 -0.2741777 0.7335142 -0.04375183 0.1679694 -0.9616071 -0.2170209 -0.02080088 0.7648546 -0.0117616 0.6440955 0.05585902 0 0 0 1 -0.6149641 -0.3089352 0.7255194 -0.04444813 0.1904204 -0.9510121 -0.243549 -0.01920002 0.7652186 -0.0116201 0.6436658 0.055884 0 0 0 1 -0.6060123 -0.3480662 0.7152616 -0.04516828 0.2157083 -0.9374006 -0.2734043 -0.01734387 0.7656494 -0.01139855 0.6431569 0.05591535 0 0 0 1 -0.5963155 -0.3869117 0.7033544 -0.04584395 0.2408361 -0.9220476 -0.3030288 -0.01544177 0.7657714 -0.01130753 0.6430135 0.05592507 0 0 0 1 -0.5872645 -0.4204964 0.6915947 -0.04639589 0.2625929 -0.907223 -0.3286209 -0.01374632 0.7656144 -0.01137948 0.6431992 0.05591398 0 0 0 1 -0.5805009 -0.4441593 0.6824524 -0.04676628 0.2779482 -0.8958736 -0.3466345 -0.01252162 0.765352 -0.01153522 0.6435085 0.05589419 0 0 0 1 -0.5778346 -0.4531803 0.6787746 -0.04690337 0.2838091 -0.8913432 -0.3534964 -0.01204764 0.7652187 -0.01161998 0.6436654 0.05588406 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_Clavicle_matrix-output-array" count="11" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_Clavicle_matrix-interpolation">
|
||||
<Name_array id="node-Bip01_L_Clavicle_matrix-interpolation-array" count="11">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_Clavicle_matrix-interpolation-array" count="11" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_R_Clavicle_matrix-input">
|
||||
<float_array id="node-Bip01_R_Clavicle_matrix-input-array" count="11">30 30.03333 30.06667 30.1 30.13333 30.16667 30.2 30.23333 30.26667 30.3 30.33333</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_R_Clavicle_matrix-input-array" count="11" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_R_Clavicle_matrix-output">
|
||||
<float_array id="node-Bip01_R_Clavicle_matrix-output-array" count="176">0.05201041 0.04280632 -0.9977287 0.005102276 0.6023684 -0.7982134 -0.002845585 -0.01549792 -0.7965222 -0.6008521 -0.06730049 -0.07212144 0 0 0 1 0.05516111 0.03890907 -0.9977191 0.005036592 0.6020972 -0.79842 0.002151548 -0.01552349 -0.7965151 -0.6008425 -0.06746864 -0.07212054 0 0 0 1 0.06396633 0.02772861 -0.9975666 0.00483632 0.601245 -0.7988975 0.01634687 -0.01559412 -0.7965003 -0.6008277 -0.06777417 -0.07211893 0 0 0 1 0.07758867 0.009936034 -0.9969359 0.004499077 0.5996621 -0.7993169 0.0387035 -0.01569849 -0.7964832 -0.6008276 -0.06797623 -0.0721181 0 0 0 1 0.09531128 -0.0138967 -0.9953506 0.004021644 0.5971085 -0.7992444 0.06833583 -0.0158236 -0.7964779 -0.6008454 -0.06787914 -0.07211881 0 0 0 1 0.1164777 -0.04326921 -0.9922504 0.003400444 0.5932835 -0.7981884 0.1044509 -0.0159564 -0.7965223 -0.600852 -0.0673002 -0.0721215 0 0 0 1 0.1403904 -0.07671254 -0.9871199 0.002683758 0.5879697 -0.7956969 0.1454587 -0.01608163 -0.7966066 -0.6008175 -0.06660354 -0.0721237 0 0 0 1 0.1646557 -0.1100001 -0.9801983 0.001992225 0.5815852 -0.7918058 0.1865541 -0.01618039 -0.7966475 -0.6007859 -0.06640082 -0.07212394 0 0 0 1 0.1860946 -0.1388424 -0.9726723 0.001413106 0.5751192 -0.7872561 0.222409 -0.0162453 -0.7966221 -0.6007916 -0.06665313 -0.07212299 0 0 0 1 0.2014708 -0.1591985 -0.9664705 0.001016139 0.570004 -0.7833649 0.2478604 -0.01627981 -0.7965582 -0.6008287 -0.06708133 -0.07212197 0 0 0 1 0.2073931 -0.1669672 -0.9639035 8.67009e-4 0.5679265 -0.7817282 0.2576055 -0.01629042 -0.7965223 -0.600852 -0.06729978 -0.07212144 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_R_Clavicle_matrix-output-array" count="11" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_R_Clavicle_matrix-interpolation">
|
||||
<Name_array id="node-Bip01_R_Clavicle_matrix-interpolation-array" count="11">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_R_Clavicle_matrix-interpolation-array" count="11" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_Thigh_matrix-input">
|
||||
<float_array id="node-Bip01_L_Thigh_matrix-input-array" count="11">30 30.03333 30.06667 30.1 30.13333 30.16667 30.2 30.23333 30.26667 30.3 30.33333</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_Thigh_matrix-input-array" count="11" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_Thigh_matrix-output">
|
||||
<float_array id="node-Bip01_L_Thigh_matrix-output-array" count="176">-0.4488794 0.8921273 -0.05115139 -0.1485697 0.5193911 0.3070586 0.7974635 -4.51207e-4 0.7271453 0.3313972 -0.6011952 0.1658256 0 0 0 1 -0.4488638 0.8921317 -0.0512107 -0.1485863 0.5193445 0.307079 0.797486 -3.79413e-4 0.7271881 0.3313665 -0.6011603 0.1658377 0 0 0 1 -0.4488235 0.8921452 -0.05132949 -0.1486188 0.5192548 0.3071143 0.7975308 -2.37241e-4 0.7272774 0.3312973 -0.6010906 0.1658617 0 0 0 1 -0.4487913 0.8921563 -0.0514186 -0.1486433 0.5191879 0.3071399 0.7975646 -1.30817e-4 0.7273446 0.3312441 -0.6010383 0.1658796 0 0 0 1 -0.448799 0.8921539 -0.05138969 -0.1486352 0.5192106 0.30713 0.7975535 -1.65656e-4 0.7273238 0.3312591 -0.6010554 0.1658737 0 0 0 1 -0.4488794 0.8921273 -0.05115139 -0.1485697 0.5193911 0.3070586 0.7974635 -4.51207e-4 0.7271453 0.3313972 -0.6011952 0.1658256 0 0 0 1 -0.4488638 0.8921317 -0.0512107 -0.1485863 0.5193445 0.307079 0.797486 -3.79413e-4 0.7271881 0.3313665 -0.6011603 0.1658377 0 0 0 1 -0.4488235 0.8921452 -0.05132949 -0.1486188 0.5192548 0.3071143 0.7975308 -2.37241e-4 0.7272774 0.3312973 -0.6010906 0.1658617 0 0 0 1 -0.4487913 0.8921563 -0.0514186 -0.1486433 0.5191879 0.3071399 0.7975646 -1.30817e-4 0.7273446 0.3312441 -0.6010383 0.1658796 0 0 0 1 -0.448799 0.8921539 -0.05138969 -0.1486352 0.5192106 0.30713 0.7975535 -1.65656e-4 0.7273238 0.3312591 -0.6010554 0.1658737 0 0 0 1 -0.4488794 0.8921273 -0.05115139 -0.1485697 0.5193911 0.3070586 0.7974635 -4.51207e-4 0.7271453 0.3313972 -0.6011952 0.1658256 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_Thigh_matrix-output-array" count="11" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_Thigh_matrix-interpolation">
|
||||
<Name_array id="node-Bip01_L_Thigh_matrix-interpolation-array" count="11">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_Thigh_matrix-interpolation-array" count="11" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_Calf_matrix-input">
|
||||
<float_array id="node-Bip01_L_Calf_matrix-input-array" count="11">30 30.03333 30.06667 30.1 30.13333 30.16667 30.2 30.23333 30.26667 30.3 30.33333</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_Calf_matrix-input-array" count="11" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_Calf_matrix-output">
|
||||
<float_array id="node-Bip01_L_Calf_matrix-output-array" count="176">0.4034076 0.9150205 0 0.4629988 -0.9150203 0.4034076 0 0 0 0 1 0 0 0 0 1 0.4032508 0.9150896 0 0.4629988 -0.9150894 0.4032508 0 0 0 0 1 0 0 0 0 1 0.4029316 0.91523 0 0.4629987 -0.9152301 0.4029316 0 0 0 0 1 0 0 0 0 1 0.4026908 0.9153362 0 0.4629987 -0.9153358 0.402691 0 0 0 0 1 0 0 0 0 1 0.4027671 0.9153025 0 0.4629987 -0.9153025 0.4027672 0 0 0 0 1 0 0 0 0 1 0.4034076 0.9150205 0 0.4629988 -0.9150203 0.4034076 0 0 0 0 1 0 0 0 0 1 0.4032508 0.9150896 0 0.4629988 -0.9150894 0.4032508 0 0 0 0 1 0 0 0 0 1 0.4029316 0.91523 0 0.4629987 -0.9152301 0.4029316 0 0 0 0 1 0 0 0 0 1 0.4026908 0.9153362 0 0.4629987 -0.9153358 0.402691 0 0 0 0 1 0 0 0 0 1 0.4027671 0.9153025 0 0.4629987 -0.9153025 0.4027672 0 0 0 0 1 0 0 0 0 1 0.4034076 0.9150205 0 0.4629988 -0.9150203 0.4034076 0 0 0 0 1 0 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_Calf_matrix-output-array" count="11" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_Calf_matrix-interpolation">
|
||||
<Name_array id="node-Bip01_L_Calf_matrix-interpolation-array" count="11">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_Calf_matrix-interpolation-array" count="11" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_Foot_matrix-input">
|
||||
<float_array id="node-Bip01_L_Foot_matrix-input-array" count="11">30 30.03333 30.06667 30.1 30.13333 30.16667 30.2 30.23333 30.26667 30.3 30.33333</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_Foot_matrix-input-array" count="11" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_Foot_matrix-output">
|
||||
<float_array id="node-Bip01_L_Foot_matrix-output-array" count="176">0.9319396 -0.353629 -0.08021897 0.3610501 0.3615512 0.9231072 0.1309716 0 0.02773529 -0.1510608 0.9881354 0 0 0 0 1 0.9318812 -0.3537655 -0.08029621 0.3610502 0.3616966 0.9230585 0.1309152 0 0.02780473 -0.1510403 0.9881365 0 0 0 0 1 0.9317653 -0.3540354 -0.08045011 0.3610501 0.3619841 0.9229617 0.1308026 0 0.02794355 -0.150999 0.9881389 0 0 0 0 1 0.9316788 -0.3542371 -0.08056527 0.3610502 0.3621988 0.9228892 0.1307181 0 0.02804762 -0.150968 0.9881407 0 0 0 0 1 0.9317073 -0.3541707 -0.08052772 0.3610502 0.3621282 0.922913 0.1307457 0 0.02801376 -0.1509782 0.9881402 0 0 0 0 1 0.9319396 -0.353629 -0.08021897 0.3610501 0.3615512 0.9231072 0.1309716 0 0.02773529 -0.1510608 0.9881354 0 0 0 0 1 0.9318812 -0.3537655 -0.08029621 0.3610502 0.3616966 0.9230585 0.1309152 0 0.02780473 -0.1510403 0.9881365 0 0 0 0 1 0.9317653 -0.3540354 -0.08045011 0.3610501 0.3619841 0.9229617 0.1308026 0 0.02794355 -0.150999 0.9881389 0 0 0 0 1 0.9316788 -0.3542371 -0.08056527 0.3610502 0.3621988 0.9228892 0.1307181 0 0.02804762 -0.150968 0.9881407 0 0 0 0 1 0.9317073 -0.3541707 -0.08052772 0.3610502 0.3621282 0.922913 0.1307457 0 0.02801376 -0.1509782 0.9881402 0 0 0 0 1 0.9319396 -0.353629 -0.08021897 0.3610501 0.3615512 0.9231072 0.1309716 0 0.02773529 -0.1510608 0.9881354 0 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_Foot_matrix-output-array" count="11" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_Foot_matrix-interpolation">
|
||||
<Name_array id="node-Bip01_L_Foot_matrix-interpolation-array" count="11">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_Foot_matrix-interpolation-array" count="11" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_R_Thigh_matrix-input">
|
||||
<float_array id="node-Bip01_R_Thigh_matrix-input-array" count="11">30 30.03333 30.06667 30.1 30.13333 30.16667 30.2 30.23333 30.26667 30.3 30.33333</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_R_Thigh_matrix-input-array" count="11" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_R_Thigh_matrix-output">
|
||||
<float_array id="node-Bip01_R_Thigh_matrix-output-array" count="176">-0.9150401 0.3601362 0.1816684 -0.2416654 0.4023325 0.8470625 0.3472952 0.01840347 -0.02881085 0.3908802 -0.9199907 -0.0707941 0 0 0 1 -0.914996 0.360243 0.1816793 -0.2416488 0.4024358 0.847011 0.3473009 0.0183317 -0.02877163 0.3908932 -0.9199862 -0.07080632 0 0 0 1 -0.9149113 0.3604468 0.181702 -0.2416161 0.4026338 0.8469123 0.3473123 0.01818954 -0.02869808 0.3909193 -0.9199776 -0.07083034 0 0 0 1 -0.9148467 0.3606022 0.1817186 -0.2415917 0.4027844 0.8468371 0.3473209 0.01808309 -0.0286414 0.3909388 -0.9199711 -0.0708481 0 0 0 1 -0.9148665 0.3605548 0.1817126 -0.2415997 0.402738 0.8468602 0.3473183 0.0181179 -0.02865791 0.3909325 -0.9199731 -0.07084232 0 0 0 1 -0.91504 0.3601365 0.1816684 -0.2416654 0.4023328 0.8470619 0.3472959 0.01840347 -0.0288105 0.3908809 -0.9199903 -0.0707941 0 0 0 1 -0.9149904 0.3602537 0.1816859 -0.2416488 0.4024464 0.8470303 0.3472415 0.0183317 -0.0287984 0.3908416 -0.9200074 -0.07080632 0 0 0 1 -0.9148957 0.3604781 0.1817178 -0.2416161 0.4026641 0.8469607 0.3471589 0.01818954 -0.02876466 0.3907855 -0.9200323 -0.07083034 0 0 0 1 -0.9148215 0.3606532 0.181744 -0.2415917 0.4028338 0.8469161 0.3470707 0.01808309 -0.02874982 0.3907204 -0.9200604 -0.0708481 0 0 0 1 -0.9148382 0.3606093 0.1817469 -0.2415997 0.402792 0.8469649 0.3470002 0.0181179 -0.02880167 0.3906552 -0.9200866 -0.07084232 0 0 0 1 -0.9150111 0.360192 0.1817037 -0.2416654 0.4023877 0.8471695 0.34697 0.01840347 -0.02895808 0.3905968 -0.9201064 -0.0707941 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_R_Thigh_matrix-output-array" count="11" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_R_Thigh_matrix-interpolation">
|
||||
<Name_array id="node-Bip01_R_Thigh_matrix-interpolation-array" count="11">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_R_Thigh_matrix-interpolation-array" count="11" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_R_Foot_matrix-input">
|
||||
<float_array id="node-Bip01_R_Foot_matrix-input-array" count="11">30 30.03333 30.06667 30.1 30.13333 30.16667 30.2 30.23333 30.26667 30.3 30.33333</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_R_Foot_matrix-input-array" count="11" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_R_Foot_matrix-output">
|
||||
<float_array id="node-Bip01_R_Foot_matrix-output-array" count="176">0.6470511 -0.736382 0.1976526 0.3610501 0.7123461 0.676288 0.1876114 0 -0.2718237 0.01940286 0.9621514 0 0 0 0 1 0.6476436 -0.7358469 0.1977047 0.3610501 0.7118542 0.6768704 0.1873765 0 -0.271701 0.01938378 0.9621866 0 0 0 0 1 0.64765 -0.7358242 0.197768 0.3610501 0.7118254 0.6768944 0.1873992 0 -0.271761 0.01940709 0.9621691 0 0 0 0 1 0.6477679 -0.7357069 0.1978191 0.3610501 0.7117124 0.6770216 0.1873687 0 -0.2717763 0.01941889 0.9621645 0 0 0 0 1 0.6478805 -0.7356109 0.1978074 0.3610502 0.7116269 0.6771264 0.1873155 0 -0.2717321 0.01940709 0.9621773 0 0 0 0 1 0.6470518 -0.7363812 0.1976535 0.3610501 0.7123451 0.6762887 0.1876112 0 -0.2718242 0.01940339 0.9621514 0 0 0 0 1 0.6471424 -0.7363018 0.1976517 0.3610501 0.7122539 0.6763766 0.1876399 0 -0.2718466 0.01934844 0.9621462 0 0 0 0 1 0.6473165 -0.7361459 0.1976626 0.3610501 0.712081 0.6765486 0.1876763 0 -0.2718855 0.01926577 0.9621368 0 0 0 0 1 0.6478139 -0.7357073 0.1976669 0.3610501 0.7116516 0.6770288 0.1875739 0 -0.2718258 0.01915699 0.9621558 0 0 0 0 1 0.647422 -0.7360711 0.1975966 0.3610501 0.7119687 0.676635 0.1877922 0 -0.2719292 0.01910185 0.9621276 0 0 0 0 1 0.6471069 -0.7363861 0.1974554 0.3610501 0.7122699 0.6762933 0.1878807 0 -0.2718905 0.01906263 0.9621395 0 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_R_Foot_matrix-output-array" count="11" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_R_Foot_matrix-interpolation">
|
||||
<Name_array id="node-Bip01_R_Foot_matrix-interpolation-array" count="11">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_R_Foot_matrix-interpolation-array" count="11" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_R_Toe0_matrix-input">
|
||||
<float_array id="node-Bip01_R_Toe0_matrix-input-array" count="11">30 30.03333 30.06667 30.1 30.13333 30.16667 30.2 30.23333 30.26667 30.3 30.33333</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_R_Toe0_matrix-input-array" count="11" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_R_Toe0_matrix-output">
|
||||
<float_array id="node-Bip01_R_Toe0_matrix-output-array" count="176">-0.1805807 -0.9786911 0.09774577 0.1486306 0.9833315 -0.1817879 -0.003513574 0.1543275 0.02120769 0.09548199 0.9952052 0 0 0 0 1 -0.1812215 -0.9785575 0.09789842 0.1486306 0.9832164 -0.1824138 -0.003293335 0.1543275 0.02108073 0.09565854 0.9951911 0 0 0 0 1 -0.1810338 -0.9785969 0.09785342 0.1486306 0.9832503 -0.1822305 -0.003357887 0.1543274 0.02111792 0.0956065 0.9951952 0 0 0 0 1 -0.1810337 -0.9785967 0.09785324 0.1486306 0.9832501 -0.1822304 -0.003358006 0.1543274 0.02111804 0.09560632 0.9951952 0 0 0 0 1 -0.1812216 -0.9785575 0.09789788 0.1486306 0.9832163 -0.1824139 -0.003293573 0.1543275 0.02108091 0.09565788 0.995191 0 0 0 0 1 -0.1805801 -0.9786913 0.09774529 0.1486306 0.9833316 -0.1817873 -0.003513813 0.1543275 0.0212078 0.09548151 0.9952052 0 0 0 0 1 -0.18058 -0.9786914 0.09774529 0.1486306 0.9833316 -0.1817871 -0.003513872 0.1543275 0.02120786 0.09548151 0.9952052 0 0 0 0 1 -0.1805803 -0.9786912 0.09774541 0.1486306 0.9833316 -0.1817873 -0.003513634 0.1543274 0.02120763 0.09548169 0.9952052 0 0 0 0 1 -0.181034 -0.9785966 0.09785348 0.1486306 0.98325 -0.1822307 -0.003357827 0.1543275 0.02111792 0.09560656 0.9951951 0 0 0 0 1 -0.1805806 -0.9786912 0.09774577 0.1486306 0.9833315 -0.1817877 -0.003513574 0.1543274 0.02120769 0.09548199 0.9952052 0 0 0 0 1 -0.1805807 -0.9786911 0.09774577 0.1486306 0.9833315 -0.1817879 -0.003513574 0.1543275 0.02120769 0.09548199 0.9952052 0 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_R_Toe0_matrix-output-array" count="11" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_R_Toe0_matrix-interpolation">
|
||||
<Name_array id="node-Bip01_R_Toe0_matrix-interpolation-array" count="11">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_R_Toe0_matrix-interpolation-array" count="11" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<sampler id="node-Bip01_Pelvis_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-Bip01_Pelvis_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-Bip01_Pelvis_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-Bip01_Pelvis_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<sampler id="node-Bip01_Spine_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-Bip01_Spine_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-Bip01_Spine_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-Bip01_Spine_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<sampler id="node-Bip01_Neck_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-Bip01_Neck_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-Bip01_Neck_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-Bip01_Neck_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<sampler id="node-Bip01_Head_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-Bip01_Head_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-Bip01_Head_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-Bip01_Head_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<sampler id="node-ALTEYE_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-ALTEYE_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-ALTEYE_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-ALTEYE_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<sampler id="node-Bip01_L_Clavicle_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-Bip01_L_Clavicle_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-Bip01_L_Clavicle_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-Bip01_L_Clavicle_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<sampler id="node-Bip01_R_Clavicle_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-Bip01_R_Clavicle_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-Bip01_R_Clavicle_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-Bip01_R_Clavicle_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<sampler id="node-Bip01_L_Thigh_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-Bip01_L_Thigh_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-Bip01_L_Thigh_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-Bip01_L_Thigh_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<sampler id="node-Bip01_L_Calf_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-Bip01_L_Calf_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-Bip01_L_Calf_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-Bip01_L_Calf_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<sampler id="node-Bip01_L_Foot_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-Bip01_L_Foot_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-Bip01_L_Foot_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-Bip01_L_Foot_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<sampler id="node-Bip01_R_Thigh_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-Bip01_R_Thigh_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-Bip01_R_Thigh_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-Bip01_R_Thigh_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<sampler id="node-Bip01_R_Foot_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-Bip01_R_Foot_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-Bip01_R_Foot_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-Bip01_R_Foot_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<sampler id="node-Bip01_R_Toe0_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-Bip01_R_Toe0_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-Bip01_R_Toe0_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-Bip01_R_Toe0_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<channel source="#node-Bip01_Pelvis_matrix-sampler" target="node-Bip01_Pelvis/matrix"/>
|
||||
<channel source="#node-Bip01_Spine_matrix-sampler" target="node-Bip01_Spine/matrix"/>
|
||||
<channel source="#node-Bip01_Neck_matrix-sampler" target="node-Bip01_Neck/matrix"/>
|
||||
<channel source="#node-Bip01_Head_matrix-sampler" target="node-Bip01_Head/matrix"/>
|
||||
<channel source="#node-ALTEYE_matrix-sampler" target="node-ALTEYE/matrix"/>
|
||||
<channel source="#node-Bip01_L_Clavicle_matrix-sampler" target="node-Bip01_L_Clavicle/matrix"/>
|
||||
<channel source="#node-Bip01_R_Clavicle_matrix-sampler" target="node-Bip01_R_Clavicle/matrix"/>
|
||||
<channel source="#node-Bip01_L_Thigh_matrix-sampler" target="node-Bip01_L_Thigh/matrix"/>
|
||||
<channel source="#node-Bip01_L_Calf_matrix-sampler" target="node-Bip01_L_Calf/matrix"/>
|
||||
<channel source="#node-Bip01_L_Foot_matrix-sampler" target="node-Bip01_L_Foot/matrix"/>
|
||||
<channel source="#node-Bip01_R_Thigh_matrix-sampler" target="node-Bip01_R_Thigh/matrix"/>
|
||||
<channel source="#node-Bip01_R_Foot_matrix-sampler" target="node-Bip01_R_Foot/matrix"/>
|
||||
<channel source="#node-Bip01_R_Toe0_matrix-sampler" target="node-Bip01_R_Toe0/matrix"/>
|
||||
</animation>
|
||||
</library_animations>
|
||||
<scene>
|
||||
<instance_visual_scene url="#MaxScene"/>
|
||||
</scene>
|
||||
</COLLADA>
|
||||
|
|
@ -0,0 +1,34 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
// Copyright (c) 2012 GarageGames, LLC
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
// of this software and associated documentation files (the "Software"), to
|
||||
// deal in the Software without restriction, including without limitation the
|
||||
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||
// sell copies of the Software, and to permit persons to whom the Software is
|
||||
// furnished to do so, subject to the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included in
|
||||
// all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||
// IN THE SOFTWARE.
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
singleton TSShapeConstructor(PlayerAnim_Lurker_JumpDAE)
|
||||
{
|
||||
baseShape = "./PlayerAnim_Lurker_Jump.dae";
|
||||
neverImport = "EnvironmentAmbientLight";
|
||||
loadLights = "0";
|
||||
};
|
||||
|
||||
function PlayerAnim_Lurker_JumpDAE::onLoad(%this)
|
||||
{
|
||||
%this.setSequenceCyclic("ambient", "false");
|
||||
%this.addSequence("ambient", "Jump", "1000", "1010");
|
||||
}
|
||||
|
|
@ -0,0 +1,948 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<COLLADA xmlns="http://www.collada.org/2005/11/COLLADASchema" version="1.4.1">
|
||||
<asset>
|
||||
<contributor>
|
||||
<author>MattO</author>
|
||||
<authoring_tool>OpenCOLLADA for 3ds Max; Version: 1.3.0; Revision: 839M; Platform: x64; Configuration: Release_Max2012</authoring_tool>
|
||||
<source_data>file:///C:/Dropbox/Prj/GGStout/Lurker/SoldierTP_Lurker_Animation_Master.max</source_data>
|
||||
</contributor>
|
||||
<created>2011-09-29T23:38:24</created>
|
||||
<modified>2011-09-29T23:38:24</modified>
|
||||
<unit name="meter" meter="1"/>
|
||||
<up_axis>Z_UP</up_axis>
|
||||
</asset>
|
||||
<library_effects>
|
||||
<effect id="ShapeBounds">
|
||||
<profile_COMMON>
|
||||
<technique sid="common">
|
||||
<blinn>
|
||||
<emission>
|
||||
<color>0 0 0 1</color>
|
||||
</emission>
|
||||
<ambient>
|
||||
<color>0.1647059 1 0 1</color>
|
||||
</ambient>
|
||||
<diffuse>
|
||||
<color>0.1647059 1 0 1</color>
|
||||
</diffuse>
|
||||
<specular>
|
||||
<color>0.9 0.9 0.9 1</color>
|
||||
</specular>
|
||||
<shininess>
|
||||
<float>10</float>
|
||||
</shininess>
|
||||
<reflective>
|
||||
<color>0 0 0 1</color>
|
||||
</reflective>
|
||||
<transparent opaque="A_ONE">
|
||||
<color>1 1 1 1</color>
|
||||
</transparent>
|
||||
<transparency>
|
||||
<float>1</float>
|
||||
</transparency>
|
||||
</blinn>
|
||||
</technique>
|
||||
</profile_COMMON>
|
||||
<extra>
|
||||
<technique profile="OpenCOLLADA3dsMax">
|
||||
<extended_shader>
|
||||
<apply_reflection_dimming>0</apply_reflection_dimming>
|
||||
<dim_level>0</dim_level>
|
||||
<falloff_type>0</falloff_type>
|
||||
<index_of_refraction>1.5</index_of_refraction>
|
||||
<opacity_type>0</opacity_type>
|
||||
<reflection_level>3</reflection_level>
|
||||
<wire_size>1</wire_size>
|
||||
<wire_units>0</wire_units>
|
||||
</extended_shader>
|
||||
<shader>
|
||||
<ambient_diffuse_lock>1</ambient_diffuse_lock>
|
||||
<ambient_diffuse_texture_lock>1</ambient_diffuse_texture_lock>
|
||||
<diffuse_specular_lock>0</diffuse_specular_lock>
|
||||
<soften>0.1</soften>
|
||||
<use_self_illum_color>0</use_self_illum_color>
|
||||
</shader>
|
||||
</technique>
|
||||
</extra>
|
||||
</effect>
|
||||
</library_effects>
|
||||
<library_materials>
|
||||
<material id="ShapeBounds-material" name="ShapeBounds">
|
||||
<instance_effect url="#ShapeBounds"/>
|
||||
</material>
|
||||
</library_materials>
|
||||
<library_geometries>
|
||||
<geometry id="geom-Bounds" name="Bounds">
|
||||
<mesh>
|
||||
<source id="geom-Bounds-positions">
|
||||
<float_array id="geom-Bounds-positions-array" count="24">-0.425 -0.425 0 0.425 -0.425 0 -0.425 0.425 0 0.425 0.425 0 -0.425 -0.425 1.84 0.425 -0.425 1.84 -0.425 0.425 1.84 0.425 0.425 1.84</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#geom-Bounds-positions-array" count="8" stride="3">
|
||||
<param name="X" type="float"/>
|
||||
<param name="Y" type="float"/>
|
||||
<param name="Z" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="geom-Bounds-normals">
|
||||
<float_array id="geom-Bounds-normals-array" count="72">0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 1 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#geom-Bounds-normals-array" count="24" stride="3">
|
||||
<param name="X" type="float"/>
|
||||
<param name="Y" type="float"/>
|
||||
<param name="Z" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="geom-Bounds-map1">
|
||||
<float_array id="geom-Bounds-map1-array" count="36">0 0 0 1 0 0 0 1 0 1 1 0 0 0 0 1 0 0 0 1 0 1 1 0 0 0 0 1 0 0 0 1 0 1 1 0</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#geom-Bounds-map1-array" count="12" stride="3">
|
||||
<param name="S" type="float"/>
|
||||
<param name="T" type="float"/>
|
||||
<param name="P" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<vertices id="geom-Bounds-vertices">
|
||||
<input semantic="POSITION" source="#geom-Bounds-positions"/>
|
||||
</vertices>
|
||||
<triangles material="ShapeBounds" count="12">
|
||||
<input semantic="VERTEX" source="#geom-Bounds-vertices" offset="0"/>
|
||||
<input semantic="NORMAL" source="#geom-Bounds-normals" offset="1"/>
|
||||
<input semantic="TEXCOORD" source="#geom-Bounds-map1" offset="2" set="0"/>
|
||||
<p>0 0 9 2 1 11 3 2 10 3 2 10 1 3 8 0 0 9 4 4 8 5 5 9 7 6 11 7 6 11 6 7 10 4 4 8 0 8 4 1 9 5 5 10 7 5 10 7 4 11 6 0 8 4 1 12 0 3 13 1 7 14 3 7 14 3 5 15 2 1 12 0 3 16 4 2 17 5 6 18 7 6 18 7 7 19 6 3 16 4 2 20 0 0 21 1 4 22 3 4 22 3 6 23 2 2 20 0</p>
|
||||
</triangles>
|
||||
</mesh>
|
||||
<extra>
|
||||
<technique profile="OpenCOLLADA3dsMax">
|
||||
<max_box>
|
||||
<generateuvs>1</generateuvs>
|
||||
<height>1.84</height>
|
||||
<heightsegments>1</heightsegments>
|
||||
<length>0.85</length>
|
||||
<lengthsegments>1</lengthsegments>
|
||||
<width>0.85</width>
|
||||
<widthsegments>1</widthsegments>
|
||||
</max_box>
|
||||
</technique>
|
||||
</extra>
|
||||
</geometry>
|
||||
</library_geometries>
|
||||
<library_lights>
|
||||
<light id="EnvironmentAmbientLight" name="EnvironmentAmbientLight">
|
||||
<technique_common>
|
||||
<ambient>
|
||||
<color>0 0 0</color>
|
||||
</ambient>
|
||||
</technique_common>
|
||||
</light>
|
||||
</library_lights>
|
||||
<library_visual_scenes>
|
||||
<visual_scene id="MaxScene">
|
||||
<node name="EnvironmentAmbientLight">
|
||||
<instance_light url="#EnvironmentAmbientLight"/>
|
||||
</node>
|
||||
<node id="node-Bip01" name="Bip01">
|
||||
<matrix sid="matrix">0.7792376 -0.6267173 0.003750267 -8.10623e-5 0.6267178 0.7792454 0.001183462 0.009366653 -0.003664074 0.001428161 0.9999923 0.6175663 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_Pelvis" name="Bip01_Pelvis">
|
||||
<matrix sid="matrix">-0.009626727 0.991236 0.1317526 0 -0.1217413 -0.1319404 0.9837534 0 0.9925151 -0.0065694 0.1219445 0 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_Spine" name="Bip01_Spine">
|
||||
<matrix sid="matrix">0.9142389 -0.1596023 -0.3724171 0.1975124 0.1756539 0.9844078 0.009333353 0.02499346 0.3651207 -0.07394949 0.9280187 0.02780974 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_Spine1" name="Bip01_Spine1">
|
||||
<matrix>0.9850424 0.02363086 -0.1706849 0.1022273 -0.01319331 0.9979873 0.06202858 -1.00829e-4 0.1718071 -0.05884882 0.9833715 5.93066e-6 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_Spine2" name="Bip01_Spine2">
|
||||
<matrix sid="matrix">0.8835585 -0.3774273 -0.2772602 0.1269308 0.4144815 0.9058138 0.08778688 -1.55188e-4 0.2180129 -0.1924841 0.956776 3.29018e-5 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_Neck" name="Bip01_Neck">
|
||||
<matrix>0.8407079 -0.4308255 0.3280237 0.2151071 0.413622 0.9019013 0.1244631 -4.97103e-5 -0.3494668 0.03104064 0.9364345 -1.78814e-6 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_Head" name="Bip01_Head">
|
||||
<matrix sid="matrix">0.9551592 0.1250558 -0.2683872 0.0705182 -0.2814226 0.1016556 -0.954184 -0.01395917 -0.09204334 0.986928 0.132291 -5.96046e-8 0 0 0 1</matrix>
|
||||
<node id="node-ALTEYE" name="ALTEYE">
|
||||
<matrix sid="matrix">0.4506336 0.3792481 0.8081467 0.06454706 0.04412826 0.8947042 -0.4444743 0.2214611 -0.8916178 0.2359567 0.3864482 0.04716256 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_L_Clavicle" name="Bip01_L_Clavicle">
|
||||
<matrix>-0.5778345 -0.4531803 0.6787746 -0.04690343 0.2838089 -0.891343 -0.3534966 -0.01204759 0.7652187 -0.01162018 0.6436654 0.05588406 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_UpperArm" name="Bip01_L_UpperArm">
|
||||
<matrix sid="matrix">0.5020983 0.8647767 -0.007648319 0.1824006 -0.2608427 0.1598681 0.9520522 2.98023e-8 0.8245354 -0.4760286 0.3058401 1.19209e-7 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Forearm" name="Bip01_L_Forearm">
|
||||
<matrix sid="matrix">0.7422016 0.6701767 -7.45058e-9 0.2843688 -0.6701766 0.7422017 0 0 0 -2.98023e-8 1 -5.96046e-8 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Hand" name="Bip01_L_Hand">
|
||||
<matrix sid="matrix">0.9275936 0.1944826 -0.3189771 0.2810681 0.03266771 -0.8927687 -0.4493288 2.98023e-8 -0.3721595 0.4063743 -0.83448 5.96046e-8 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Finger0" name="Bip01_L_Finger0">
|
||||
<matrix>0.6413841 0.3141902 0.6999363 0.02119678 0.7352949 0.0087029 -0.6776913 -0.004734099 -0.2190155 0.9493201 -0.2254407 -0.02572179 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Finger01" name="Bip01_L_Finger01">
|
||||
<matrix>0.9975641 -0.0697564 0 0.04982853 0.06975644 0.9975641 -1.67638e-8 0 -2.98023e-8 2.6077e-8 1 5.96046e-8 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Finger02" name="Bip01_L_Finger02">
|
||||
<matrix>0.9203136 0.3911814 2.98023e-8 0.05202246 -0.3911815 0.9203136 -3.72529e-9 -2.98023e-8 0 2.98023e-8 1 -5.96046e-8 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_L_Finger1" name="Bip01_L_Finger1">
|
||||
<matrix>0.9592717 -0.2819768 -0.016935 0.1199947 0.2798395 0.9567645 -0.07931919 -0.008367479 0.03856891 0.07134954 0.9967054 -0.0410139 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Finger11" name="Bip01_L_Finger11">
|
||||
<matrix>0.7001772 -0.7139691 -2.98023e-8 0.03644168 0.7139691 0.7001772 -1.49012e-8 -1.49012e-7 2.98023e-8 -3.72529e-9 0.9999999 -1.19209e-7 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Finger12" name="Bip01_L_Finger12">
|
||||
<matrix>0.8757257 -0.4828088 0 0.03117561 0.4828088 0.8757259 5.96046e-8 5.96046e-8 0 2.6077e-8 0.9999999 1.19209e-7 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_L_Finger2" name="Bip01_L_Finger2">
|
||||
<matrix>0.6611331 -0.7495597 -0.03260928 0.1229538 0.7489769 0.656822 0.08728343 -0.008802056 -0.0440057 -0.08212955 0.9956495 -0.0132823 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Finger21" name="Bip01_L_Finger21">
|
||||
<matrix>0.8156036 -0.5786111 7.45058e-9 0.03895521 0.5786111 0.8156036 -9.31323e-9 5.96046e-8 2.6077e-8 5.37839e-8 1 -5.96046e-8 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Finger22" name="Bip01_L_Finger22">
|
||||
<matrix>0.9762959 -0.2164396 1.30385e-8 0.03800523 0.2164396 0.9762961 -8.14907e-10 0 -1.49012e-8 -6.0536e-8 1 0 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_L_Finger3" name="Bip01_L_Finger3">
|
||||
<matrix>0.412463 -0.906479 -0.09038854 0.1211882 0.9061533 0.3980612 0.1429456 -0.001191258 -0.09359702 -0.1408657 0.9855945 0.01196867 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Finger31" name="Bip01_L_Finger31">
|
||||
<matrix>0.9381478 -0.3462352 5.58794e-9 0.03155863 0.3462352 0.9381478 -1.90921e-8 5.96046e-8 7.45058e-9 1.13156e-7 1 -5.96046e-8 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Finger32" name="Bip01_L_Finger32">
|
||||
<matrix>0.9636304 -0.2672383 0 0.0336659 0.2672384 0.9636303 -3.23635e-8 -5.96046e-8 5.58794e-9 -3.72529e-8 0.9999999 0 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_L_Finger4" name="Bip01_L_Finger4">
|
||||
<matrix>0.07120569 -0.9696807 0.2337718 0.1136796 0.9750155 0.1171046 0.1887628 0.005147278 -0.2104155 0.2144902 0.9537921 0.03886586 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Finger41" name="Bip01_L_Finger41">
|
||||
<matrix>0.9790111 -0.2038069 0 0.03661633 0.2038069 0.9790111 2.42144e-8 -5.96046e-8 -1.49012e-8 -1.49012e-8 1 -5.96046e-8 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Finger42" name="Bip01_L_Finger42">
|
||||
<matrix>0.9645152 0.2640275 0 0.0177263 -0.2640274 0.9645151 -1.49012e-8 0 -1.49012e-8 -1.39698e-7 1 -1.49012e-8 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_R_Clavicle" name="Bip01_R_Clavicle">
|
||||
<matrix>0.2073931 -0.1669672 -0.9639035 8.6695e-4 0.5679265 -0.7817279 0.2576057 -0.01629037 -0.7965221 -0.6008521 -0.06729981 -0.07212144 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_UpperArm" name="Bip01_R_UpperArm">
|
||||
<matrix sid="matrix">0.2061442 0.9350806 -0.2883207 0.1824007 -0.9591451 0.2514378 0.1296905 -5.96046e-8 0.1937658 0.2498064 0.9487104 0 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Forearm" name="Bip01_R_Forearm">
|
||||
<matrix>-0.07265081 0.9973576 2.98023e-8 0.2843689 -0.9973575 -0.0726508 7.45058e-9 0 1.49012e-8 -2.98023e-8 1 -5.96046e-8 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Hand" name="Bip01_R_Hand">
|
||||
<matrix>0.9247895 0.3771958 -0.04987458 0.2810681 0.2033487 -0.6007847 -0.7731152 0 -0.3215797 0.704827 -0.6323017 5.96046e-8 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Finger0" name="Bip01_R_Finger0">
|
||||
<matrix>0.5215105 0.269013 -0.8097276 0.02119672 0.7250717 0.3605265 0.5867639 -0.004734278 0.4497753 -0.893114 -0.00703546 0.02572185 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Finger01" name="Bip01_R_Finger01">
|
||||
<matrix>0.6423534 -0.7636236 0.06527573 0.04982859 0.7605615 0.6456373 0.06854747 0 -0.09448878 0.00561447 0.99551 -2.98023e-8 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Finger02" name="Bip01_R_Finger02">
|
||||
<matrix>0.9505157 -0.3106764 -2.42144e-8 0.0520224 0.3106764 0.9505158 1.11759e-8 5.96046e-8 -2.79397e-8 5.21541e-8 0.9999999 5.96046e-8 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_R_Finger1" name="Bip01_R_Finger1">
|
||||
<matrix>0.9820225 -0.1733428 -0.07472673 0.1199947 0.1795577 0.9799358 0.08651492 -0.008367568 0.05823066 -0.09837736 0.9934441 0.0410139 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Finger11" name="Bip01_R_Finger11">
|
||||
<matrix>0.8240548 -0.5665103 3.72529e-9 0.03644171 0.5665103 0.8240548 -7.45058e-9 0 -1.30385e-8 2.98023e-8 1 5.96046e-8 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Finger12" name="Bip01_R_Finger12">
|
||||
<matrix>0.8146397 -0.5796779 0.01831834 0.03117546 0.5799672 0.8142334 -0.0257305 -5.96046e-8 1.49012e-8 0.0315851 0.999501 -5.96046e-8 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_R_Finger2" name="Bip01_R_Finger2">
|
||||
<matrix>0.6754014 -0.7374504 -1.52119e-4 0.1229538 0.7368314 0.6748428 -0.04082685 -0.008802027 0.03021043 0.02746242 0.9991663 0.01328236 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Finger21" name="Bip01_R_Finger21">
|
||||
<matrix>0.5508358 -0.8338859 -0.03484871 0.03895517 0.832222 0.5519371 -0.05265062 0 0.0631389 -1.02445e-8 0.9980047 0 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Finger22" name="Bip01_R_Finger22">
|
||||
<matrix>0.1984734 -0.9799246 0.01886612 0.03800538 0.9755272 0.199368 0.09272984 2.98023e-8 -0.09462957 0 0.9955125 1.19209e-7 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_R_Finger3" name="Bip01_R_Finger3">
|
||||
<matrix>0.7159052 -0.6949216 0.06755453 0.1211881 0.6883786 0.6863563 -0.234627 -0.001191229 0.1166809 0.2144739 0.9697352 -0.01196867 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Finger31" name="Bip01_R_Finger31">
|
||||
<matrix>0.4441952 -0.8949346 0.04222354 0.03155848 0.8909186 0.4461976 0.08468728 0 -0.09462957 2.07219e-8 0.9955127 1.19209e-7 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Finger32" name="Bip01_R_Finger32">
|
||||
<matrix>0.1993681 -0.9794358 -0.03095101 0.03366594 0.9799249 0.1992686 0.006297074 0 -2.23517e-8 -0.03158513 0.9995011 0 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_R_Finger4" name="Bip01_R_Finger4">
|
||||
<matrix>0.5925791 -0.789795 -0.1583476 0.1136796 0.7783523 0.6120424 -0.1399001 0.005147427 0.2074078 -0.04034829 0.9774221 -0.0388658 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Finger41" name="Bip01_R_Finger41">
|
||||
<matrix>0.4202557 -0.9064696 0.04120626 0.03661621 0.9068531 0.4211511 0.01578783 0 -0.03166523 0.030733 0.999026 5.96046e-8 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Finger42" name="Bip01_R_Finger42">
|
||||
<matrix>0.4024471 -0.9138246 -0.05441486 0.0177263 0.9154232 0.4021218 0.0172832 0 0.006087616 -0.05676817 0.9983689 0 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-MOUNT0" name="MOUNT0">
|
||||
<matrix>-6.18693e-7 1 8.84756e-9 0.109539 -1 -6.59553e-7 4.76837e-7 0.0251826 4.77768e-7 6.75209e-9 1 0.01321656 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_L_Pauldron_Upper" name="Bip01_L_Pauldron_Upper">
|
||||
<matrix>0.9726267 0.1182924 0.2000107 0.176903 0.1448456 -0.9816831 -0.1237685 -0.03908369 0.1817062 0.1493513 -0.9719452 0.2290198 0 0 0 1</matrix>
|
||||
</node>
|
||||
<node id="node-Bip01_R_Pauldron_Lower" name="Bip01_R_Pauldron_Lower">
|
||||
<matrix>-0.1156725 -0.9403759 -0.3198653 0.172906 0.9097751 -0.2295502 0.3458564 -0.1133294 -0.3986599 -0.2509994 0.8820827 -0.2351095 0 0 0 1</matrix>
|
||||
</node>
|
||||
<node id="node-Bip01_L_Pauldron_Lower" name="Bip01_L_Pauldron_Lower">
|
||||
<matrix>-0.2099972 -0.7687201 0.6041284 0.1529202 0.4002344 -0.6313509 -0.6642357 -0.1054225 0.8920281 0.1023053 0.4402498 0.2344801 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_L_Thigh" name="Bip01_L_Thigh">
|
||||
<matrix sid="matrix">-0.1205261 0.9908452 -0.06082314 -0.1485698 0.585079 0.1203991 0.8019892 -4.512e-4 0.8019701 0.06107429 -0.5942339 0.1658256 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Calf" name="Bip01_L_Calf">
|
||||
<matrix sid="matrix">-0.2179086 0.9759693 -7.45058e-9 0.4629988 -0.9759691 -0.2179086 3.72529e-9 0 -6.33299e-8 -1.67638e-8 1 1.49012e-8 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Foot" name="Bip01_L_Foot">
|
||||
<matrix sid="matrix">0.7892729 -0.6020769 -0.1206311 0.3610501 0.6127691 0.7849334 0.09161679 0 0.03952703 -0.1462296 0.9884608 1.49012e-8 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Toe0" name="Bip01_L_Toe0">
|
||||
<matrix sid="matrix">7.15023e-7 -1 1.38953e-6 0.1486307 1 7.15256e-7 -3.53975e-8 0.1543275 3.56122e-8 1.38953e-6 1 -3.72529e-9 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_R_Thigh" name="Bip01_R_Thigh">
|
||||
<matrix sid="matrix">-0.848152 0.4434448 0.2898186 -0.2416654 0.5259895 0.770021 0.3611133 0.01840352 -0.06303255 0.4587205 -0.8863423 -0.07079414 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Calf" name="Bip01_R_Calf">
|
||||
<matrix sid="matrix">-0.121563 0.9925838 -2.98023e-8 0.4629987 -0.9925836 -0.121563 0 -2.23517e-8 1.00583e-7 0 0.9999999 -5.96046e-8 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Foot" name="Bip01_R_Foot">
|
||||
<matrix sid="matrix">0.2348041 -0.9602214 0.1511365 0.3610501 0.8971235 0.2739291 0.3466014 -2.23517e-8 -0.3742147 0.05420472 0.9257565 0 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Toe0" name="Bip01_R_Toe0">
|
||||
<matrix sid="matrix">-0.1805802 -0.9786913 0.09774534 0.1486307 0.9833317 -0.1817874 -0.003513791 0.1543275 0.02120773 0.09548156 0.9952055 -2.98023e-8 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_FannyPack" name="Bip01_FannyPack">
|
||||
<matrix sid="matrix">-0.9629918 -0.2062317 0.1735378 0.2299508 -0.2083319 0.9780385 0.006227079 -0.1378937 -0.1710108 -0.03015682 -0.9848076 0.01013964 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-EYE" name="EYE">
|
||||
<matrix sid="matrix">0.7792379 0.6267177 -0.003664111 0.05872957 -0.6267173 0.7792452 0.001428191 0.07260932 0.003750314 0.001183282 0.999992 0.9528271 0 0 0 1</matrix>
|
||||
<node id="node-CAM" name="CAM">
|
||||
<matrix>1 -6.03104e-8 3.55271e-15 4.84288e-8 6.03104e-8 1 -2.32831e-9 -0.104 -3.55271e-15 2.32832e-9 1 0.3005601 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bounds" name="Bounds">
|
||||
<matrix>0.9999915 0.001706907 0.003750479 0 -0.001711356 0.9999978 0.001183292 0.1035326 -0.003748452 -0.0011897 0.9999923 -8.93474e-5 0 0 0 1</matrix>
|
||||
<instance_geometry url="#geom-Bounds">
|
||||
<bind_material>
|
||||
<technique_common>
|
||||
<instance_material symbol="ShapeBounds" target="#ShapeBounds-material"/>
|
||||
</technique_common>
|
||||
</bind_material>
|
||||
</instance_geometry>
|
||||
</node>
|
||||
</visual_scene>
|
||||
</library_visual_scenes>
|
||||
<library_animations>
|
||||
<animation>
|
||||
<source id="node-Bip01_matrix-input">
|
||||
<float_array id="node-Bip01_matrix-input-array" count="11">33.33333 33.36666 33.4 33.43333 33.46667 33.5 33.53333 33.56667 33.6 33.63334 33.66667</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_matrix-input-array" count="11" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_matrix-output">
|
||||
<float_array id="node-Bip01_matrix-output-array" count="176">0.7792376 -0.6267173 0.003750264 -8.10623e-5 0.6267178 0.7792454 0.00118345 0.009366631 -0.003664016 0.001428127 0.9999923 0.6175663 0 0 0 1 0.7792376 -0.6267173 0.003750264 -8.10623e-5 0.6267178 0.7792454 0.00118345 0.009368479 -0.003664016 0.001428127 0.9999923 0.64835 0 0 0 1 0.7792376 -0.6267173 0.003750264 -8.10623e-5 0.6267178 0.7792454 0.00118345 0.009368717 -0.003664016 0.001428127 0.9999923 0.7210378 0 0 0 1 0.7792376 -0.6267173 0.003750264 -8.10623e-5 0.6267178 0.7792454 0.00118345 0.009368002 -0.003664016 0.001428127 0.9999923 0.8074718 0 0 0 1 0.7792376 -0.6267173 0.003750264 -8.10623e-5 0.6267178 0.7792454 0.00118345 0.009367108 -0.003664016 0.001428127 0.9999923 0.8801584 0 0 0 1 0.7792376 -0.6267173 0.003750264 -8.10623e-5 0.6267178 0.7792454 0.00118345 0.009366631 -0.003664016 0.001428127 0.9999923 0.9109396 0 0 0 1 0.7792376 -0.6267173 0.003750264 -8.10623e-5 0.6267178 0.7792454 0.00118345 0.009366631 -0.003664016 0.001428127 0.9999923 0.9109396 0 0 0 1 0.7792376 -0.6267173 0.003750264 -8.10623e-5 0.6267178 0.7792454 0.00118345 0.009366631 -0.003664016 0.001428127 0.9999923 0.9109396 0 0 0 1 0.7792376 -0.6267173 0.003750264 -8.10623e-5 0.6267178 0.7792454 0.00118345 0.009366631 -0.003664016 0.001428127 0.9999923 0.9109396 0 0 0 1 0.7792376 -0.6267173 0.003750264 -8.10623e-5 0.6267178 0.7792454 0.00118345 0.009366631 -0.003664016 0.001428127 0.9999923 0.9109396 0 0 0 1 0.7792376 -0.6267173 0.003750264 -8.10623e-5 0.6267178 0.7792454 0.00118345 0.009366631 -0.003664016 0.001428127 0.9999923 0.9109396 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_matrix-output-array" count="11" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_matrix-interpolation">
|
||||
<Name_array id="node-Bip01_matrix-interpolation-array" count="11">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_matrix-interpolation-array" count="11" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_Pelvis_matrix-input">
|
||||
<float_array id="node-Bip01_Pelvis_matrix-input-array" count="11">33.33333 33.36666 33.4 33.43333 33.46667 33.5 33.53333 33.56667 33.6 33.63334 33.66667</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_Pelvis_matrix-input-array" count="11" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_Pelvis_matrix-output">
|
||||
<float_array id="node-Bip01_Pelvis_matrix-output-array" count="176">-0.009626686 0.991236 0.1317526 0 -0.1217413 -0.1319403 0.9837534 0 0.9925152 -0.006569385 0.1219445 0 0 0 0 1 -0.01401609 0.9927637 0.1192643 0 -0.1399025 -0.1200498 0.9828608 0 0.9900661 -0.002909481 0.1405727 0 0 0 0 1 -0.02256292 0.9957509 0.08928072 0 -0.1827043 -0.09190648 0.9788627 0 0.9829089 0.005774021 0.1840016 0 0 0 0 1 -0.02936065 0.9981658 0.05294442 0 -0.2332404 -0.0583465 0.9706671 0 0.9719758 0.01615059 0.2345257 0 0 0 0 1 -0.03222042 0.9992377 0.02204233 0 -0.2752239 -0.03007137 0.9609099 0 0.9608401 0.02489435 0.275983 0 0 0 0 1 -0.03264236 0.9994273 0.008912622 0 -0.2928138 -0.01808887 0.9559983 0 0.9556121 0.02859628 0.2932366 0 0 0 0 1 -0.01364904 0.9996946 0.02059674 0 -0.2341594 -0.02322155 0.9719209 0 0.9721024 0.008442819 0.2344049 0 0 0 0 1 0.03570681 0.9986092 0.03878974 0 -0.09265643 -0.03533911 0.9950708 0 0.9950577 -0.0391249 0.09126573 0 0 0 0 1 0.09918326 0.9941856 0.04192465 0 0.07770138 -0.04974162 0.995735 0 0.9920309 -0.09550267 -0.08218318 0 0 0 0 1 0.1528368 0.9878451 0.02833372 0 0.2192217 -0.06184566 0.9737129 0 0.96363 -0.1426078 -0.2260093 0 0 0 0 1 0.1747649 0.9844434 0.01811778 0 0.2778892 -0.06696885 0.9582759 0 0.9445818 -0.1624383 -0.28527 0 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_Pelvis_matrix-output-array" count="11" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_Pelvis_matrix-interpolation">
|
||||
<Name_array id="node-Bip01_Pelvis_matrix-interpolation-array" count="11">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_Pelvis_matrix-interpolation-array" count="11" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_Spine_matrix-input">
|
||||
<float_array id="node-Bip01_Spine_matrix-input-array" count="11">33.33333 33.36666 33.4 33.43333 33.46667 33.5 33.53333 33.56667 33.6 33.63334 33.66667</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_Spine_matrix-input-array" count="11" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_Spine_matrix-output">
|
||||
<float_array id="node-Bip01_Spine_matrix-output-array" count="176">0.9142389 -0.1596023 -0.3724171 0.1975123 0.1756539 0.9844078 0.009333312 0.02499341 0.3651207 -0.07394945 0.9280187 0.02780973 0 0 0 1 0.9068926 -0.1600963 -0.389763 0.1969075 0.1821316 0.9830711 0.01998072 0.02576345 0.3799659 -0.08910864 0.9206985 0.03119015 0 0 0 1 0.8886457 -0.1592801 -0.4300452 0.195254 0.1973494 0.9792957 0.04509139 0.0275734 0.4139593 -0.1249394 0.9016807 0.03904813 0 0 0 1 0.8654438 -0.1546978 -0.4765244 0.1928942 0.2152717 0.9736795 0.07487428 0.02970564 0.4523992 -0.1673818 0.875967 0.04815119 0 0 0 1 0.8448118 -0.1478371 -0.5142343 0.1905987 0.2301675 0.9680163 0.09983676 0.03147679 0.4830277 -0.2027034 0.851819 0.05559182 0 0 0 1 0.8357986 -0.1441137 -0.5297849 0.1895457 0.2364203 0.9653609 0.1103806 0.03221964 0.4955262 -0.2175078 0.8409188 0.05868136 0 0 0 1 0.8674957 -0.1271644 -0.4809163 0.1933356 0.2050157 0.9722449 0.1127331 0.02821069 0.4532327 -0.1963909 0.8694887 0.04726856 0 0 0 1 0.9300132 -0.07940393 -0.3588455 0.1992188 0.1302557 0.9842165 0.1197978 0.0187031 0.3436692 -0.1581554 0.9256772 0.01922965 0 0 0 1 0.9789474 -0.01346135 -0.2036684 0.2003 0.0408411 0.9905626 0.1308349 0.007351756 0.1999851 -0.1363986 0.9702584 -0.01524782 0 0 0 1 0.9967601 0.04411828 -0.0672537 0.1960644 -0.03419321 0.9892511 0.1421733 -0.002202391 0.07280325 -0.1394132 0.9875544 -0.04426622 0 0 0 1 0.9976643 0.06778115 -0.008484542 0.1928508 -0.06579357 0.9868717 0.147498 -0.006243884 0.01837062 -0.1465954 0.989026 -0.05634504 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_Spine_matrix-output-array" count="11" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_Spine_matrix-interpolation">
|
||||
<Name_array id="node-Bip01_Spine_matrix-interpolation-array" count="11">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_Spine_matrix-interpolation-array" count="11" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_Spine2_matrix-input">
|
||||
<float_array id="node-Bip01_Spine2_matrix-input-array" count="11">33.33333 33.36666 33.4 33.43333 33.46667 33.5 33.53333 33.56667 33.6 33.63334 33.66667</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_Spine2_matrix-input-array" count="11" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_Spine2_matrix-output">
|
||||
<float_array id="node-Bip01_Spine2_matrix-output-array" count="176">0.8835585 -0.3774272 -0.2772603 0.1269307 0.4144815 0.9058138 0.08778685 -1.55188e-4 0.2180128 -0.192484 0.956776 3.29018e-5 0 0 0 1 0.890065 -0.3749086 -0.2592836 0.1269302 0.4088296 0.9081301 0.09032273 -1.55546e-4 0.2016003 -0.186396 0.9615684 3.19183e-5 0 0 0 1 0.9059739 -0.3671938 -0.2106658 0.126929 0.3931367 0.9143532 0.09696263 -1.56619e-4 0.1570188 -0.170666 0.9727375 2.91765e-5 0 0 0 1 0.9249484 -0.3539084 -0.1386328 0.1269266 0.3691294 0.9233574 0.1056153 -1.58131e-4 0.09062939 -0.1488621 0.984696 2.55704e-5 0 0 0 1 0.9410055 -0.3346148 -0.05041402 0.1269234 0.3382738 0.934105 0.1140989 -1.60024e-4 0.008912742 -0.1244214 0.9921895 2.12789e-5 0 0 0 1 0.9499784 -0.308892 0.04611915 0.1269189 0.3016489 0.9457368 0.1207879 -1.61968e-4 -0.08092707 -0.1008341 0.9916064 1.7345e-5 0 0 0 1 0.9501726 -0.2772493 0.1424958 0.1269135 0.260683 0.9573677 0.1244651 -1.63987e-4 -0.1709287 -0.08111697 0.9819387 1.39177e-5 0 0 0 1 0.9420908 -0.2437816 0.2302945 0.1269077 0.2201552 0.9675961 0.12365 -1.65731e-4 -0.2529758 -0.06578904 0.9652333 1.12653e-5 0 0 0 1 0.929186 -0.2134559 0.3017443 0.1269025 0.1853801 0.9754155 0.119159 -1.67076e-4 -0.3197613 -0.05478352 0.9459129 9.47714e-6 0 0 0 1 0.9170749 -0.1913369 0.3498051 0.1268987 0.1610901 0.9803447 0.1139044 -1.6791e-4 -0.3647238 -0.04810869 0.929872 8.34465e-6 0 0 0 1 0.9118832 -0.1827258 0.367533 0.1268973 0.1518599 0.9820942 0.111488 -1.68217e-4 -0.3813238 -0.04585051 0.9233038 7.86781e-6 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_Spine2_matrix-output-array" count="11" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_Spine2_matrix-interpolation">
|
||||
<Name_array id="node-Bip01_Spine2_matrix-interpolation-array" count="11">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_Spine2_matrix-interpolation-array" count="11" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_Head_matrix-input">
|
||||
<float_array id="node-Bip01_Head_matrix-input-array" count="11">33.33333 33.36666 33.4 33.43333 33.46667 33.5 33.53333 33.56667 33.6 33.63334 33.66667</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_Head_matrix-input-array" count="11" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_Head_matrix-output">
|
||||
<float_array id="node-Bip01_Head_matrix-output-array" count="176">0.9551592 0.1250558 -0.2683872 0.07051819 -0.2814226 0.1016556 -0.954184 -0.01395916 -0.09204334 0.986928 0.1322909 0 0 0 0 1 0.9525883 0.1195278 -0.279801 0.07051813 -0.2929525 0.1119142 -0.9495547 -0.01395916 -0.08218443 0.9865031 0.1416241 0 0 0 0 1 0.9447576 0.1043934 -0.3107007 0.07051825 -0.3231906 0.1388031 -0.9360989 -0.01395916 -0.05459642 0.9848021 0.1648741 0 0 0 0 1 0.9306913 0.08162862 -0.3565816 0.07051813 -0.3656231 0.1767945 -0.9138182 -0.01395922 -0.01155191 0.980857 0.1943865 0 0 0 0 1 0.9094467 0.05298942 -0.41243 0.07051813 -0.4134524 0.2209281 -0.8833161 -0.01395922 0.04431092 0.9738494 0.222831 0 0 0 0 1 0.881383 0.02002596 -0.4719772 0.07051813 -0.4596473 0.26695 -0.8470312 -0.01395916 0.1090316 0.963502 0.24449 0 0 0 0 1 0.8557466 -0.01883602 -0.5170521 0.07051801 -0.486508 0.3108192 -0.8165177 -0.0139591 0.1760895 0.9502824 0.2568188 0 0 0 0 1 0.8393894 -0.06007343 -0.5402004 0.07051801 -0.4890116 0.350377 -0.7988138 -0.0139591 0.2372612 0.9346801 0.264726 0 0 0 0 1 0.8302626 -0.0964362 -0.5489663 0.07051825 -0.4780567 0.3831915 -0.7903327 -0.01395916 0.2865759 0.9186207 0.2720476 0 0 0 0 1 0.8263572 -0.1222798 -0.5497103 0.07051825 -0.4638358 0.4057773 -0.7875283 -0.0139591 0.3193587 0.9057551 0.2785993 0 0 0 0 1 0.8256276 -0.1322618 -0.5484942 0.07051837 -0.4566819 0.4142266 -0.7873107 -0.01395916 0.331332 0.9005129 0.2815953 0 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_Head_matrix-output-array" count="11" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_Head_matrix-interpolation">
|
||||
<Name_array id="node-Bip01_Head_matrix-interpolation-array" count="11">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_Head_matrix-interpolation-array" count="11" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-ALTEYE_matrix-input">
|
||||
<float_array id="node-ALTEYE_matrix-input-array" count="11">33.33333 33.36666 33.4 33.43333 33.46667 33.5 33.53333 33.56667 33.6 33.63334 33.66667</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-ALTEYE_matrix-input-array" count="11" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-ALTEYE_matrix-output">
|
||||
<float_array id="node-ALTEYE_matrix-output-array" count="176">0.4506336 0.3792481 0.8081467 0.06454706 0.04412823 0.8947042 -0.4444743 0.221461 -0.8916178 0.2359567 0.3864482 0.04716253 0 0 0 1 0.4412232 0.3738429 0.8158215 0.06454682 0.04741281 0.8981159 -0.437196 0.221461 -0.8961442 0.231581 0.3785446 0.04716253 0 0 0 1 0.4154654 0.3589423 0.8357928 0.06454682 0.05592155 0.9070309 -0.4173344 0.2214611 -0.9078885 0.2201265 0.3567671 0.04716253 0 0 0 1 0.3767448 0.3362803 0.8631222 0.06454694 0.06746566 0.9193422 -0.3876323 0.2214609 -0.9238571 0.2042691 0.3236699 0.04716253 0 0 0 1 0.328477 0.3076503 0.8930034 0.06454694 0.07993495 0.9330184 -0.3508386 0.2214611 -0.9411237 0.1866243 0.281883 0.04716259 0 0 0 1 0.2744711 0.2751986 0.9213753 0.06454706 0.09158861 0.9463356 -0.3099373 0.2214611 -0.957224 0.1694559 0.2345365 0.04716259 0 0 0 1 0.2190483 0.241518 0.9453507 0.06454694 0.1012399 0.958025 -0.2682144 0.2214611 -0.9704476 0.1544588 0.1854023 0.04716253 0 0 0 1 0.1669772 0.2095885 0.9634273 0.06454682 0.1083317 0.9673294 -0.2292129 0.2214611 -0.9799914 0.1426427 0.1388168 0.04716253 0 0 0 1 0.1233164 0.18264 0.975416 0.06454694 0.1128836 0.9739566 -0.1966378 0.2214611 -0.9859263 0.1343569 0.09948766 0.04716253 0 0 0 1 0.09326219 0.1640106 0.9820405 0.06454694 0.1153056 0.9779235 -0.1742731 0.2214611 -0.9889425 0.1294875 0.07229185 0.04716253 0 0 0 1 0.08206868 0.1570575 0.9841738 0.06454706 0.1160627 0.9792798 -0.1659546 0.2214611 -0.9898458 0.1278451 0.06213951 0.04716253 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-ALTEYE_matrix-output-array" count="11" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-ALTEYE_matrix-interpolation">
|
||||
<Name_array id="node-ALTEYE_matrix-interpolation-array" count="11">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-ALTEYE_matrix-interpolation-array" count="11" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_UpperArm_matrix-input">
|
||||
<float_array id="node-Bip01_L_UpperArm_matrix-input-array" count="11">33.33333 33.36666 33.4 33.43333 33.46667 33.5 33.53333 33.56667 33.6 33.63334 33.66667</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_UpperArm_matrix-input-array" count="11" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_UpperArm_matrix-output">
|
||||
<float_array id="node-Bip01_L_UpperArm_matrix-output-array" count="176">0.5020983 0.8647767 -0.007648289 0.1824006 -0.2608426 0.1598681 0.9520522 0 0.8245354 -0.4760286 0.3058401 1.19209e-7 0 0 0 1 0.5444764 0.8387724 0.002573668 0.1824008 -0.267908 0.1709991 0.9481481 0 0.7948402 -0.5169337 0.3178188 0 0 0 0 1 0.6443366 0.7640611 0.03226399 0.1824007 -0.2864463 0.2020136 0.9365569 0 0.709069 -0.6126998 0.3490273 0 0 0 0 1 0.7595272 0.6452676 0.08214747 0.1824007 -0.3119068 0.2504588 0.9165068 0 0.5708175 -0.7217342 0.3914937 1.19209e-7 0 0 0 1 0.8565384 0.4931418 0.1521621 0.1824007 -0.3382282 0.3137058 0.8872376 0 0.3897996 -0.8114187 0.4354953 0 0 0 0 1 0.9147014 0.326776 0.2377786 0.1824005 -0.3588794 0.3862783 0.8497025 0 0.1858137 -0.8625581 0.4706025 1.19209e-7 0 0 0 1 0.9331821 0.1664388 0.3185427 0.1824007 -0.3591146 0.4673722 0.8078366 0 -0.01442253 -0.8682518 0.495914 1.19209e-7 0 0 0 1 0.9228711 0.03396958 0.3836077 0.1824006 -0.3383756 0.5471327 0.7656028 0 -0.1838771 -0.8363562 0.5164275 0 0 0 0 1 0.8991227 -0.05779135 0.4338648 0.1824006 -0.3117771 0.6111546 0.72752 0 -0.3072029 -0.7893988 0.531485 1.19209e-7 0 0 0 1 0.8776106 -0.1097518 0.4666413 0.1824006 -0.2903695 0.652832 0.6996398 0 -0.3814252 -0.7495097 0.5410637 0 0 0 0 1 0.8689767 -0.1269564 0.4782906 0.1824006 -0.2815027 0.6680859 0.68878 0 -0.406984 -0.7331739 0.5448123 2.38419e-7 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_UpperArm_matrix-output-array" count="11" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_UpperArm_matrix-interpolation">
|
||||
<Name_array id="node-Bip01_L_UpperArm_matrix-interpolation-array" count="11">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_UpperArm_matrix-interpolation-array" count="11" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_Forearm_matrix-input">
|
||||
<float_array id="node-Bip01_L_Forearm_matrix-input-array" count="11">33.33333 33.36666 33.4 33.43333 33.46667 33.5 33.53333 33.56667 33.6 33.63334 33.66667</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_Forearm_matrix-input-array" count="11" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_Forearm_matrix-output">
|
||||
<float_array id="node-Bip01_L_Forearm_matrix-output-array" count="176">0.7422016 0.6701767 0 0.2843688 -0.6701766 0.7422018 0 0 0 0 1 0 0 0 0 1 0.7070825 0.7071312 0 0.2843689 -0.7071312 0.7070825 0 0 0 0 1 0 0 0 0 1 0.6195073 0.7849909 0 0.2843689 -0.7849908 0.6195073 0 0 0 0 1 0 0 0 0 1 0.510101 0.8601146 0 0.2843691 -0.8601146 0.510101 0 0 0 0 1 0 0 0 0 1 0.4084208 0.9127939 0 0.2843689 -0.9127938 0.4084207 0 0 0 0 1 0 0 0 0 1 0.3367484 0.9415948 0 0.2843689 -0.9415948 0.3367483 0 0 0 0 1 0 0 0 0 1 0.3003158 0.9538399 0 0.284369 -0.9538399 0.3003159 0 0 0 0 1 0 0 0 0 1 0.2971238 0.954839 0 0.2843689 -0.954839 0.2971239 0 0 0 0 1 0 0 0 0 1 0.3180716 0.9480665 0 0.2843689 -0.9480667 0.3180716 0 0 0 0 0.9999999 0 0 0 0 1 0.3442271 0.9388864 0 0.2843689 -0.9388864 0.3442271 0 0 0 0 1 0 0 0 0 1 0.3559716 0.9344967 0 0.2843689 -0.9344966 0.3559715 0 0 0 -1.19209e-7 1 0 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_Forearm_matrix-output-array" count="11" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_Forearm_matrix-interpolation">
|
||||
<Name_array id="node-Bip01_L_Forearm_matrix-interpolation-array" count="11">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_Forearm_matrix-interpolation-array" count="11" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_Hand_matrix-input">
|
||||
<float_array id="node-Bip01_L_Hand_matrix-input-array" count="11">33.33333 33.36666 33.4 33.43333 33.46667 33.5 33.53333 33.56667 33.6 33.63334 33.66667</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_Hand_matrix-input-array" count="11" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_Hand_matrix-output">
|
||||
<float_array id="node-Bip01_L_Hand_matrix-output-array" count="176">0.9275937 0.1944826 -0.3189771 0.2810682 0.03266769 -0.8927687 -0.4493288 0 -0.3721594 0.4063743 -0.8344801 0 0 0 0 1 0.9299055 0.206704 -0.3042191 0.281068 0.04971486 -0.8901846 -0.4528793 0 -0.3644232 0.4060108 -0.8380638 0 0 0 0 1 0.9353252 0.2289476 -0.269722 0.2810682 0.08516311 -0.8856628 -0.4564522 0 -0.3433865 0.4039608 -0.8478804 0 0 0 0 1 0.9431394 0.2397501 -0.2302345 0.2810682 0.1152083 -0.8854916 -0.4501466 0 -0.3117935 0.3980259 -0.8627632 0 0 0 0 1 0.9540902 0.2258864 -0.1966904 0.2810682 0.1230823 -0.8943617 -0.4300789 1.78814e-7 -0.2730614 0.3861249 -0.8811043 0 0 0 0 1 0.9674431 0.1829191 -0.1749135 0.2810681 0.1004247 -0.9118241 -0.3981106 0 -0.2323123 0.3675836 -0.9005075 0 0 0 0 1 0.9784264 0.1223782 -0.1664494 0.2810681 0.05457442 -0.9301593 -0.3630778 0 -0.1992573 0.346161 -0.9167711 0 0 0 0 1 0.9843013 0.05740392 -0.1669007 0.281068 -0.001041889 -0.9437249 -0.3307302 0 -0.1764935 0.325712 -0.9288497 0 0 0 0 1 0.9853509 -0.00241971 -0.1705231 0.2810682 -0.05481094 -0.9513431 -0.3032202 0 -0.1614923 0.3081248 -0.9375393 0 0 0 0 1 0.9837343 -0.04534387 -0.1738128 0.2810682 -0.09418028 -0.9541525 -0.2841182 0 -0.1529608 0.2958665 -0.942903 0 0 0 0 1 0.9826467 -0.06125414 -0.1750819 0.2810682 -0.1088772 -0.9546595 -0.2770758 1.19209e-7 -0.1501715 0.2913301 -0.944762 0 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_Hand_matrix-output-array" count="11" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_Hand_matrix-interpolation">
|
||||
<Name_array id="node-Bip01_L_Hand_matrix-interpolation-array" count="11">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_Hand_matrix-interpolation-array" count="11" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_R_UpperArm_matrix-input">
|
||||
<float_array id="node-Bip01_R_UpperArm_matrix-input-array" count="11">33.33333 33.36666 33.4 33.43333 33.46667 33.5 33.53333 33.56667 33.6 33.63334 33.66667</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_R_UpperArm_matrix-input-array" count="11" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_R_UpperArm_matrix-output">
|
||||
<float_array id="node-Bip01_R_UpperArm_matrix-output-array" count="176">0.2061441 0.9350806 -0.2883207 0.1824007 -0.9591451 0.2514378 0.1296904 0 0.1937658 0.2498064 0.9487105 0 0 0 0 1 0.2177585 0.9357764 -0.277315 0.1824007 -0.9550104 0.2629058 0.1372421 0 0.2013358 0.2349532 0.9509264 -1.19209e-7 0 0 0 1 0.2488855 0.9362275 -0.24806 0.1824006 -0.9429662 0.2926921 0.1585742 0 0.2210667 0.1944453 0.955678 0 0 0 0 1 0.2946439 0.9331127 -0.20612 0.1824007 -0.9229115 0.3338032 0.1918579 0 0.2478286 0.1337009 0.9595338 0 0 0 0 1 0.3503193 0.9233409 -0.1572185 0.1824006 -0.894775 0.3795337 0.2352265 0 0.2768641 0.05827087 0.9591407 0 0 0 0 1 0.4108501 0.9053591 -0.1073628 0.1824007 -0.8591725 0.4238791 0.2866166 0 0.3049998 -0.02551329 0.9520106 -1.19209e-7 0 0 0 1 0.4671588 0.8813571 -0.07051306 0.1824006 -0.8147962 0.4600985 0.3527269 0 0.3433215 -0.1073258 0.9330657 -2.38419e-7 0 0 0 1 0.5145379 0.8556892 -0.05519503 0.1824006 -0.7620405 0.4858384 0.4280835 0 0.3931223 -0.1782043 0.9020523 0 0 0 0 1 0.5514156 0.8323501 -0.05598372 0.1824006 -0.7082517 0.5025506 0.4958046 0 0.4408178 -0.2337437 0.8666277 0 0 0 0 1 0.57507 0.8155961 -0.06400859 0.1824006 -0.6652904 0.5117526 0.5435968 0 0.476112 -0.270022 0.8369022 -1.19209e-7 0 0 0 1 0.5833396 0.8093008 -0.06889688 0.1824007 -0.647678 0.5146701 0.5618077 0 0.4901306 -0.2831017 0.8243938 0 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_R_UpperArm_matrix-output-array" count="11" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_R_UpperArm_matrix-interpolation">
|
||||
<Name_array id="node-Bip01_R_UpperArm_matrix-interpolation-array" count="11">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_R_UpperArm_matrix-interpolation-array" count="11" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_Thigh_matrix-input">
|
||||
<float_array id="node-Bip01_L_Thigh_matrix-input-array" count="11">33.33333 33.36666 33.4 33.43333 33.46667 33.5 33.53333 33.56667 33.6 33.63334 33.66667</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_Thigh_matrix-input-array" count="11" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_Thigh_matrix-output">
|
||||
<float_array id="node-Bip01_L_Thigh_matrix-output-array" count="176">-0.1205261 0.9908452 -0.06082308 -0.1485697 0.585079 0.1203991 0.8019892 -4.512e-4 0.8019701 0.06107425 -0.5942339 0.1658256 0 0 0 1 -0.1948079 0.9792558 -0.05574977 -0.1466771 0.5787334 0.1606484 0.7995373 -0.002383708 0.7919077 0.1234919 -0.5980235 0.1648923 0 0 0 1 -0.3636301 0.9305067 -0.04394042 -0.1423434 0.5512446 0.2529643 0.7950714 -0.006951689 0.7509344 0.2648899 -0.6049222 0.1624678 0 0 0 1 -0.5589904 0.8286208 -0.03028917 -0.1374428 0.4925684 0.3612303 0.7917633 -0.01236253 0.6670129 0.4276685 -0.6100767 0.1591897 0 0 0 1 -0.7193523 0.6943609 -0.01988619 -0.1335381 0.4136295 0.4511649 0.7907978 -0.01686555 0.5580711 0.5606366 -0.6117545 0.1561112 0 0 0 1 -0.8000825 0.5997315 -0.01379424 -0.1319448 0.3581578 0.4960007 0.7910161 -0.01875293 0.4812391 0.6279376 -0.6116399 0.1547215 0 0 0 1 -0.8219363 0.569029 -0.0250408 -0.1371441 0.3302304 0.5119012 0.7930353 -0.01859617 0.4640786 0.6435553 -0.6086608 0.1595465 0 0 0 1 -0.8389504 0.541447 -0.05475366 -0.150508 0.2902226 0.5302467 0.7966238 -0.01971036 0.4603625 0.652437 -0.6019906 0.1694591 0 0 0 1 -0.853896 0.5123172 -0.09161221 -0.1678388 0.2431896 0.5484005 0.8000724 -0.02405464 0.4601311 0.6608994 -0.5928671 0.1783221 0 0 0 1 -0.868206 0.4805862 -0.1235111 -0.1830005 0.1977059 0.563339 0.8022227 -0.03041571 0.455116 0.6720758 -0.5841091 0.1831142 0 0 0 1 -0.8850593 0.4448091 -0.1371674 -0.1894344 0.1636925 0.5732822 0.8028401 -0.03385835 0.4357463 0.688108 -0.5802007 0.1843713 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_Thigh_matrix-output-array" count="11" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_Thigh_matrix-interpolation">
|
||||
<Name_array id="node-Bip01_L_Thigh_matrix-interpolation-array" count="11">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_Thigh_matrix-interpolation-array" count="11" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_Calf_matrix-input">
|
||||
<float_array id="node-Bip01_L_Calf_matrix-input-array" count="11">33.33333 33.36666 33.4 33.43333 33.46667 33.5 33.53333 33.56667 33.6 33.63334 33.66667</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_Calf_matrix-input-array" count="11" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_Calf_matrix-output">
|
||||
<float_array id="node-Bip01_L_Calf_matrix-output-array" count="176">-0.2179086 0.9759693 0 0.4629988 -0.9759691 -0.2179086 0 0 0 0 1 0 0 0 0 1 -0.1546397 0.9879709 0 0.4629988 -0.987971 -0.1546398 0 0 0 0 1 0 0 0 0 1 0.0279963 0.9996079 0 0.4629988 -0.9996078 0.02799636 0 0 0 0 1 0 0 0 0 1 0.3153005 0.9489918 0 0.4629987 -0.9489919 0.3153005 0 0 0 0 1 0 0 0 0 1 0.618224 0.7860018 0 0.4629986 -0.7860019 0.618224 0 0 0 0 1 0 0 0 0 1 0.7749292 0.632048 0 0.4629988 -0.632048 0.7749292 0 0 0 0 1 0 0 0 0 1 0.7689781 0.6392752 0 0.4629988 -0.639275 0.7689782 0 0 0 0 1 0 0 0 0 1 0.7285847 0.6849555 0 0.4629986 -0.6849557 0.7285847 0 0 0 0 1 0 0 0 0 1 0.6843283 0.7291739 0 0.4629988 -0.7291738 0.6843283 0 0 0 0 1 0 0 0 0 1 0.6609324 0.7504455 0 0.4629988 -0.7504454 0.6609324 0 0 0 0 1 0 0 0 0 1 0.6778361 0.7352131 0 0.4629988 -0.7352131 0.6778361 0 0 0 0 1 0 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_Calf_matrix-output-array" count="11" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_Calf_matrix-interpolation">
|
||||
<Name_array id="node-Bip01_L_Calf_matrix-interpolation-array" count="11">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_Calf_matrix-interpolation-array" count="11" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_Foot_matrix-input">
|
||||
<float_array id="node-Bip01_L_Foot_matrix-input-array" count="11">33.33333 33.36666 33.4 33.43333 33.46667 33.5 33.53333 33.56667 33.6 33.63334 33.66667</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_Foot_matrix-input-array" count="11" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_Foot_matrix-output">
|
||||
<float_array id="node-Bip01_L_Foot_matrix-output-array" count="176">0.7892729 -0.602077 -0.120631 0.3610501 0.6127691 0.7849334 0.09161674 0 0.03952699 -0.1462296 0.9884608 0 0 0 0 1 0.8166673 -0.5665122 -0.1100853 0.3610501 0.5758538 0.8125023 0.09073501 0 0.038042 -0.1374933 0.9897719 0 0 0 0 1 0.8929002 -0.4427081 -0.08209067 0.3610501 0.4489564 0.8892382 0.08771318 0 0.03416687 -0.1151743 0.9927576 0 0 0 0 1 0.9758436 -0.2138312 -0.04478526 0.3610501 0.2168369 0.9730011 0.0790615 0 0.02667021 -0.08686268 0.9958632 0 0 0 0 1 0.9931489 0.1160168 -0.01396268 0.3610501 -0.114988 0.9915565 0.05994588 0 0.02079945 -0.05792969 0.9981039 0 0 0 0 1 0.935971 0.3520771 -1.46504e-4 0.3610501 -0.3517608 0.9351474 0.04199498 0 0.01492255 -0.03925478 0.999118 0 0 0 0 1 0.9100326 0.4145375 3.11919e-5 0.3610501 -0.4142922 0.9094916 0.03446072 0 0.01425677 -0.03137314 0.9994062 0 0 0 0 1 0.9036747 0.4282158 -0.00187546 0.3610501 -0.4279049 0.9031693 0.03439122 0 0.0164206 -0.03027588 0.9994068 0 0 0 0 1 0.9029033 0.4298055 -0.005746901 0.3610501 -0.4293133 0.9023721 0.03761649 0 0.02135378 -0.03149682 0.9992758 0 0 0 0 1 0.8971804 0.4415522 -0.009956002 0.3610501 -0.4408339 0.8966475 0.04109728 0 0.02707356 -0.03248268 0.9991057 0 0 0 0 1 0.8790482 0.476592 -0.01161015 0.3610501 -0.4757469 0.878535 0.04290765 0 0.03064942 -0.03219443 0.9990116 0 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_Foot_matrix-output-array" count="11" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_Foot_matrix-interpolation">
|
||||
<Name_array id="node-Bip01_L_Foot_matrix-interpolation-array" count="11">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_Foot_matrix-interpolation-array" count="11" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_Toe0_matrix-input">
|
||||
<float_array id="node-Bip01_L_Toe0_matrix-input-array" count="11">33.33333 33.36666 33.4 33.43333 33.46667 33.5 33.53333 33.56667 33.6 33.63334 33.66667</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_Toe0_matrix-input-array" count="11" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_Toe0_matrix-output">
|
||||
<float_array id="node-Bip01_L_Toe0_matrix-output-array" count="176">7.15023e-7 -1 1.38953e-6 0.1486307 1 7.15256e-7 0 0.1543275 0 1.38953e-6 1 0 0 0 0 1 0.01181519 -0.99993 6.6993e-4 0.1486306 0.99993 0.01181471 -6.52229e-4 0.1543275 6.44268e-4 6.77589e-4 0.9999996 0 0 0 0 1 0.05056792 -0.9987178 0.002420604 0.1486306 0.9987128 0.05055773 -0.004101336 0.1543275 0.003973662 0.002624869 0.9999887 0 0 0 0 1 0.09753876 -0.995227 0.003086268 0.1486307 0.9951975 0.09750926 -0.008590698 0.1543275 0.008248746 0.003909349 0.9999584 0 0 0 0 1 0.07972025 -0.9968131 0.002946853 0.1486306 0.9967897 0.0796957 -0.007683634 0.1543275 0.007424294 0.003549933 0.9999662 0 0 0 0 1 4.17232e-7 -1 1.39419e-6 0.1486306 1 4.76837e-7 0 0.1543275 0 1.3886e-6 1 0 0 0 0 1 4.17232e-7 -1 1.39046e-6 0.1486306 1 4.47035e-7 0 0.1543275 0 1.38301e-6 1 0 0 0 0 1 4.76837e-7 -0.9999999 1.37929e-6 0.1486306 1 4.76837e-7 0 0.1543274 0 1.40024e-6 1 0 0 0 0 1 5.06639e-7 -1 1.39e-6 0.1486306 1 4.76837e-7 0 0.1543275 0 1.39605e-6 1 0 0 0 0 1 4.76837e-7 -1 1.38395e-6 0.1486306 1 4.76837e-7 0 0.1543274 0 1.39512e-6 1 0 0 0 0 1 4.47035e-7 -1 1.39e-6 0.1486306 1 5.36442e-7 0 0.1543275 0 1.37929e-6 1 0 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_Toe0_matrix-output-array" count="11" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_Toe0_matrix-interpolation">
|
||||
<Name_array id="node-Bip01_L_Toe0_matrix-interpolation-array" count="11">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_Toe0_matrix-interpolation-array" count="11" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_R_Thigh_matrix-input">
|
||||
<float_array id="node-Bip01_R_Thigh_matrix-input-array" count="11">33.33333 33.36666 33.4 33.43333 33.46667 33.5 33.53333 33.56667 33.6 33.63334 33.66667</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_R_Thigh_matrix-input-array" count="11" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_R_Thigh_matrix-output">
|
||||
<float_array id="node-Bip01_R_Thigh_matrix-output-array" count="176">-0.8481521 0.4434449 0.2898187 -0.2416654 0.5259895 0.770021 0.3611133 0.01840347 -0.0630325 0.4587205 -0.8863423 -0.0707941 0 0 0 1 -0.8058713 0.5233981 0.2768139 -0.2435578 0.5920227 0.7193825 0.3633154 0.02033603 -0.008976399 0.4566656 -0.8895933 -0.06986093 0 0 0 1 -0.7305518 0.6470015 0.2183648 -0.2478916 0.6757239 0.6388593 0.3677718 0.02490401 0.09844446 0.4162307 -0.9039142 -0.06743639 0 0 0 1 -0.6169952 0.7769919 0.1249028 -0.2527922 0.7528404 0.5365263 0.3812754 0.03031486 0.2292342 0.329277 -0.915985 -0.06415826 0 0 0 1 -0.4990209 0.8658483 0.0358501 -0.2566969 0.7993938 0.44396 0.4048073 0.03481787 0.3345856 0.2306657 -0.913699 -0.06107974 0 0 0 1 -0.4112551 0.911439 -0.01217699 -0.2582904 0.8236626 0.377305 0.423345 0.03670525 0.3904476 0.1640729 -0.9058867 -0.05969011 0 0 0 1 -0.3175005 0.9465744 -0.05648559 -0.2527061 0.8440467 0.3092547 0.4381172 0.03147774 0.432179 0.09142595 -0.8971415 -0.0621497 0 0 0 1 -0.2814893 0.9536713 -0.1061841 -0.2381342 0.8418697 0.2985473 0.4495832 0.02061456 0.4604557 0.0371598 -0.8869048 -0.0665636 0 0 0 1 -0.2893317 0.945851 -0.1471512 -0.2188293 0.8298644 0.3244709 0.4539206 0.01072287 0.4770874 0.009218037 -0.8788075 -0.06906759 0 0 0 1 -0.3135724 0.9335387 -0.1737173 -0.201563 0.8161622 0.3584763 0.4531818 0.005130469 0.4853363 3.23802e-4 -0.8743274 -0.06868535 0 0 0 1 -0.3184208 0.9295225 -0.1860011 -0.194118 0.8122211 0.3686971 0.4520609 0.003519058 0.4887789 -0.007128357 -0.8723787 -0.0678035 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_R_Thigh_matrix-output-array" count="11" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_R_Thigh_matrix-interpolation">
|
||||
<Name_array id="node-Bip01_R_Thigh_matrix-interpolation-array" count="11">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_R_Thigh_matrix-interpolation-array" count="11" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_R_Calf_matrix-input">
|
||||
<float_array id="node-Bip01_R_Calf_matrix-input-array" count="11">33.33333 33.36666 33.4 33.43333 33.46667 33.5 33.53333 33.56667 33.6 33.63334 33.66667</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_R_Calf_matrix-input-array" count="11" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_R_Calf_matrix-output">
|
||||
<float_array id="node-Bip01_R_Calf_matrix-output-array" count="176">-0.121563 0.9925838 0 0.4629988 -0.9925836 -0.121563 0 0 0 0 1 0 0 0 0 1 -0.2889729 0.9573374 0 0.4629988 -0.9573374 -0.2889729 0 0 0 0 1 0 0 0 0 1 -0.4244735 0.9054405 0 0.4629988 -0.9054404 -0.4244736 0 0 0 0 1 0 0 0 0 1 -0.4869677 0.8734202 0 0.4629988 -0.87342 -0.4869677 0 0 0 0 1 0 0 0 0 1 -0.4829697 0.8756374 0 0.4629988 -0.875637 -0.4829695 0 0 0 0 1 0 0 0 0 1 -0.4859648 0.8739784 0 0.4629988 -0.8739784 -0.4859648 0 0 0 0 1 0 0 0 0 1 -0.4978235 0.8672783 0 0.4629987 -0.8672782 -0.4978234 0 0 0 0 1 0 0 0 0 1 -0.4652704 0.8851688 0 0.4629988 -0.8851686 -0.4652705 0 0 0 0 1 0 0 0 0 1 -0.4151355 0.9097597 0 0.4629987 -0.9097595 -0.4151355 0 0 1.22935e-7 0 1 0 0 0 0 1 -0.3698468 0.9290929 0 0.4629988 -0.9290927 -0.3698468 0 0 0 0 1 0 0 0 0 1 -0.3497498 0.9368434 0 0.4629988 -0.936843 -0.3497498 0 0 0 0 1 0 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_R_Calf_matrix-output-array" count="11" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_R_Calf_matrix-interpolation">
|
||||
<Name_array id="node-Bip01_R_Calf_matrix-interpolation-array" count="11">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_R_Calf_matrix-interpolation-array" count="11" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_R_Foot_matrix-input">
|
||||
<float_array id="node-Bip01_R_Foot_matrix-input-array" count="11">33.33333 33.36666 33.4 33.43333 33.46667 33.5 33.53333 33.56667 33.6 33.63334 33.66667</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_R_Foot_matrix-input-array" count="11" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_R_Foot_matrix-output">
|
||||
<float_array id="node-Bip01_R_Foot_matrix-output-array" count="176">0.2348041 -0.9602214 0.1511365 0.3610501 0.8971235 0.2739291 0.3466014 0 -0.3742147 0.0542047 0.9257565 0 0 0 0 1 0.3346221 -0.9369254 0.1009887 0.36105 0.8856793 0.3492906 0.3058893 0 -0.3218699 -0.01291358 0.9466958 0 0 0 0 1 0.5686135 -0.8214975 0.04267334 0.3610501 0.8012274 0.5648403 0.1974597 0 -0.1863163 -0.07808727 0.9793818 0 0 0 0 1 0.8359854 -0.5478328 -0.0317505 0.3610501 0.5486766 0.8335106 0.064915 0 -0.009098291 -0.07168859 0.9973855 0 0 0 0 1 0.9780569 -0.1721287 -0.1173745 0.3610501 0.1711493 0.9850724 -0.01845037 0 0.1187983 -0.002043008 0.9929165 0 0 0 0 1 0.9801525 0.09484183 -0.1740877 0.3610501 -0.1015352 0.9943817 -0.02993315 0 0.1702708 0.04701501 0.9842751 0 0 0 0 1 0.9443258 0.2634098 -0.1971414 0.3610502 -0.2698715 0.9628769 -0.006165266 0 0.1881987 0.05902487 0.9803559 0 0 0 0 1 0.9090868 0.3681377 -0.1950269 0.3610501 -0.368369 0.9289648 0.03644394 0 0.1945896 0.03871107 0.9801205 0 0 0 0 1 0.8923307 0.4157889 -0.1756868 0.3610501 -0.4065595 0.9094378 0.08736318 0 0.1961008 -0.006529748 0.980562 0 0 0 0 1 0.8907901 0.4283945 -0.1515633 0.3610501 -0.4105834 0.9016972 0.1355115 0 0.1947165 -0.05848294 0.9791146 0 0 0 0 1 0.8885837 0.4383291 -0.1352293 0.3610502 -0.4156706 0.8940971 0.1667581 0 0.1940031 -0.0919677 0.9766805 0 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_R_Foot_matrix-output-array" count="11" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_R_Foot_matrix-interpolation">
|
||||
<Name_array id="node-Bip01_R_Foot_matrix-interpolation-array" count="11">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_R_Foot_matrix-interpolation-array" count="11" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_R_Toe0_matrix-input">
|
||||
<float_array id="node-Bip01_R_Toe0_matrix-input-array" count="11">33.33333 33.36666 33.4 33.43333 33.46667 33.5 33.53333 33.56667 33.6 33.63334 33.66667</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_R_Toe0_matrix-input-array" count="11" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_R_Toe0_matrix-output">
|
||||
<float_array id="node-Bip01_R_Toe0_matrix-output-array" count="176">-0.1805802 -0.9786913 0.09774529 0.1486306 0.9833317 -0.1817873 -0.003513753 0.1543275 0.02120769 0.09548151 0.9952055 0 0 0 0 1 -0.2672423 -0.9555304 0.1246731 0.1486306 0.9633541 -0.2680124 0.01086843 0.1543274 0.02302879 0.1230089 0.9921383 0 0 0 0 1 -0.3072157 -0.9415794 0.1380111 0.1486306 0.9516341 -0.3044802 0.04104417 0.1543275 0.003375351 0.1439455 0.9895799 0 0 0 0 1 -0.3272079 -0.9350085 0.136726 0.1486306 0.9446315 -0.319884 0.07311409 0.1543275 -0.02462583 0.1530793 0.9879071 0 0 0 0 1 -0.3696152 -0.9196378 0.1328561 0.1486306 0.9284403 -0.3598012 0.09242206 0.1543275 -0.03719305 0.1575096 0.9868168 0 0 0 0 1 -0.453864 -0.8796929 0.1419446 0.1486306 0.890919 -0.4450488 0.0905261 0.1543275 -0.01646286 0.1675477 0.9857267 0 0 0 0 1 -0.436481 -0.8884459 0.1419447 0.1486306 0.8994966 -0.4274469 0.09052604 0.1543274 -0.01975375 0.1671916 0.9857265 0 0 0 0 1 -0.3901906 -0.9097269 0.1419446 0.1486306 0.9202982 -0.3805998 0.0905261 0.1543274 -0.0283299 0.1659538 0.9857267 0 0 0 0 1 -0.3315577 -0.9326956 0.1419446 0.1486306 0.9426358 -0.3213142 0.0905261 0.1543275 -0.03882449 0.1638167 0.9857265 0 0 0 0 1 -0.2831296 -0.9485196 0.1419446 0.1486306 0.9579195 -0.2723884 0.0905261 0.1543275 -0.04720169 0.1616021 0.9857265 0 0 0 0 1 -0.2644269 -0.9539026 0.1419447 0.1486306 0.9630895 -0.2535029 0.0905261 0.1543275 -0.05036973 0.1606429 0.9857265 0 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_R_Toe0_matrix-output-array" count="11" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_R_Toe0_matrix-interpolation">
|
||||
<Name_array id="node-Bip01_R_Toe0_matrix-interpolation-array" count="11">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_R_Toe0_matrix-interpolation-array" count="11" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_FannyPack_matrix-input">
|
||||
<float_array id="node-Bip01_FannyPack_matrix-input-array" count="11">33.33333 33.36666 33.4 33.43333 33.46667 33.5 33.53333 33.56667 33.6 33.63334 33.66667</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_FannyPack_matrix-input-array" count="11" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_FannyPack_matrix-output">
|
||||
<float_array id="node-Bip01_FannyPack_matrix-output-array" count="176">-0.9629918 -0.2062316 0.1735377 0.2299507 -0.2083318 0.9780385 0.006227076 -0.1378937 -0.1710107 -0.03015679 -0.9848076 0.01013964 0 0 0 1 -0.9606786 -0.2144773 0.1763415 0.2263497 -0.2169148 0.9761748 0.005568623 -0.1379088 -0.1733345 -0.0329014 -0.9843133 0.009328544 0 0 0 1 -0.953988 -0.2366996 0.1840656 0.2177628 -0.240078 0.9707452 0.004039227 -0.137975 -0.1796368 -0.04033666 -0.9829057 0.007279336 0 0 0 1 -0.9430432 -0.2690006 0.1957249 0.2075138 -0.2738287 0.9617753 0.002481877 -0.1381241 -0.188911 -0.05125451 -0.9806557 0.00456798 0 0 0 1 -0.9280425 -0.3074532 0.2102612 0.1989269 -0.3141295 0.9493786 0.00173074 -0.1383873 -0.2001497 -0.06444299 -0.9776438 0.001770615 0 0 0 1 -0.9096333 -0.348262 0.2264527 0.1953259 -0.3570359 0.9340876 0.002364337 -0.1387965 -0.2123501 -0.07870095 -0.9740194 -5.36829e-4 0 0 0 1 -0.8891101 -0.3879099 0.2429175 0.1961085 -0.3988419 0.9170085 0.004537463 -0.1403209 -0.2245175 -0.0928514 -0.9700365 -0.002568781 0 0 0 1 -0.8684445 -0.4232541 0.2581862 0.1979742 -0.4361935 0.8998182 0.007908046 -0.143244 -0.2356677 -0.1057513 -0.9660628 -0.004709482 0 0 0 1 -0.8501673 -0.4515388 0.2707924 0.2002013 -0.4661281 0.8846402 0.01167839 -0.1465676 -0.244827 -0.1162952 -0.9625669 -0.006636977 0 0 0 1 -0.8371357 -0.4702936 0.2793345 0.202067 -0.4859915 0.873839 0.01474958 -0.1492937 -0.25103 -0.1234068 -0.9600806 -0.00802946 0 0 0 1 -0.8322091 -0.4771122 0.2824754 0.2028494 -0.4932149 0.8697607 0.01598548 -0.1504241 -0.2533128 -0.1260178 -0.9591415 -0.008565127 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_FannyPack_matrix-output-array" count="11" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_FannyPack_matrix-interpolation">
|
||||
<Name_array id="node-Bip01_FannyPack_matrix-interpolation-array" count="11">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_FannyPack_matrix-interpolation-array" count="11" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-EYE_matrix-input">
|
||||
<float_array id="node-EYE_matrix-input-array" count="11">33.33333 33.36666 33.4 33.43333 33.46667 33.5 33.53333 33.56667 33.6 33.63334 33.66667</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-EYE_matrix-input-array" count="11" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-EYE_matrix-output">
|
||||
<float_array id="node-EYE_matrix-output-array" count="176">0.7792379 0.6267177 -0.003664076 0.05872952 -0.6267173 0.7792452 0.001428186 0.0726093 0.003750264 0.001183271 0.999992 0.9528271 0 0 0 1 0.7792379 0.6267177 -0.003664076 0.05884116 -0.6267173 0.7792452 0.001428186 0.07256388 0.003750264 0.001183271 0.999992 0.9220437 0 0 0 1 0.7792379 0.6267177 -0.003664076 0.05910736 -0.6267173 0.7792452 0.001428186 0.07245993 0.003750264 0.001183271 0.999992 0.8493565 0 0 0 1 0.7792379 0.6267177 -0.003664076 0.05942451 -0.6267173 0.7792452 0.001428186 0.07233703 0.003750264 0.001183271 0.999992 0.7629231 0 0 0 1 0.7792379 0.6267177 -0.003664076 0.05969142 -0.6267173 0.7792452 0.001428186 0.07223391 0.003750264 0.001183271 0.999992 0.690237 0 0 0 1 0.7792379 0.6267177 -0.003664076 0.05980449 -0.6267173 0.7792452 0.001428186 0.07219034 0.003750264 0.001183271 0.999992 0.659456 0 0 0 1 0.7792379 0.6267177 -0.003664076 0.05980449 -0.6267173 0.7792452 0.001428186 0.07219034 0.003750264 0.001183271 0.999992 0.659456 0 0 0 1 0.7792379 0.6267177 -0.003664076 0.05980449 -0.6267173 0.7792452 0.001428186 0.07219034 0.003750264 0.001183271 0.999992 0.659456 0 0 0 1 0.7792379 0.6267177 -0.003664076 0.05980449 -0.6267173 0.7792452 0.001428186 0.07219034 0.003750264 0.001183271 0.999992 0.659456 0 0 0 1 0.7792379 0.6267177 -0.003664076 0.05980449 -0.6267173 0.7792452 0.001428186 0.07219034 0.003750264 0.001183271 0.999992 0.659456 0 0 0 1 0.7792379 0.6267177 -0.003664076 0.05980449 -0.6267173 0.7792452 0.001428186 0.07219034 0.003750264 0.001183271 0.999992 0.659456 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-EYE_matrix-output-array" count="11" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-EYE_matrix-interpolation">
|
||||
<Name_array id="node-EYE_matrix-interpolation-array" count="11">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-EYE_matrix-interpolation-array" count="11" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<sampler id="node-Bip01_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-Bip01_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-Bip01_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-Bip01_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<sampler id="node-Bip01_Pelvis_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-Bip01_Pelvis_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-Bip01_Pelvis_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-Bip01_Pelvis_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<sampler id="node-Bip01_Spine_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-Bip01_Spine_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-Bip01_Spine_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-Bip01_Spine_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<sampler id="node-Bip01_Spine2_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-Bip01_Spine2_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-Bip01_Spine2_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-Bip01_Spine2_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<sampler id="node-Bip01_Head_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-Bip01_Head_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-Bip01_Head_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-Bip01_Head_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<sampler id="node-ALTEYE_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-ALTEYE_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-ALTEYE_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-ALTEYE_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<sampler id="node-Bip01_L_UpperArm_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-Bip01_L_UpperArm_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-Bip01_L_UpperArm_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-Bip01_L_UpperArm_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<sampler id="node-Bip01_L_Forearm_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-Bip01_L_Forearm_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-Bip01_L_Forearm_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-Bip01_L_Forearm_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<sampler id="node-Bip01_L_Hand_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-Bip01_L_Hand_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-Bip01_L_Hand_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-Bip01_L_Hand_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<sampler id="node-Bip01_R_UpperArm_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-Bip01_R_UpperArm_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-Bip01_R_UpperArm_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-Bip01_R_UpperArm_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<sampler id="node-Bip01_L_Thigh_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-Bip01_L_Thigh_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-Bip01_L_Thigh_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-Bip01_L_Thigh_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<sampler id="node-Bip01_L_Calf_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-Bip01_L_Calf_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-Bip01_L_Calf_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-Bip01_L_Calf_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<sampler id="node-Bip01_L_Foot_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-Bip01_L_Foot_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-Bip01_L_Foot_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-Bip01_L_Foot_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<sampler id="node-Bip01_L_Toe0_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-Bip01_L_Toe0_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-Bip01_L_Toe0_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-Bip01_L_Toe0_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<sampler id="node-Bip01_R_Thigh_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-Bip01_R_Thigh_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-Bip01_R_Thigh_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-Bip01_R_Thigh_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<sampler id="node-Bip01_R_Calf_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-Bip01_R_Calf_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-Bip01_R_Calf_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-Bip01_R_Calf_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<sampler id="node-Bip01_R_Foot_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-Bip01_R_Foot_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-Bip01_R_Foot_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-Bip01_R_Foot_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<sampler id="node-Bip01_R_Toe0_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-Bip01_R_Toe0_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-Bip01_R_Toe0_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-Bip01_R_Toe0_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<sampler id="node-Bip01_FannyPack_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-Bip01_FannyPack_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-Bip01_FannyPack_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-Bip01_FannyPack_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<sampler id="node-EYE_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-EYE_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-EYE_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-EYE_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<channel source="#node-Bip01_matrix-sampler" target="node-Bip01/matrix"/>
|
||||
<channel source="#node-Bip01_Pelvis_matrix-sampler" target="node-Bip01_Pelvis/matrix"/>
|
||||
<channel source="#node-Bip01_Spine_matrix-sampler" target="node-Bip01_Spine/matrix"/>
|
||||
<channel source="#node-Bip01_Spine2_matrix-sampler" target="node-Bip01_Spine2/matrix"/>
|
||||
<channel source="#node-Bip01_Head_matrix-sampler" target="node-Bip01_Head/matrix"/>
|
||||
<channel source="#node-ALTEYE_matrix-sampler" target="node-ALTEYE/matrix"/>
|
||||
<channel source="#node-Bip01_L_UpperArm_matrix-sampler" target="node-Bip01_L_UpperArm/matrix"/>
|
||||
<channel source="#node-Bip01_L_Forearm_matrix-sampler" target="node-Bip01_L_Forearm/matrix"/>
|
||||
<channel source="#node-Bip01_L_Hand_matrix-sampler" target="node-Bip01_L_Hand/matrix"/>
|
||||
<channel source="#node-Bip01_R_UpperArm_matrix-sampler" target="node-Bip01_R_UpperArm/matrix"/>
|
||||
<channel source="#node-Bip01_L_Thigh_matrix-sampler" target="node-Bip01_L_Thigh/matrix"/>
|
||||
<channel source="#node-Bip01_L_Calf_matrix-sampler" target="node-Bip01_L_Calf/matrix"/>
|
||||
<channel source="#node-Bip01_L_Foot_matrix-sampler" target="node-Bip01_L_Foot/matrix"/>
|
||||
<channel source="#node-Bip01_L_Toe0_matrix-sampler" target="node-Bip01_L_Toe0/matrix"/>
|
||||
<channel source="#node-Bip01_R_Thigh_matrix-sampler" target="node-Bip01_R_Thigh/matrix"/>
|
||||
<channel source="#node-Bip01_R_Calf_matrix-sampler" target="node-Bip01_R_Calf/matrix"/>
|
||||
<channel source="#node-Bip01_R_Foot_matrix-sampler" target="node-Bip01_R_Foot/matrix"/>
|
||||
<channel source="#node-Bip01_R_Toe0_matrix-sampler" target="node-Bip01_R_Toe0/matrix"/>
|
||||
<channel source="#node-Bip01_FannyPack_matrix-sampler" target="node-Bip01_FannyPack/matrix"/>
|
||||
<channel source="#node-EYE_matrix-sampler" target="node-EYE/matrix"/>
|
||||
</animation>
|
||||
</library_animations>
|
||||
<scene>
|
||||
<instance_visual_scene url="#MaxScene"/>
|
||||
</scene>
|
||||
</COLLADA>
|
||||
|
|
@ -0,0 +1,34 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
// Copyright (c) 2012 GarageGames, LLC
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
// of this software and associated documentation files (the "Software"), to
|
||||
// deal in the Software without restriction, including without limitation the
|
||||
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||
// sell copies of the Software, and to permit persons to whom the Software is
|
||||
// furnished to do so, subject to the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included in
|
||||
// all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||
// IN THE SOFTWARE.
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
singleton TSShapeConstructor(PlayerAnim_Lurker_LandDAE)
|
||||
{
|
||||
baseShape = "./PlayerAnim_Lurker_Land.dae";
|
||||
neverImport = "EnvironmentAmbientLight";
|
||||
loadLights = "0";
|
||||
};
|
||||
|
||||
function PlayerAnim_Lurker_LandDAE::onLoad(%this)
|
||||
{
|
||||
%this.setSequenceCyclic("ambient", "false");
|
||||
%this.addSequence("ambient", "Land", "1100", "1110");
|
||||
}
|
||||
|
|
@ -0,0 +1,918 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<COLLADA xmlns="http://www.collada.org/2005/11/COLLADASchema" version="1.4.1">
|
||||
<asset>
|
||||
<contributor>
|
||||
<author>MattO</author>
|
||||
<authoring_tool>OpenCOLLADA for 3ds Max; Version: 1.3.0; Revision: 839M; Platform: x64; Configuration: Release_Max2012</authoring_tool>
|
||||
<source_data>file:///C:/Dropbox/Prj/GGStout/Lurker/SoldierTP_Lurker_Animation_Master.max</source_data>
|
||||
</contributor>
|
||||
<created>2011-09-29T23:38:24</created>
|
||||
<modified>2011-09-29T23:38:24</modified>
|
||||
<unit name="meter" meter="1"/>
|
||||
<up_axis>Z_UP</up_axis>
|
||||
</asset>
|
||||
<library_effects>
|
||||
<effect id="ShapeBounds">
|
||||
<profile_COMMON>
|
||||
<technique sid="common">
|
||||
<blinn>
|
||||
<emission>
|
||||
<color>0 0 0 1</color>
|
||||
</emission>
|
||||
<ambient>
|
||||
<color>0.1647059 1 0 1</color>
|
||||
</ambient>
|
||||
<diffuse>
|
||||
<color>0.1647059 1 0 1</color>
|
||||
</diffuse>
|
||||
<specular>
|
||||
<color>0.9 0.9 0.9 1</color>
|
||||
</specular>
|
||||
<shininess>
|
||||
<float>10</float>
|
||||
</shininess>
|
||||
<reflective>
|
||||
<color>0 0 0 1</color>
|
||||
</reflective>
|
||||
<transparent opaque="A_ONE">
|
||||
<color>1 1 1 1</color>
|
||||
</transparent>
|
||||
<transparency>
|
||||
<float>1</float>
|
||||
</transparency>
|
||||
</blinn>
|
||||
</technique>
|
||||
</profile_COMMON>
|
||||
<extra>
|
||||
<technique profile="OpenCOLLADA3dsMax">
|
||||
<extended_shader>
|
||||
<apply_reflection_dimming>0</apply_reflection_dimming>
|
||||
<dim_level>0</dim_level>
|
||||
<falloff_type>0</falloff_type>
|
||||
<index_of_refraction>1.5</index_of_refraction>
|
||||
<opacity_type>0</opacity_type>
|
||||
<reflection_level>3</reflection_level>
|
||||
<wire_size>1</wire_size>
|
||||
<wire_units>0</wire_units>
|
||||
</extended_shader>
|
||||
<shader>
|
||||
<ambient_diffuse_lock>1</ambient_diffuse_lock>
|
||||
<ambient_diffuse_texture_lock>1</ambient_diffuse_texture_lock>
|
||||
<diffuse_specular_lock>0</diffuse_specular_lock>
|
||||
<soften>0.1</soften>
|
||||
<use_self_illum_color>0</use_self_illum_color>
|
||||
</shader>
|
||||
</technique>
|
||||
</extra>
|
||||
</effect>
|
||||
</library_effects>
|
||||
<library_materials>
|
||||
<material id="ShapeBounds-material" name="ShapeBounds">
|
||||
<instance_effect url="#ShapeBounds"/>
|
||||
</material>
|
||||
</library_materials>
|
||||
<library_geometries>
|
||||
<geometry id="geom-Bounds" name="Bounds">
|
||||
<mesh>
|
||||
<source id="geom-Bounds-positions">
|
||||
<float_array id="geom-Bounds-positions-array" count="24">-0.425 -0.425 0 0.425 -0.425 0 -0.425 0.425 0 0.425 0.425 0 -0.425 -0.425 1.84 0.425 -0.425 1.84 -0.425 0.425 1.84 0.425 0.425 1.84</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#geom-Bounds-positions-array" count="8" stride="3">
|
||||
<param name="X" type="float"/>
|
||||
<param name="Y" type="float"/>
|
||||
<param name="Z" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="geom-Bounds-normals">
|
||||
<float_array id="geom-Bounds-normals-array" count="72">0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 1 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#geom-Bounds-normals-array" count="24" stride="3">
|
||||
<param name="X" type="float"/>
|
||||
<param name="Y" type="float"/>
|
||||
<param name="Z" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="geom-Bounds-map1">
|
||||
<float_array id="geom-Bounds-map1-array" count="36">0 0 0 1 0 0 0 1 0 1 1 0 0 0 0 1 0 0 0 1 0 1 1 0 0 0 0 1 0 0 0 1 0 1 1 0</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#geom-Bounds-map1-array" count="12" stride="3">
|
||||
<param name="S" type="float"/>
|
||||
<param name="T" type="float"/>
|
||||
<param name="P" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<vertices id="geom-Bounds-vertices">
|
||||
<input semantic="POSITION" source="#geom-Bounds-positions"/>
|
||||
</vertices>
|
||||
<triangles material="ShapeBounds" count="12">
|
||||
<input semantic="VERTEX" source="#geom-Bounds-vertices" offset="0"/>
|
||||
<input semantic="NORMAL" source="#geom-Bounds-normals" offset="1"/>
|
||||
<input semantic="TEXCOORD" source="#geom-Bounds-map1" offset="2" set="0"/>
|
||||
<p>0 0 9 2 1 11 3 2 10 3 2 10 1 3 8 0 0 9 4 4 8 5 5 9 7 6 11 7 6 11 6 7 10 4 4 8 0 8 4 1 9 5 5 10 7 5 10 7 4 11 6 0 8 4 1 12 0 3 13 1 7 14 3 7 14 3 5 15 2 1 12 0 3 16 4 2 17 5 6 18 7 6 18 7 7 19 6 3 16 4 2 20 0 0 21 1 4 22 3 4 22 3 6 23 2 2 20 0</p>
|
||||
</triangles>
|
||||
</mesh>
|
||||
<extra>
|
||||
<technique profile="OpenCOLLADA3dsMax">
|
||||
<max_box>
|
||||
<generateuvs>1</generateuvs>
|
||||
<height>1.84</height>
|
||||
<heightsegments>1</heightsegments>
|
||||
<length>0.85</length>
|
||||
<lengthsegments>1</lengthsegments>
|
||||
<width>0.85</width>
|
||||
<widthsegments>1</widthsegments>
|
||||
</max_box>
|
||||
</technique>
|
||||
</extra>
|
||||
</geometry>
|
||||
</library_geometries>
|
||||
<library_lights>
|
||||
<light id="EnvironmentAmbientLight" name="EnvironmentAmbientLight">
|
||||
<technique_common>
|
||||
<ambient>
|
||||
<color>0 0 0</color>
|
||||
</ambient>
|
||||
</technique_common>
|
||||
</light>
|
||||
</library_lights>
|
||||
<library_visual_scenes>
|
||||
<visual_scene id="MaxScene">
|
||||
<node name="EnvironmentAmbientLight">
|
||||
<instance_light url="#EnvironmentAmbientLight"/>
|
||||
</node>
|
||||
<node id="node-Bip01" name="Bip01">
|
||||
<matrix sid="matrix">0.7792375 -0.6267175 0.003750234 -8.10623e-5 0.626718 0.7792453 0.001183393 0.009376879 -0.003664005 0.001428194 0.9999923 0.5605884 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_Pelvis" name="Bip01_Pelvis">
|
||||
<matrix sid="matrix">0.1747649 0.9844435 0.01811775 0 0.2778892 -0.06696894 0.958276 0 0.9445818 -0.1624383 -0.28527 0 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_Spine" name="Bip01_Spine">
|
||||
<matrix sid="matrix">0.9976641 0.06778118 -0.008484483 0.1928509 -0.06579353 0.9868717 0.1474982 -0.006243914 0.01837066 -0.1465954 0.989026 -0.05634505 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_Spine1" name="Bip01_Spine1">
|
||||
<matrix>0.9850422 0.02363086 -0.1706849 0.1022274 -0.01319329 0.9979871 0.06202855 -1.00823e-4 0.1718071 -0.05884887 0.9833714 5.93066e-6 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_Spine2" name="Bip01_Spine2">
|
||||
<matrix sid="matrix">0.9118831 -0.1827258 0.3675331 0.1268975 0.1518598 0.982094 0.111488 -1.68206e-4 -0.3813238 -0.04585051 0.9233038 7.80821e-6 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_Neck" name="Bip01_Neck">
|
||||
<matrix>0.840708 -0.4308255 0.3280237 0.2151071 0.4136219 0.9019013 0.1244631 -4.96805e-5 -0.3494668 0.03104065 0.9364345 -1.69128e-6 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_Head" name="Bip01_Head">
|
||||
<matrix sid="matrix">0.8256276 -0.1322618 -0.5484942 0.07051826 -0.4566818 0.4142266 -0.7873108 -0.01395923 0.331332 0.9005127 0.2815952 0 0 0 0 1</matrix>
|
||||
<node id="node-ALTEYE" name="ALTEYE">
|
||||
<matrix sid="matrix">0.08206864 0.1570575 0.984174 0.06454682 0.1160625 0.9792799 -0.1659546 0.2214611 -0.9898456 0.127845 0.06213956 0.04716256 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_L_Clavicle" name="Bip01_L_Clavicle">
|
||||
<matrix>-0.5778345 -0.4531802 0.6787745 -0.04690343 0.283809 -0.8913432 -0.3534966 -0.01204765 0.7652187 -0.01162016 0.6436654 0.05588403 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_UpperArm" name="Bip01_L_UpperArm">
|
||||
<matrix sid="matrix">0.8690073 -0.1269837 0.4782272 0.1824006 -0.2814526 0.6680567 0.6888286 2.98023e-8 -0.4069529 -0.7331955 0.5448063 1.19209e-7 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Forearm" name="Bip01_L_Forearm">
|
||||
<matrix sid="matrix">0.3559551 0.9345031 0 0.2843688 -0.9345031 0.3559549 -2.98023e-8 0 -7.45058e-9 0 1 0 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Hand" name="Bip01_L_Hand">
|
||||
<matrix sid="matrix">0.9826417 -0.06121665 -0.1751223 0.281068 -0.1088538 -0.9546604 -0.2770817 0 -0.1502202 0.2913349 -0.9447528 0 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Finger0" name="Bip01_L_Finger0">
|
||||
<matrix>0.6413842 0.3141903 0.6999362 0.02119672 0.7352949 0.00870291 -0.6776915 -0.004734337 -0.2190156 0.94932 -0.2254407 -0.02572191 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Finger01" name="Bip01_L_Finger01">
|
||||
<matrix>0.9975642 -0.0697564 -2.98023e-8 0.04982865 0.06975643 0.9975642 -1.58325e-8 0 -2.98023e-8 -4.47035e-8 1 8.9407e-8 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Finger02" name="Bip01_L_Finger02">
|
||||
<matrix>0.9203137 0.3911815 0 0.05202246 -0.3911815 0.9203136 -2.23517e-8 0 -2.98023e-8 5.96046e-8 1 -5.96046e-8 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_L_Finger1" name="Bip01_L_Finger1">
|
||||
<matrix>0.9592716 -0.2819768 -0.01693489 0.1199946 0.2798395 0.9567645 -0.07931916 -0.008367538 0.03856892 0.07134949 0.9967054 -0.04101384 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Finger11" name="Bip01_L_Finger11">
|
||||
<matrix>0.7001772 -0.7139691 0 0.03644174 0.7139691 0.7001771 0 0 4.47035e-8 -3.72529e-9 0.9999999 0 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Finger12" name="Bip01_L_Finger12">
|
||||
<matrix>0.8757257 -0.4828088 1.49012e-8 0.03117549 0.4828088 0.8757259 -2.98023e-8 0 1.49012e-8 7.45058e-9 1 0 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_L_Finger2" name="Bip01_L_Finger2">
|
||||
<matrix>0.6611331 -0.7495596 -0.03260919 0.1229538 0.7489769 0.656822 0.08728345 -0.008801997 -0.04400571 -0.08212954 0.9956497 -0.01328248 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Finger21" name="Bip01_L_Finger21">
|
||||
<matrix>0.8156036 -0.5786112 -2.23517e-8 0.03895509 0.5786112 0.8156037 4.19095e-8 0 1.86265e-9 -6.33299e-8 1 -5.96046e-8 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Finger22" name="Bip01_L_Finger22">
|
||||
<matrix>0.9762959 -0.2164396 -1.30385e-8 0.03800547 0.2164396 0.9762961 -1.7928e-8 5.96046e-8 2.6077e-8 6.61239e-8 1 5.96046e-8 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_L_Finger3" name="Bip01_L_Finger3">
|
||||
<matrix>0.4124629 -0.906479 -0.09038849 0.121188 0.9061533 0.3980611 0.1429456 -0.001191258 -0.09359702 -0.1408657 0.9855943 0.01196867 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Finger31" name="Bip01_L_Finger31">
|
||||
<matrix>0.9381479 -0.3462352 9.31323e-9 0.03155839 0.3462351 0.9381478 -5.40167e-8 5.96046e-8 -9.31323e-9 2.04891e-8 0.9999999 0 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Finger32" name="Bip01_L_Finger32">
|
||||
<matrix>0.9636304 -0.2672384 3.72529e-9 0.0336659 0.2672384 0.9636304 7.68341e-9 -1.19209e-7 -2.79397e-8 -1.43424e-7 0.9999999 -5.96046e-8 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_L_Finger4" name="Bip01_L_Finger4">
|
||||
<matrix>0.07120574 -0.9696807 0.2337719 0.1136796 0.9750154 0.1171046 0.1887628 0.005147457 -0.2104155 0.2144901 0.953792 0.03886575 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Finger41" name="Bip01_L_Finger41">
|
||||
<matrix>0.9790112 -0.2038069 0 0.03661615 0.203807 0.9790112 2.04891e-8 -5.96046e-8 -2.98023e-8 4.47035e-8 1 0 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Finger42" name="Bip01_L_Finger42">
|
||||
<matrix>0.9645152 0.2640274 -1.49012e-8 0.01772642 -0.2640274 0.9645153 1.11759e-8 0 5.96046e-8 -6.98492e-8 1 0 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_R_Clavicle" name="Bip01_R_Clavicle">
|
||||
<matrix>0.2073931 -0.1669672 -0.9639035 8.67009e-4 0.5679265 -0.7817281 0.2576057 -0.01629043 -0.7965221 -0.6008521 -0.06729986 -0.07212147 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_UpperArm" name="Bip01_R_UpperArm">
|
||||
<matrix sid="matrix">0.5832897 0.8093362 -0.06890497 0.1824007 -0.6477005 0.5146303 0.5618181 -1.49012e-8 0.4901603 -0.2830729 0.8243862 0 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Forearm" name="Bip01_R_Forearm">
|
||||
<matrix>-0.07265086 0.9973575 -2.98023e-8 0.2843689 -0.9973575 -0.07265082 0 0 7.45058e-8 0 1 -5.96046e-8 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Hand" name="Bip01_R_Hand">
|
||||
<matrix>0.9247895 0.3771958 -0.04987456 0.281068 0.2033486 -0.6007847 -0.7731152 5.96046e-8 -0.3215797 0.704827 -0.6323018 0 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Finger0" name="Bip01_R_Finger0">
|
||||
<matrix>0.5215105 0.269013 -0.8097274 0.02119678 0.7250715 0.3605264 0.5867637 -0.004734218 0.4497752 -0.893114 -0.007035489 0.02572185 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Finger01" name="Bip01_R_Finger01">
|
||||
<matrix>0.6423535 -0.7636236 0.06527574 0.04982859 0.7605615 0.6456373 0.06854746 -5.96046e-8 -0.09448884 0.005614473 0.9955102 0 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Finger02" name="Bip01_R_Finger02">
|
||||
<matrix>0.9505157 -0.3106764 4.09782e-8 0.0520224 0.3106765 0.9505159 0 5.96046e-8 5.02914e-8 -1.49012e-8 1 0 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_R_Finger1" name="Bip01_R_Finger1">
|
||||
<matrix>0.9820224 -0.1733427 -0.0747267 0.1199946 0.1795577 0.9799357 0.08651489 -0.008367568 0.05823064 -0.09837732 0.993444 0.04101384 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Finger11" name="Bip01_R_Finger11">
|
||||
<matrix>0.8240547 -0.5665103 3.72529e-9 0.03644174 0.5665103 0.8240548 7.45058e-9 0 -8.3819e-9 0 1 5.96046e-8 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Finger12" name="Bip01_R_Finger12">
|
||||
<matrix>0.8146399 -0.5796779 0.01831832 0.03117551 0.5799673 0.8142334 -0.02573049 5.96046e-8 7.45058e-9 0.03158512 0.9995011 5.96046e-8 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_R_Finger2" name="Bip01_R_Finger2">
|
||||
<matrix>0.6754012 -0.7374503 -1.52119e-4 0.1229538 0.7368313 0.6748427 -0.04082684 -0.008802041 0.03021043 0.02746242 0.9991661 0.01328242 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Finger21" name="Bip01_R_Finger21">
|
||||
<matrix>0.5508358 -0.8338858 -0.0348487 0.03895523 0.832222 0.5519371 -0.05265062 0 0.06313889 -9.77889e-9 0.9980047 0 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Finger22" name="Bip01_R_Finger22">
|
||||
<matrix>0.1984734 -0.9799246 0.01886613 0.0380054 0.9755272 0.199368 0.09272984 5.96046e-8 -0.09462959 0 0.9955126 1.19209e-7 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_R_Finger3" name="Bip01_R_Finger3">
|
||||
<matrix>0.7159052 -0.6949216 0.06755453 0.1211882 0.6883786 0.6863562 -0.234627 -0.001191258 0.1166809 0.2144738 0.9697352 -0.01196867 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Finger31" name="Bip01_R_Finger31">
|
||||
<matrix>0.4441952 -0.8949344 0.04222351 0.03155847 0.8909185 0.4461975 0.08468728 -2.98023e-8 -0.0946296 -2.32831e-10 0.9955125 0 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Finger32" name="Bip01_R_Finger32">
|
||||
<matrix>0.1993681 -0.9794359 -0.03095104 0.033666 0.9799249 0.1992686 0.006297085 0 -9.31323e-9 -0.03158511 0.9995011 -5.96046e-8 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_R_Finger4" name="Bip01_R_Finger4">
|
||||
<matrix>0.5925791 -0.7897949 -0.1583476 0.1136796 0.7783522 0.6120423 -0.1399001 0.005147427 0.2074078 -0.0403483 0.977422 -0.03886575 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Finger41" name="Bip01_R_Finger41">
|
||||
<matrix>0.4202556 -0.9064696 0.04120624 0.03661621 0.906853 0.421151 0.01578781 -2.98023e-8 -0.03166521 0.030733 0.9990261 0 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Finger42" name="Bip01_R_Finger42">
|
||||
<matrix>0.402447 -0.9138246 -0.05441486 0.01772636 0.9154232 0.4021218 0.0172832 0 0.006087616 -0.05676816 0.9983687 5.96046e-8 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-MOUNT0" name="MOUNT0">
|
||||
<matrix>-6.2238e-7 1 5.12227e-9 0.109539 -0.9999999 -6.57106e-7 4.75906e-7 0.0251826 4.76837e-7 4.88944e-9 0.9999999 0.01321661 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_L_Pauldron_Upper" name="Bip01_L_Pauldron_Upper">
|
||||
<matrix>0.9726267 0.1182923 0.2000107 0.176903 0.1448455 -0.9816831 -0.1237686 -0.03908369 0.1817062 0.1493513 -0.9719452 0.2290199 0 0 0 1</matrix>
|
||||
</node>
|
||||
<node id="node-Bip01_R_Pauldron_Lower" name="Bip01_R_Pauldron_Lower">
|
||||
<matrix>-0.1156725 -0.940376 -0.3198653 0.172906 0.9097751 -0.2295502 0.3458564 -0.1133294 -0.3986599 -0.2509995 0.8820827 -0.2351094 0 0 0 1</matrix>
|
||||
</node>
|
||||
<node id="node-Bip01_L_Pauldron_Lower" name="Bip01_L_Pauldron_Lower">
|
||||
<matrix>-0.2099972 -0.7687201 0.6041284 0.1529202 0.4002344 -0.6313509 -0.6642358 -0.1054225 0.892028 0.1023053 0.4402496 0.2344802 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_L_Thigh" name="Bip01_L_Thigh">
|
||||
<matrix sid="matrix">0.06941558 0.9811829 -0.1801708 -0.1894343 0.5788191 0.107483 0.8083413 -0.03385841 0.812496 -0.1603979 -0.5604663 0.1843713 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Calf" name="Bip01_L_Calf">
|
||||
<matrix sid="matrix">-0.4811164 0.8766568 8.3819e-9 0.4629988 -0.8766566 -0.4811164 7.45058e-9 0 4.84288e-8 -8.00937e-8 1 -3.72529e-8 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Foot" name="Bip01_L_Foot">
|
||||
<matrix sid="matrix">0.7452981 -0.6553587 -0.1226229 0.3610502 0.6658939 0.740881 0.08764073 2.98023e-8 0.03341287 -0.1469723 0.9885762 -1.49012e-8 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Toe0" name="Bip01_L_Toe0">
|
||||
<matrix>4.75673e-7 -1 1.38953e-6 0.1486307 1 4.76139e-7 2.21444e-8 0.1543275 -2.21044e-8 1.38953e-6 1 0 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_R_Thigh" name="Bip01_R_Thigh">
|
||||
<matrix sid="matrix">-0.7011479 0.6797619 0.2152094 -0.194118 0.6917199 0.5752671 0.4365672 0.003519101 0.172959 0.4549629 -0.8735524 -0.0678035 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Calf" name="Bip01_R_Calf">
|
||||
<matrix sid="matrix">-0.5334122 0.8458556 -2.98023e-8 0.4629987 -0.8458555 -0.533412 -4.47035e-8 1.49012e-8 -1.62981e-8 0 1 2.98023e-8 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Foot" name="Bip01_R_Foot">
|
||||
<matrix sid="matrix">0.8321513 -0.5509112 0.06341217 0.3610501 0.5258561 0.8202248 0.2251812 0 -0.1760671 -0.1540391 0.9722511 0 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Toe0" name="Bip01_R_Toe0">
|
||||
<matrix sid="matrix">-0.4769142 -0.8369299 0.2685165 0.1486307 0.8723612 -0.4880459 0.02823377 0.1543275 0.1074186 0.2477084 0.9628614 0 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_FannyPack" name="Bip01_FannyPack">
|
||||
<matrix sid="matrix">-0.8322091 -0.4771121 0.2824753 0.2028495 -0.4932149 0.8697606 0.01598545 -0.1504242 -0.2533128 -0.1260178 -0.9591415 -0.008565158 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-EYE" name="EYE">
|
||||
<matrix sid="matrix">0.7792377 0.6267179 -0.003664042 0.05851448 -0.6267175 0.7792451 0.001428225 0.07268275 0.003750281 0.001183214 0.999992 1.009805 0 0 0 1</matrix>
|
||||
<node id="node-CAM" name="CAM">
|
||||
<matrix>1 -6.03104e-8 3.55271e-15 4.84288e-8 6.03104e-8 1 -2.32831e-9 -0.104 -3.55271e-15 2.32832e-9 1 0.3005601 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bounds" name="Bounds">
|
||||
<matrix>0.9999915 0.001706907 0.003750479 0 -0.001711356 0.9999978 0.001183292 0.1035326 -0.003748452 -0.0011897 0.9999923 -8.93474e-5 0 0 0 1</matrix>
|
||||
<instance_geometry url="#geom-Bounds">
|
||||
<bind_material>
|
||||
<technique_common>
|
||||
<instance_material symbol="ShapeBounds" target="#ShapeBounds-material"/>
|
||||
</technique_common>
|
||||
</bind_material>
|
||||
</instance_geometry>
|
||||
</node>
|
||||
</visual_scene>
|
||||
</library_visual_scenes>
|
||||
<library_animations>
|
||||
<animation>
|
||||
<source id="node-Bip01_matrix-input">
|
||||
<float_array id="node-Bip01_matrix-input-array" count="11">36.66667 36.7 36.73333 36.76667 36.8 36.83333 36.86666 36.9 36.93333 36.96667 37</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_matrix-input-array" count="11" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_matrix-output">
|
||||
<float_array id="node-Bip01_matrix-output-array" count="176">0.7792375 -0.6267175 0.003750205 -8.10623e-5 0.626718 0.7792453 0.00118339 0.009376823 -0.003663957 0.001428186 0.9999923 0.5605884 0 0 0 1 0.7813549 -0.6240765 0.003623366 -8.10623e-5 0.6229659 0.780286 0.05538231 0.009377837 -0.03739005 -0.04101598 0.9984586 0.566204 0 0 0 1 0.7813648 -0.6240627 0.00385195 -8.10623e-5 0.6160151 0.7722482 0.155429 0.009377539 -0.09997212 -0.1190739 0.9878395 0.5832218 0 0 0 1 0.7792375 -0.6267175 0.003750383 -8.10623e-5 0.6122218 0.7624669 0.209353 0.009377241 -0.1340647 -0.1608397 0.9778329 0.6123613 0 0 0 1 0.7798228 -0.6259887 0.003805279 -8.10623e-5 0.6130397 0.764894 0.1977862 0.009377121 -0.1267226 -0.1519053 0.9802378 0.6488247 0 0 0 1 0.7810016 -0.6245172 0.003858685 -8.10623e-5 0.615128 0.7702984 0.1681008 0.009376764 -0.1079542 -0.1289134 0.9857622 0.6855657 0 0 0 1 0.7818725 -0.6234267 0.003796756 -8.10623e-5 0.61796 0.7757933 0.1275543 0.009376049 -0.0824663 -0.09738492 0.9918243 0.7204622 0 0 0 1 0.7818673 -0.6234341 0.003671646 -8.10623e-5 0.6210306 0.7793437 0.08333307 0.009374797 -0.05481415 -0.06287515 0.996515 0.7514201 0 0 0 1 0.7809914 -0.6245313 0.003621339 -8.10623e-5 0.6238459 0.7803818 0.0426681 0.009372889 -0.0294736 -0.03106427 0.9990828 0.7763223 0 0 0 1 0.7798176 -0.625996 0.003688871 -8.10623e-5 0.6259118 0.7797884 0.01282387 0.009370207 -0.01090425 -0.007691323 0.999911 0.7929763 0 0 0 1 0.7792375 -0.6267175 0.003750205 -8.10623e-5 0.626718 0.7792453 0.00118339 0.009366631 -0.003663957 0.001428186 0.9999923 0.7990584 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_matrix-output-array" count="11" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_matrix-interpolation">
|
||||
<Name_array id="node-Bip01_matrix-interpolation-array" count="11">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_matrix-interpolation-array" count="11" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_Pelvis_matrix-input">
|
||||
<float_array id="node-Bip01_Pelvis_matrix-input-array" count="11">36.66667 36.7 36.73333 36.76667 36.8 36.83333 36.86666 36.9 36.93333 36.96667 37</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_Pelvis_matrix-input-array" count="11" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_Pelvis_matrix-output">
|
||||
<float_array id="node-Bip01_Pelvis_matrix-output-array" count="176">0.1747649 0.9844435 0.01811772 0 0.2778892 -0.06696891 0.958276 0 0.9445818 -0.1624383 -0.28527 0 0 0 0 1 0.1747649 0.9844434 0.01811772 0 0.2778892 -0.06696885 0.958276 0 0.9445818 -0.1624383 -0.28527 0 0 0 0 1 0.1747649 0.9844434 0.01811772 0 0.2778893 -0.06696885 0.9582759 0 0.9445817 -0.1624383 -0.28527 0 0 0 0 1 0.1747649 0.9844434 0.01811772 0 0.2778892 -0.06696885 0.9582759 0 0.9445817 -0.1624383 -0.28527 0 0 0 0 1 0.1667769 0.9855877 0.02832674 0 0.2561858 -0.07105737 0.9640123 0 0.9521314 -0.153518 -0.2643442 0 0 0 0 1 0.1446895 0.9880718 0.05271649 0 0.200122 -0.08139806 0.9763838 0 0.9690284 -0.1307227 -0.2095124 0 0 0 0 1 0.1111642 0.9904434 0.08163702 0 0.1228947 -0.09521585 0.9878415 0 0.986174 -0.0997799 -0.1323047 0 0 0 0 1 0.07084327 0.9917371 0.1069529 0 0.03809285 -0.109834 0.9932198 0 0.9967599 -0.06628882 -0.04555904 0 0 0 0 1 0.03110021 0.9918073 0.1238984 0 -0.04023689 -0.1226155 0.9916383 0 0.9987061 -0.03582543 0.03609389 0 0 0 0 1 0.001097738 0.9912964 0.1316441 0 -0.0981177 -0.1309022 0.9865281 0 0.9951742 -0.01399958 0.09712004 0 0 0 0 1 -0.009626686 0.991236 0.1317526 0 -0.1217414 -0.1319403 0.9837535 0 0.9925152 -0.006569385 0.1219446 0 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_Pelvis_matrix-output-array" count="11" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_Pelvis_matrix-interpolation">
|
||||
<Name_array id="node-Bip01_Pelvis_matrix-interpolation-array" count="11">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_Pelvis_matrix-interpolation-array" count="11" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_Spine_matrix-input">
|
||||
<float_array id="node-Bip01_Spine_matrix-input-array" count="11">36.66667 36.7 36.73333 36.76667 36.8 36.83333 36.86666 36.9 36.93333 36.96667 37</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_Spine_matrix-input-array" count="11" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_Spine_matrix-output">
|
||||
<float_array id="node-Bip01_Spine_matrix-output-array" count="176">0.9976641 0.06778115 -0.008484482 0.1928509 -0.06579351 0.9868717 0.1474981 -0.006243884 0.01837062 -0.1465954 0.989026 -0.05634504 0 0 0 1 0.9983265 0.05773299 0.003335356 0.1928517 -0.05763196 0.9885045 0.1397785 -0.006244003 0.004772841 -0.1397369 0.9901772 -0.05634558 0 0 0 1 0.9989898 0.03591704 0.02701336 0.1928536 -0.0390287 0.9913617 0.1252163 -0.006244301 -0.02228271 -0.126144 0.9917617 -0.05634671 0 0 0 1 0.9988907 0.01439321 0.0448389 0.1928552 -0.01948106 0.993153 0.1151863 -0.006244421 -0.04287397 -0.1159319 0.9923314 -0.0563476 0 0 0 1 0.9996013 -0.006595075 0.02745652 0.1941487 0.003656506 0.9943879 0.1057313 -0.004436731 -0.02799987 -0.1055887 0.9940154 -0.0519073 0 0 0 1 0.9989408 -0.03426963 -0.03071081 0.1969296 0.03687459 0.9953747 0.08871161 1.7114e-4 0.02752864 -0.08975005 0.9955838 -0.04033434 0 0 0 1 0.9912896 -0.06694054 -0.1134194 0.1994562 0.07490003 0.9949087 0.06743085 0.006399571 0.1083281 -0.07533872 0.9912564 -0.02418237 0 0 0 1 0.9736588 -0.1011332 -0.2043539 0.200495 0.1125841 0.9926146 0.04517704 0.01310718 0.1982758 -0.06699395 0.977854 -0.006225466 0 0 0 1 0.9486736 -0.1316953 -0.2875323 0.1998274 0.1450254 0.9891003 0.02546447 0.0191791 0.2810447 -0.06585693 0.9574322 0.01049453 0 0 0 1 0.924878 -0.152943 -0.3481508 0.198327 0.1675819 0.9857835 0.01213282 0.02351444 0.3413457 -0.06956529 0.9373598 0.02286028 0 0 0 1 0.9142388 -0.1596022 -0.3724172 0.1975123 0.1756539 0.9844077 0.009333312 0.02499341 0.3651207 -0.07394945 0.9280186 0.02780973 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_Spine_matrix-output-array" count="11" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_Spine_matrix-interpolation">
|
||||
<Name_array id="node-Bip01_Spine_matrix-interpolation-array" count="11">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_Spine_matrix-interpolation-array" count="11" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_Spine2_matrix-input">
|
||||
<float_array id="node-Bip01_Spine2_matrix-input-array" count="11">36.66667 36.7 36.73333 36.76667 36.8 36.83333 36.86666 36.9 36.93333 36.96667 37</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_Spine2_matrix-input-array" count="11" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_Spine2_matrix-output">
|
||||
<float_array id="node-Bip01_Spine2_matrix-output-array" count="176">0.9118831 -0.1827258 0.367533 0.1268974 0.1518598 0.9820941 0.111488 -1.68206e-4 -0.3813238 -0.04585045 0.9233038 7.80821e-6 0 0 0 1 0.9178661 -0.1905564 0.3481523 0.1268988 0.1596914 0.9803766 0.1155863 -1.67929e-4 -0.3633463 -0.05049574 0.9302848 8.58307e-6 0 0 0 1 0.9419761 -0.2315429 0.2430413 0.1269056 0.2042711 0.9699289 0.13233 -1.66137e-4 -0.2663729 -0.07500535 0.9609473 1.29044e-5 0 0 0 1 0.9161182 -0.3719102 -0.1497007 0.1269297 0.3896166 0.9139159 0.1138284 -1.56552e-4 0.09447991 -0.162606 0.9821572 2.78652e-5 0 0 0 1 0.9175886 -0.3706547 -0.1436881 0.1269295 0.3875068 0.9146366 0.1152322 -1.56663e-4 0.0887109 -0.1614159 0.9828913 2.77162e-5 0 0 0 1 0.9210054 -0.3675816 -0.1289696 0.1269289 0.3823397 0.9163834 0.118565 -1.56946e-4 0.07460314 -0.1585091 0.9845351 2.71797e-5 0 0 0 1 0.9252285 -0.3634133 -0.1090099 0.1269282 0.375329 0.9187139 0.1228522 -1.57356e-4 0.05550277 -0.154581 0.9864198 2.65539e-5 0 0 0 1 0.9294567 -0.3586807 -0.08636236 0.1269274 0.3673732 0.9213066 0.1274003 -1.57788e-4 0.03387027 -0.1501404 0.9880845 2.5779e-5 0 0 0 1 0.9331235 -0.3539009 -0.06351906 0.1269266 0.3593526 0.9238682 0.1316549 -1.58243e-4 0.0120905 -0.145676 0.9892585 2.49743e-5 0 0 0 1 0.9358069 -0.3497764 -0.04384094 0.126926 0.3524506 0.9260334 0.1350579 -1.5866e-4 -0.006641805 -0.1418399 0.9898675 2.42591e-5 0 0 0 1 0.9369742 -0.3477308 -0.03409594 0.1269254 0.349036 0.9270917 0.1366547 -1.58779e-4 -0.01590913 -0.1399426 0.9900317 2.40505e-5 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_Spine2_matrix-output-array" count="11" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_Spine2_matrix-interpolation">
|
||||
<Name_array id="node-Bip01_Spine2_matrix-interpolation-array" count="11">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_Spine2_matrix-interpolation-array" count="11" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_Head_matrix-input">
|
||||
<float_array id="node-Bip01_Head_matrix-input-array" count="11">36.66667 36.7 36.73333 36.76667 36.8 36.83333 36.86666 36.9 36.93333 36.96667 37</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_Head_matrix-input-array" count="11" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_Head_matrix-output">
|
||||
<float_array id="node-Bip01_Head_matrix-output-array" count="176">0.8256276 -0.1322618 -0.5484942 0.07051825 -0.4566818 0.4142265 -0.7873108 -0.01395922 0.331332 0.9005127 0.2815952 0 0 0 0 1 0.8310495 -0.2174434 -0.5119326 0.07051813 -0.3552489 0.5006971 -0.7893672 -0.01395916 0.4279659 0.8378667 0.3388575 0 0 0 0 1 0.8139972 -0.3650157 -0.4518542 0.07051825 -0.1868006 0.5720753 -0.798646 -0.01395916 0.5500129 0.7345023 0.3974825 0 0 0 0 1 0.8942967 -0.2273671 -0.3854058 0.07051825 -0.2696406 0.4135434 -0.8696411 -0.01395928 0.3571097 0.8816384 0.3085232 0 0 0 0 1 0.8919721 -0.2163474 -0.3969632 0.07051813 -0.2824831 0.4188375 -0.8630055 -0.01395916 0.352972 0.8819121 0.3124768 0 0 0 0 1 0.8946272 -0.2010577 -0.3990212 0.07051813 -0.2908811 0.4158005 -0.8616833 -0.0139591 0.3391613 0.8869532 0.3135025 0 0 0 0 1 0.9031031 -0.1782678 -0.3906725 0.07051813 -0.2959172 0.4009188 -0.8670046 -0.0139591 0.3111872 0.8986015 0.3093186 0 0 0 0 1 0.9164483 -0.1470872 -0.3721391 0.07051825 -0.2976131 0.3711184 -0.8796008 -0.01395916 0.2674859 0.9168621 0.2963356 0 0 0 0 1 0.9314519 -0.1109161 -0.3465469 0.07051813 -0.2952116 0.3264129 -0.8979448 -0.0139591 0.2127138 0.9386972 0.2712944 0 0 0 0 1 0.943209 -0.08027547 -0.3223544 0.07051813 -0.2893224 0.2783359 -0.915872 -0.01395916 0.1632449 0.9571233 0.2393035 0 0 0 0 1 0.9475709 -0.06889563 -0.3120296 0.07051813 -0.2855058 0.2560086 -0.9235506 -0.01395916 0.1435108 0.9642161 0.2229163 0 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_Head_matrix-output-array" count="11" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_Head_matrix-interpolation">
|
||||
<Name_array id="node-Bip01_Head_matrix-interpolation-array" count="11">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_Head_matrix-interpolation-array" count="11" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-ALTEYE_matrix-input">
|
||||
<float_array id="node-ALTEYE_matrix-input-array" count="11">36.66667 36.7 36.73333 36.76667 36.8 36.83333 36.86666 36.9 36.93333 36.96667 37</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-ALTEYE_matrix-input-array" count="11" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-ALTEYE_matrix-output">
|
||||
<float_array id="node-ALTEYE_matrix-output-array" count="176">0.08206862 0.1570575 0.984174 0.06454682 0.1160624 0.9792799 -0.1659546 0.2214611 -0.9898456 0.1278449 0.06213951 0.04716253 0 0 0 1 0.166249 0.3387875 0.926059 0.06454706 0.1433551 0.920847 -0.3626163 0.2214611 -0.975608 0.1930395 0.104523 0.04716253 0 0 0 1 0.3005013 0.6425346 0.7048754 0.06454694 0.1224226 0.7069351 -0.6966032 0.2214611 -0.9458922 0.2956225 0.133774 0.04716253 0 0 0 1 0.3518548 0.772836 0.5281322 0.06454694 0.07414948 0.5394257 -0.8387623 0.221461 -0.9331133 0.334283 0.1324941 0.04716253 0 0 0 1 0.3552116 0.7610018 0.5428645 0.06454694 0.07506883 0.5556385 -0.8280286 0.221461 -0.9317669 0.3348771 0.1402416 0.04716253 0 0 0 1 0.36497 0.7261021 0.5827292 0.06454694 0.07707947 0.6001902 -0.796135 0.2214611 -0.9278233 0.3354815 0.1630837 0.04716253 0 0 0 1 0.3802927 0.6681448 0.6395006 0.06454694 0.07831948 0.6657031 -0.7420955 0.221461 -0.921544 0.3322986 0.2008331 0.04716253 0 0 0 1 0.4000584 0.5886662 0.702443 0.06454706 0.07594543 0.74252 -0.6655049 0.2214611 -0.9133378 0.3195878 0.2523448 0.04716253 0 0 0 1 0.4222512 0.49628 0.7585585 0.06454706 0.06698644 0.8174474 -0.5720955 0.2214611 -0.9040004 0.2923808 0.311924 0.04716259 0 0 0 1 0.4420331 0.4142463 0.7956177 0.06454694 0.0525285 0.8735008 -0.483981 0.2214611 -0.8954592 0.255728 0.3643566 0.04716259 0 0 0 1 0.4506335 0.3792482 0.8081468 0.06454706 0.04412794 0.8947044 -0.4444743 0.2214611 -0.891618 0.2359566 0.3864483 0.04716253 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-ALTEYE_matrix-output-array" count="11" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-ALTEYE_matrix-interpolation">
|
||||
<Name_array id="node-ALTEYE_matrix-interpolation-array" count="11">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-ALTEYE_matrix-interpolation-array" count="11" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_UpperArm_matrix-input">
|
||||
<float_array id="node-Bip01_L_UpperArm_matrix-input-array" count="11">36.66667 36.7 36.73333 36.76667 36.8 36.83333 36.86666 36.9 36.93333 36.96667 37</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_UpperArm_matrix-input-array" count="11" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_UpperArm_matrix-output">
|
||||
<float_array id="node-Bip01_L_UpperArm_matrix-output-array" count="176">0.8690074 -0.1269837 0.4782272 0.1824005 -0.2814526 0.6680567 0.6888287 0 -0.4069529 -0.7331956 0.5448063 1.19209e-7 0 0 0 1 0.8721062 -0.1152002 0.4755628 0.1824005 -0.2956491 0.6503728 0.6997194 0 -0.3899008 -0.7508291 0.5331351 0 0 0 0 1 0.9123403 -0.03603702 0.4078443 0.1824007 -0.3181483 0.5646039 0.7615802 0 -0.2577155 -0.824575 0.5036458 1.19209e-7 0 0 0 1 0.7949118 0.5990179 0.09640067 0.1824006 -0.2936415 0.2407937 0.9250907 0 0.5309332 -0.7636727 0.3673063 0 0 0 0 1 0.7964358 0.5942115 0.1122611 0.1824006 -0.3051301 0.2346032 0.9229611 0 0.5220972 -0.7693336 0.3681583 1.19209e-7 0 0 0 1 0.8091101 0.5746576 0.1229218 0.1824006 -0.3105236 0.2404982 0.9196391 0 0.4989151 -0.7822592 0.3730344 1.19209e-7 0 0 0 1 0.8276308 0.5460091 0.1300055 0.1824008 -0.3115297 0.2542047 0.9156033 0 0.4668797 -0.798282 0.3804857 -1.19209e-7 0 0 0 1 0.8481922 0.512082 0.1354324 0.1824006 -0.3097821 0.2721691 0.911021 0 0.4296569 -0.8146755 0.3894854 0 0 0 0 1 0.867792 0.4765723 0.1407696 0.1824006 -0.3068781 0.2911452 0.9061237 0 0.390849 -0.829526 0.3989031 -1.19209e-7 0 0 0 1 0.8835635 0.4447926 0.1465446 0.1824007 -0.3043478 0.3075442 0.901548 0 0.3559329 -0.8411754 0.4071065 0 0 0 0 1 0.8909844 0.4284222 0.1503373 0.1824007 -0.3034183 0.315511 0.8991053 0 0.3377637 -0.8467039 0.4111065 -1.19209e-7 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_UpperArm_matrix-output-array" count="11" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_UpperArm_matrix-interpolation">
|
||||
<Name_array id="node-Bip01_L_UpperArm_matrix-interpolation-array" count="11">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_UpperArm_matrix-interpolation-array" count="11" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_Forearm_matrix-input">
|
||||
<float_array id="node-Bip01_L_Forearm_matrix-input-array" count="11">36.66667 36.7 36.73333 36.76667 36.8 36.83333 36.86666 36.9 36.93333 36.96667 37</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_Forearm_matrix-input-array" count="11" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_Forearm_matrix-output">
|
||||
<float_array id="node-Bip01_L_Forearm_matrix-output-array" count="176">0.3559551 0.9345031 0 0.2843688 -0.9345031 0.355955 0 0 0 0 1 0 0 0 0 1 0.3502892 0.9366415 0 0.284369 -0.9366416 0.3502893 0 0 0 0 1 0 0 0 0 1 0.2853079 0.9584358 0 0.2843688 -0.958436 0.285308 0 1.19209e-7 0 0 1 0 0 0 0 1 0.4573161 0.8893043 0 0.2843689 -0.8893044 0.457316 0 0 0 0 1 0 0 0 0 1 0.45723 0.8893486 0 0.2843689 -0.8893485 0.45723 0 0 0 0 1 0 0 0 0 1 0.4438388 0.8961066 0 0.2843688 -0.8961066 0.4438388 0 0 0 0 1 0 0 0 0 1 0.4229894 0.9061347 0 0.2843689 -0.9061349 0.4229895 0 0 1.71363e-7 0 1 0 0 0 0 1 0.3988789 0.9170038 0 0.2843689 -0.9170037 0.3988789 0 0 0 0 1 0 0 0 0 1 0.375011 0.9270206 0 0.284369 -0.9270204 0.375011 0 0 0 0 1 1.19209e-7 0 0 0 1 0.3550955 0.93483 0 0.2843688 -0.9348301 0.3550953 0 0 0 0 0.9999999 0 0 0 0 1 0.3454592 0.9384338 0 0.284369 -0.9384337 0.3454592 0 0 0 0 1 0 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_Forearm_matrix-output-array" count="11" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_Forearm_matrix-interpolation">
|
||||
<Name_array id="node-Bip01_L_Forearm_matrix-interpolation-array" count="11">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_Forearm_matrix-interpolation-array" count="11" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_Hand_matrix-input">
|
||||
<float_array id="node-Bip01_L_Hand_matrix-input-array" count="11">36.66667 36.7 36.73333 36.76667 36.8 36.83333 36.86666 36.9 36.93333 36.96667 37</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_Hand_matrix-input-array" count="11" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_Hand_matrix-output">
|
||||
<float_array id="node-Bip01_L_Hand_matrix-output-array" count="176">0.9826417 -0.06121665 -0.1751222 0.281068 -0.1088538 -0.9546604 -0.2770817 0 -0.1502202 0.2913349 -0.9447528 0 0 0 0 1 0.9826418 -0.0506947 -0.1784515 0.281068 -0.09928017 -0.956299 -0.2750188 0 -0.1567111 0.2879617 -0.9447325 1.19209e-7 0 0 0 1 0.9791395 0.05851382 -0.194581 0.281068 -0.001066505 -0.9561438 -0.2928956 0 -0.2031859 0.2869933 -0.9361359 0 0 0 0 1 0.9218553 0.2877709 -0.259559 0.281068 0.1588538 -0.8915145 -0.4242259 0 -0.3534805 0.3498429 -0.8675607 0 0 0 0 1 0.9267256 0.2778168 -0.2529779 0.2810682 0.1533617 -0.8943194 -0.4203246 0 -0.3430162 0.3507285 -0.8713951 0 0 0 0 1 0.9318846 0.2701197 -0.242129 0.281068 0.1497586 -0.8944106 -0.4214287 0 -0.3303991 0.356462 -0.8739402 0 0 0 0 1 0.9370189 0.263535 -0.2292267 0.2810681 0.1470874 -0.8929823 -0.4253798 0 -0.3167978 0.3648726 -0.875504 0 0 0 0 1 0.9419075 0.2572081 -0.2159957 0.281068 0.1446868 -0.8910836 -0.4301577 0 -0.3031103 0.373917 -0.8765331 0 0 0 0 1 0.9462943 0.2508345 -0.2039832 0.281068 0.1422163 -0.889558 -0.434121 0 -0.2903475 0.3817964 -0.8774564 -1.19209e-7 0 0 0 1 0.9497576 0.2449622 -0.1948181 0.281068 0.139801 -0.8889302 -0.4361867 0 -0.280029 0.3870359 -0.8785142 0 0 0 0 1 0.9513547 0.2418778 -0.1908387 0.281068 0.1384912 -0.8890296 -0.4364017 0 -0.2752172 0.3887432 -0.8792804 0 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_Hand_matrix-output-array" count="11" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_Hand_matrix-interpolation">
|
||||
<Name_array id="node-Bip01_L_Hand_matrix-interpolation-array" count="11">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_Hand_matrix-interpolation-array" count="11" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_R_UpperArm_matrix-input">
|
||||
<float_array id="node-Bip01_R_UpperArm_matrix-input-array" count="11">36.66667 36.7 36.73333 36.76667 36.8 36.83333 36.86666 36.9 36.93333 36.96667 37</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_R_UpperArm_matrix-input-array" count="11" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_R_UpperArm_matrix-output">
|
||||
<float_array id="node-Bip01_R_UpperArm_matrix-output-array" count="176">0.5832898 0.8093362 -0.06890493 0.1824007 -0.6477006 0.5146303 0.5618181 0 0.4901603 -0.2830729 0.8243862 0 0 0 0 1 0.578579 0.8131721 -0.06322652 0.1824007 -0.6620072 0.5134751 0.5459762 0 0.4764376 -0.2740339 0.8354117 1.19209e-7 0 0 0 1 0.5216467 0.8501737 -0.07133972 0.1824007 -0.7301838 0.4881395 0.4780707 0 0.4412671 -0.1972929 0.8754195 1.19209e-7 0 0 0 1 0.2751279 0.9375413 -0.2128877 0.1824006 -0.9167576 0.3225356 0.2356399 0 0.289586 0.1303353 0.9482368 0 0 0 0 1 0.2850331 0.9369003 -0.2024203 0.1824006 -0.9179688 0.3275924 0.2236436 0 0.2758432 0.1220697 0.9534199 0 0 0 0 1 0.2962915 0.9362393 -0.1888583 0.1824007 -0.9166901 0.3342724 0.2189545 1.19209e-7 0.2681239 0.1082503 0.9572833 -1.19209e-7 0 0 0 1 0.3078926 0.9353891 -0.1739242 0.1824007 -0.9138264 0.3416231 0.2195788 0 0.2648082 0.09132987 0.9599665 0 0 0 0 1 0.319379 0.9342238 -0.1588166 0.1824006 -0.9099028 0.3491439 0.2239988 -1.19209e-7 0.2647151 0.07296729 0.9615623 0 0 0 0 1 0.3303007 0.9327245 -0.1446598 0.1824006 -0.9053843 0.3564091 0.230764 0 0.2667973 0.05475115 0.9621962 0 0 0 0 1 0.3396618 0.9310934 -0.1330216 0.1824007 -0.9010024 0.3626891 0.2380154 0 0.2698602 0.03900802 0.962109 0 0 0 0 1 0.344438 0.9301257 -0.1273916 0.1824007 -0.8985946 0.3659243 0.2421302 1.19209e-7 0.2718274 0.03107458 0.9618443 0 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_R_UpperArm_matrix-output-array" count="11" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_R_UpperArm_matrix-interpolation">
|
||||
<Name_array id="node-Bip01_R_UpperArm_matrix-interpolation-array" count="11">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_R_UpperArm_matrix-interpolation-array" count="11" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_Thigh_matrix-input">
|
||||
<float_array id="node-Bip01_L_Thigh_matrix-input-array" count="11">36.66667 36.7 36.73333 36.76667 36.8 36.83333 36.86666 36.9 36.93333 36.96667 37</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_Thigh_matrix-input-array" count="11" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_Thigh_matrix-output">
|
||||
<float_array id="node-Bip01_L_Thigh_matrix-output-array" count="176">0.06941556 0.9811829 -0.1801708 -0.1894342 0.5788191 0.1074829 0.8083413 -0.03385835 0.812496 -0.1603978 -0.5604664 0.1843713 0 0 0 1 0.121211 0.9776809 -0.1716028 -0.1920116 0.581862 0.07007932 0.8102624 -0.03064954 0.8042043 -0.1980619 -0.5603811 0.1822558 0 0 0 1 0.2066605 0.9672518 -0.1473624 -0.1969989 0.5829241 -7.56323e-4 0.8125262 -0.02392566 0.7858061 -0.253818 -0.5639907 0.1778909 0 0 0 1 0.2196366 0.9680564 -0.1209395 -0.2006448 0.5833587 -0.03095841 0.8116243 -0.01788616 0.781954 -0.2488135 -0.571524 0.1744961 0 0 0 1 0.1377051 0.9850724 -0.103293 -0.1990782 0.5872048 0.002789318 0.8094335 -0.01324945 0.7976388 -0.1721173 -0.5780554 0.1734586 0 0 0 1 0.02365481 0.9957394 -0.08912909 -0.1921076 0.5878008 0.0582627 0.8069053 -0.008483409 0.8086602 -0.07147735 -0.583918 0.1731123 0 0 0 1 -0.1054769 0.9914114 -0.07731741 -0.1817684 0.5812157 0.1245504 0.8041612 -0.004441678 0.8068845 0.03988236 -0.5893613 0.1725334 0 0 0 1 -0.2328642 0.9701804 -0.06726503 -0.1701778 0.5664418 0.1915308 0.8015359 -0.001691401 0.7905176 0.1485472 -0.5941513 0.1711305 0 0 0 1 -0.3425669 0.9376333 -0.05908983 -0.1594725 0.5463093 0.2499746 0.7994114 -3.58269e-4 0.7643257 0.2415705 -0.5978711 0.1689803 0 0 0 1 -0.4195957 0.9061365 -0.05344325 -0.1516553 0.5275161 0.2913388 0.798028 -1.25617e-4 0.7386925 0.306657 -0.6002461 0.1668348 0 0 0 1 -0.4488804 0.8921269 -0.05115211 -0.1485697 0.5193912 0.3070599 0.7974631 -4.51192e-4 0.7271448 0.3313975 -0.6011958 0.1658256 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_Thigh_matrix-output-array" count="11" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_Thigh_matrix-interpolation">
|
||||
<Name_array id="node-Bip01_L_Thigh_matrix-interpolation-array" count="11">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_Thigh_matrix-interpolation-array" count="11" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_Calf_matrix-input">
|
||||
<float_array id="node-Bip01_L_Calf_matrix-input-array" count="11">36.66667 36.7 36.73333 36.76667 36.8 36.83333 36.86666 36.9 36.93333 36.96667 37</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_Calf_matrix-input-array" count="11" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_Calf_matrix-output">
|
||||
<float_array id="node-Bip01_L_Calf_matrix-output-array" count="176">-0.4811164 0.8766568 0 0.4629988 -0.8766566 -0.4811164 0 0 0 0 1 0 0 0 0 1 -0.4778778 0.8784264 0 0.4629987 -0.8784264 -0.4778779 0 0 0 0 1 0 0 0 0 1 -0.4544729 0.8907606 0 0.4629988 -0.8907604 -0.4544728 0 0 0 0 1 0 0 0 0 1 -0.3931061 0.9194931 0 0.4629988 -0.9194931 -0.393106 0 0 0 0 1 0 0 0 0 1 -0.2953288 0.955396 0 0.4629988 -0.9553958 -0.2953288 0 0 0 0 1 0 0 0 0 1 -0.1749787 0.9845721 0 0.4629988 -0.984572 -0.1749788 0 0 0 0 1 0 0 0 0 1 -0.03492331 0.9993903 0 0.4629988 -0.9993901 -0.03492331 0 0 0 0 1 0 0 0 0 1 0.1149709 0.993369 0 0.4629987 -0.9933688 0.1149709 0 0 0 0 1 0 0 0 0 1 0.2557927 0.9667316 0 0.4629987 -0.9667314 0.2557927 0 0 1.2666e-7 0 1 0 0 0 0 1 0.3614778 0.9323806 0 0.4629987 -0.9323807 0.3614777 0 0 0 0 1 0 0 0 0 1 0.4034072 0.9150204 0 0.4629987 -0.9150204 0.4034072 0 0 0 0 1 0 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_Calf_matrix-output-array" count="11" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_Calf_matrix-interpolation">
|
||||
<Name_array id="node-Bip01_L_Calf_matrix-interpolation-array" count="11">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_Calf_matrix-interpolation-array" count="11" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_Foot_matrix-input">
|
||||
<float_array id="node-Bip01_L_Foot_matrix-input-array" count="11">36.66667 36.7 36.73333 36.76667 36.8 36.83333 36.86666 36.9 36.93333 36.96667 37</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_Foot_matrix-input-array" count="11" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_Foot_matrix-output">
|
||||
<float_array id="node-Bip01_L_Foot_matrix-output-array" count="176">0.7452982 -0.6553587 -0.1226229 0.3610502 0.6658939 0.740881 0.0876407 0 0.03341287 -0.1469722 0.9885762 0 0 0 0 1 0.7491344 -0.6509888 -0.1225208 0.3610501 0.6615161 0.7448559 0.08709901 0 0.03455978 -0.1462982 0.9886365 0 0 0 0 1 0.7620076 -0.6370357 -0.1163198 0.3610502 0.646744 0.7577196 0.08708339 0 0.03266257 -0.1415873 0.9893869 0 0 0 0 1 0.7798269 -0.6164749 -0.1087608 0.3610502 0.6253381 0.7751197 0.09023278 0 0.02867633 -0.1383781 0.9899642 0 0 0 0 1 0.7970135 -0.5943412 -0.1073701 0.3610501 0.6033289 0.7916315 0.09650832 0 0.02763861 -0.141698 0.9895241 0 0 0 0 1 0.8167119 -0.5670708 -0.1068316 0.3610502 0.5763733 0.810595 0.103585 0 0.027857 -0.1461738 0.9888666 0 0 0 0 1 0.8422111 -0.5289158 -0.1045402 0.3610501 0.538401 0.8352857 0.1114552 0 0.02837049 -0.1501534 0.9882555 0 0 0 0 1 0.8722576 -0.4788901 -0.09915065 0.3610501 0.4882072 0.8645499 0.1191916 0 0.02864098 -0.1523718 0.9879081 0 0 0 0 1 0.9015706 -0.4228774 -0.09135121 0.3610501 0.4316898 0.8932513 0.1254832 0 0.02853548 -0.1525673 0.987881 0 0 0 0 1 0.923389 -0.3746039 -0.08381205 0.36105 0.3828301 0.9147046 0.1294469 0 0.02817189 -0.1516156 0.9880379 0 0 0 0 1 0.9319396 -0.3536291 -0.08021998 0.3610501 0.3615515 0.9231072 0.1309721 0 0.02773594 -0.1510617 0.9881352 0 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_Foot_matrix-output-array" count="11" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_L_Foot_matrix-interpolation">
|
||||
<Name_array id="node-Bip01_L_Foot_matrix-interpolation-array" count="11">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_L_Foot_matrix-interpolation-array" count="11" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_R_Thigh_matrix-input">
|
||||
<float_array id="node-Bip01_R_Thigh_matrix-input-array" count="11">36.66667 36.7 36.73333 36.76667 36.8 36.83333 36.86666 36.9 36.93333 36.96667 37</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_R_Thigh_matrix-input-array" count="11" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_R_Thigh_matrix-output">
|
||||
<float_array id="node-Bip01_R_Thigh_matrix-output-array" count="176">-0.7011479 0.679762 0.2152094 -0.1941179 0.6917199 0.5752671 0.4365673 0.003519058 0.172959 0.4549629 -0.8735525 -0.0678035 0 0 0 1 -0.7433707 0.647573 0.1674786 -0.1932282 0.6477855 0.6346095 0.4214788 0.004979133 0.1666548 0.4218055 -0.8912386 -0.07021248 0 0 0 1 -0.7702957 0.62883 0.105912 -0.191317 0.6146016 0.6878143 0.3862335 0.008237302 0.1700271 0.3626077 -0.9163005 -0.07498145 0 0 0 1 -0.7920904 0.6063206 0.07048463 -0.1897128 0.5873525 0.7256462 0.3584054 0.01167291 0.1661616 0.3252887 -0.9309015 -0.07852149 0 0 0 1 -0.8144004 0.5762313 0.06862384 -0.1919386 0.5608468 0.7512082 0.3480477 0.01367241 0.1490051 0.3219377 -0.9349619 -0.07998842 0 0 0 1 -0.8341674 0.5456389 0.08026885 -0.1991264 0.5372276 0.7710013 0.3419705 0.0144 0.1247049 0.3283833 -0.9362765 -0.08073455 0 0 0 1 -0.8554229 0.5079078 0.1013971 -0.2093887 0.5096362 0.790541 0.3395817 0.01476722 0.09231758 0.3421616 -0.9350951 -0.08021014 0 0 0 1 -0.8767791 0.4636735 0.1275361 -0.2207323 0.4778055 0.809948 0.3401268 0.01538985 0.05441021 0.3591536 -0.9316912 -0.07819575 0 0 0 1 -0.8951681 0.4185004 0.1533983 -0.2311311 0.4454234 0.8271834 0.3425864 0.01643306 0.01648396 0.3749998 -0.9268783 -0.0751391 0 0 0 1 -0.9082674 0.3808133 0.1732964 -0.238689 0.4181563 0.8400803 0.3455584 0.0176112 -0.01398962 0.3863245 -0.922257 -0.07216668 0 0 0 1 -0.9150355 0.3601459 0.1816732 -0.2416654 0.4023433 0.847057 0.3472961 0.01840347 -0.02881032 0.3908832 -0.9199895 -0.0707941 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_R_Thigh_matrix-output-array" count="11" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_R_Thigh_matrix-interpolation">
|
||||
<Name_array id="node-Bip01_R_Thigh_matrix-interpolation-array" count="11">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_R_Thigh_matrix-interpolation-array" count="11" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_R_Calf_matrix-input">
|
||||
<float_array id="node-Bip01_R_Calf_matrix-input-array" count="11">36.66667 36.7 36.73333 36.76667 36.8 36.83333 36.86666 36.9 36.93333 36.96667 37</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_R_Calf_matrix-input-array" count="11" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_R_Calf_matrix-output">
|
||||
<float_array id="node-Bip01_R_Calf_matrix-output-array" count="176">-0.5334122 0.8458556 0 0.4629988 -0.8458555 -0.533412 0 0 0 0 1 0 0 0 0 1 -0.4548423 0.890572 0 0.4629988 -0.890572 -0.4548423 0 0 0 0 1 0 0 0 0 1 -0.2802326 0.9599322 0 0.4629988 -0.959932 -0.2802327 0 0 0 -1.19209e-7 1 0 0 0 0 1 -0.08194196 0.9966372 0 0.4629989 -0.9966373 -0.0819419 0 0 0 0 1 0 0 0 0 1 0.04119414 0.9991514 0 0.4629988 -0.999151 0.04119408 0 0 0 0 1 0 0 0 0 1 0.1412762 0.9899703 0 0.4629988 -0.98997 0.1412761 0 0 0 0 1 0 0 0 0 1 0.2286033 0.9735196 0 0.4629987 -0.9735196 0.2286034 0 0 0 0 1 0 0 0 0 1 0.305602 0.9521594 0 0.4629988 -0.9521592 0.305602 0 0 0 0 1 0 0 0 0 1 0.3700931 0.9289948 0 0.4629988 -0.9289946 0.3700931 0 0 0 0 1 0 0 0 0 1 0.417831 0.9085248 0 0.4629987 -0.9085247 0.417831 0 0 0 0 1 0 0 0 0 1 0.4439669 0.8960432 0 0.4629987 -0.8960431 0.4439669 0 0 0 0 0.9999999 0 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_R_Calf_matrix-output-array" count="11" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_R_Calf_matrix-interpolation">
|
||||
<Name_array id="node-Bip01_R_Calf_matrix-interpolation-array" count="11">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_R_Calf_matrix-interpolation-array" count="11" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_R_Foot_matrix-input">
|
||||
<float_array id="node-Bip01_R_Foot_matrix-input-array" count="11">36.66667 36.7 36.73333 36.76667 36.8 36.83333 36.86666 36.9 36.93333 36.96667 37</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_R_Foot_matrix-input-array" count="11" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_R_Foot_matrix-output">
|
||||
<float_array id="node-Bip01_R_Foot_matrix-output-array" count="176">0.8321513 -0.5509112 0.06341212 0.3610501 0.5258561 0.8202248 0.2251812 0 -0.1760671 -0.154039 0.9722511 0 0 0 0 1 0.7266551 -0.6854643 0.04594409 0.3610501 0.6696782 0.7216688 0.1752858 0 -0.1533085 -0.09660446 0.9834451 0 0 0 0 1 0.6248966 -0.7806782 0.006787121 0.3610501 0.7733047 0.6201422 0.1319985 0 -0.1072573 -0.07723689 0.9912267 0 0 0 0 1 0.6010782 -0.7991106 -0.01128202 0.3610501 0.7946683 0.5961181 0.1146534 0 -0.08489519 -0.07788109 0.9933415 0 0 0 0 1 0.635846 -0.771815 -0.001468658 0.3610501 0.7670183 0.6316803 0.1125309 0 -0.08592528 -0.07267868 0.9936472 0 0 0 0 1 0.6668425 -0.7449409 0.01960307 0.3610501 0.7381744 0.6639315 0.1195552 0 -0.1020767 -0.06525397 0.9926339 0 0 0 0 1 0.681573 -0.7299469 0.05134379 0.3610501 0.719839 0.6814345 0.1322094 0 -0.1314932 -0.05315089 0.9898912 0 0 0 0 1 0.6815406 -0.7261049 0.0909602 0.3610501 0.7117782 0.686634 0.1480044 0 -0.1699231 -0.03612738 0.9847949 0 0 0 0 1 0.6726219 -0.7278916 0.1332439 0.3610502 0.7093014 0.6855067 0.1642314 0 -0.2108822 -0.0159555 0.9773814 0 0 0 0 1 0.660017 -0.7314659 0.1712738 0.3610501 0.7094599 0.6818662 0.1781148 0 -0.2470707 0.003953218 0.9689894 0 0 0 0 1 0.6470301 -0.7364006 0.1976518 0.3610501 0.7123628 0.6762673 0.1876201 0 -0.2718289 0.01940399 0.9621499 0 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_R_Foot_matrix-output-array" count="11" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_R_Foot_matrix-interpolation">
|
||||
<Name_array id="node-Bip01_R_Foot_matrix-interpolation-array" count="11">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_R_Foot_matrix-interpolation-array" count="11" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_R_Toe0_matrix-input">
|
||||
<float_array id="node-Bip01_R_Toe0_matrix-input-array" count="11">36.66667 36.7 36.73333 36.76667 36.8 36.83333 36.86666 36.9 36.93333 36.96667 37</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_R_Toe0_matrix-input-array" count="11" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_R_Toe0_matrix-output">
|
||||
<float_array id="node-Bip01_R_Toe0_matrix-output-array" count="176">-0.4769142 -0.8369299 0.2685165 0.1486307 0.8723612 -0.4880459 0.02823376 0.1543275 0.1074186 0.2477083 0.9628614 0 0 0 0 1 -0.4655424 -0.838941 0.2818659 0.1486307 0.8770814 -0.4799162 0.02021223 0.1543274 0.1183151 0.256629 0.9592409 0 0 0 0 1 -0.4422045 -0.842323 0.3081352 0.1486306 0.8859668 -0.4637333 0.003781676 0.1543275 0.139707 0.2746698 0.9513351 0 0 0 0 1 -0.4302462 -0.8436928 0.3210461 0.1486306 0.8901289 -0.4556854 -0.004621863 0.1543275 0.1501955 0.2837839 0.9470522 0 0 0 0 1 -0.3983522 -0.8661625 0.3017912 0.1486307 0.9074743 -0.4200369 -0.007706522 0.1543274 0.1334385 0.2707979 0.9533429 0 0 0 0 1 -0.3704123 -0.887798 0.2731474 0.1486306 0.9220868 -0.3869169 -0.007145643 0.1543274 0.1120293 0.2492187 0.9619458 0 0 0 0 1 -0.332428 -0.9127529 0.2374318 0.1486306 0.9389233 -0.3440343 -0.007976412 0.1543275 0.08896511 0.2202787 0.9713715 0 0 0 0 1 -0.2865695 -0.9374934 0.1974437 0.1486306 0.9557137 -0.2941442 -0.009521245 0.1543274 0.06700307 0.1859712 0.980268 0 0 0 0 1 -0.2414084 -0.9575953 0.1572688 0.1486306 0.969234 -0.2459478 -0.009775161 0.1543275 0.0480405 0.1500705 0.9875075 0 0 0 0 1 -0.2045832 -0.9711939 0.1221798 0.1486306 0.9783001 -0.2070496 -0.007705569 0.1543275 0.03278088 0.1179521 0.992478 0 0 0 0 1 -0.180581 -0.9786912 0.09774488 0.1486306 0.9833316 -0.1817882 -0.003513634 0.1543275 0.02120751 0.09548115 0.9952054 0 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_R_Toe0_matrix-output-array" count="11" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_R_Toe0_matrix-interpolation">
|
||||
<Name_array id="node-Bip01_R_Toe0_matrix-interpolation-array" count="11">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_R_Toe0_matrix-interpolation-array" count="11" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_FannyPack_matrix-input">
|
||||
<float_array id="node-Bip01_FannyPack_matrix-input-array" count="11">36.66667 36.7 36.73333 36.76667 36.8 36.83333 36.86666 36.9 36.93333 36.96667 37</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_FannyPack_matrix-input-array" count="11" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_FannyPack_matrix-output">
|
||||
<float_array id="node-Bip01_FannyPack_matrix-output-array" count="176">-0.8322091 -0.4771121 0.2824753 0.2028495 -0.4932149 0.8697606 0.01598542 -0.1504241 -0.2533128 -0.1260178 -0.9591415 -0.008565127 0 0 0 1 -0.8898538 -0.4120016 0.195997 0.2072241 -0.4283239 0.9023593 -0.04781806 -0.147809 -0.1571586 -0.1265013 -0.979438 -0.004188179 0 0 0 1 -0.9584738 -0.2849612 0.01119178 0.215865 -0.2841072 0.9507272 -0.124101 -0.1428306 0.02472358 -0.1221272 -0.9922066 0.00402522 0 0 0 1 -0.9723093 -0.2127428 -0.09672266 0.2220463 -0.1988918 0.9706092 -0.1354988 -0.1397899 0.1227063 -0.1125094 -0.9860451 0.008699297 0 0 0 1 -0.9740182 -0.2105664 -0.08336657 0.2244753 -0.1998756 0.9723571 -0.1207112 -0.139216 0.1064798 -0.1009119 -0.9891808 0.009106516 0 0 0 1 -0.9772223 -0.2073177 -0.0453425 0.2263788 -0.202175 0.9744279 -0.09805941 -0.1387628 0.06451249 -0.08665877 -0.9941471 0.009439647 0 0 0 1 -0.9787896 -0.2047209 0.007761001 0.2278121 -0.2047498 0.976236 -0.07100021 -0.1384184 0.006958603 -0.07108336 -0.9974461 0.009702801 0 0 0 1 -0.9767963 -0.2037305 0.06605184 0.2288306 -0.2067821 0.9774346 -0.04315739 -0.1381711 -0.05576884 -0.0558142 -0.9968824 0.009900152 0 0 0 1 -0.9715797 -0.2043121 0.1195383 0.2294897 -0.207916 0.9779742 -0.01836305 -0.1380091 -0.1131536 -0.0426951 -0.9926596 0.01003599 0 0 0 1 -0.9657237 -0.2055692 0.1584897 0.2298446 -0.2082912 0.9780666 -5.76606e-4 -0.1379206 -0.154895 -0.03356885 -0.9873604 0.01011443 0 0 0 1 -0.9629918 -0.2062316 0.1735377 0.2299507 -0.2083318 0.9780384 0.006227016 -0.1378936 -0.1710108 -0.03015685 -0.9848076 0.01013964 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_FannyPack_matrix-output-array" count="11" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_FannyPack_matrix-interpolation">
|
||||
<Name_array id="node-Bip01_FannyPack_matrix-interpolation-array" count="11">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_FannyPack_matrix-interpolation-array" count="11" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-EYE_matrix-input">
|
||||
<float_array id="node-EYE_matrix-input-array" count="11">36.66667 36.7 36.73333 36.76667 36.8 36.83333 36.86666 36.9 36.93333 36.96667 37</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-EYE_matrix-input-array" count="11" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-EYE_matrix-output">
|
||||
<float_array id="node-EYE_matrix-output-array" count="176">0.7792378 0.6267179 -0.003664016 0.05851447 -0.6267175 0.7792451 0.001428186 0.07268273 0.003750264 0.001183211 0.999992 1.009805 0 0 0 1 0.7813551 0.6229658 -0.03739011 0.02432459 -0.6240764 0.7802858 -0.04101598 0.03016543 0.003623425 0.05538213 0.9984585 1.007771 0 0 0 1 0.781365 0.616015 -0.09997212 -0.03746753 -0.6240626 0.772248 -0.1190738 -0.04694312 0.003852009 0.1554288 0.9878393 0.9897533 0 0 0 1 0.7792377 0.6122217 -0.1340648 -0.06757861 -0.6267175 0.7624667 -0.1608396 -0.08441567 0.003750383 0.2093528 0.9778327 0.9564784 0 0 0 1 0.779823 0.6130396 -0.1267226 -0.05584508 -0.6259887 0.7648938 -0.1519052 -0.07008612 0.003805339 0.1977859 0.9802375 0.9219462 0 0 0 1 0.7810018 0.6151279 -0.1079542 -0.03438258 -0.6245171 0.7702983 -0.1289133 -0.04364711 0.003858745 0.1681005 0.985762 0.8880137 0 0 0 1 0.7818727 0.61796 -0.0824663 -0.008683979 -0.6234268 0.7757931 -0.09738487 -0.01183122 0.003796815 0.1275541 0.991824 0.8549337 0 0 0 1 0.7818675 0.6210305 -0.05481415 0.01680296 -0.6234342 0.7793436 -0.06287509 0.01977854 0.003671705 0.08333283 0.9965148 0.8238905 0 0 0 1 0.7809915 0.6238458 -0.0294736 0.03855103 -0.6245313 0.7803815 -0.03106421 0.04669594 0.003621339 0.04266792 0.9990825 0.7972705 0 0 0 1 0.7798178 0.6259117 -0.01090431 0.05366826 -0.6259959 0.7797882 -0.007691323 0.06532144 0.003688931 0.0128237 0.9999107 0.7784553 0 0 0 1 0.7792378 0.6267179 -0.003664016 0.05939459 -0.6267175 0.7792451 0.001428186 0.07235008 0.003750264 0.001183211 0.999992 0.7713364 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-EYE_matrix-output-array" count="11" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-EYE_matrix-interpolation">
|
||||
<Name_array id="node-EYE_matrix-interpolation-array" count="11">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-EYE_matrix-interpolation-array" count="11" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<sampler id="node-Bip01_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-Bip01_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-Bip01_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-Bip01_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<sampler id="node-Bip01_Pelvis_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-Bip01_Pelvis_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-Bip01_Pelvis_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-Bip01_Pelvis_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<sampler id="node-Bip01_Spine_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-Bip01_Spine_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-Bip01_Spine_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-Bip01_Spine_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<sampler id="node-Bip01_Spine2_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-Bip01_Spine2_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-Bip01_Spine2_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-Bip01_Spine2_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<sampler id="node-Bip01_Head_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-Bip01_Head_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-Bip01_Head_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-Bip01_Head_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<sampler id="node-ALTEYE_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-ALTEYE_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-ALTEYE_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-ALTEYE_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<sampler id="node-Bip01_L_UpperArm_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-Bip01_L_UpperArm_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-Bip01_L_UpperArm_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-Bip01_L_UpperArm_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<sampler id="node-Bip01_L_Forearm_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-Bip01_L_Forearm_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-Bip01_L_Forearm_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-Bip01_L_Forearm_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<sampler id="node-Bip01_L_Hand_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-Bip01_L_Hand_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-Bip01_L_Hand_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-Bip01_L_Hand_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<sampler id="node-Bip01_R_UpperArm_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-Bip01_R_UpperArm_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-Bip01_R_UpperArm_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-Bip01_R_UpperArm_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<sampler id="node-Bip01_L_Thigh_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-Bip01_L_Thigh_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-Bip01_L_Thigh_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-Bip01_L_Thigh_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<sampler id="node-Bip01_L_Calf_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-Bip01_L_Calf_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-Bip01_L_Calf_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-Bip01_L_Calf_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<sampler id="node-Bip01_L_Foot_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-Bip01_L_Foot_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-Bip01_L_Foot_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-Bip01_L_Foot_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<sampler id="node-Bip01_R_Thigh_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-Bip01_R_Thigh_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-Bip01_R_Thigh_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-Bip01_R_Thigh_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<sampler id="node-Bip01_R_Calf_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-Bip01_R_Calf_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-Bip01_R_Calf_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-Bip01_R_Calf_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<sampler id="node-Bip01_R_Foot_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-Bip01_R_Foot_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-Bip01_R_Foot_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-Bip01_R_Foot_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<sampler id="node-Bip01_R_Toe0_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-Bip01_R_Toe0_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-Bip01_R_Toe0_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-Bip01_R_Toe0_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<sampler id="node-Bip01_FannyPack_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-Bip01_FannyPack_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-Bip01_FannyPack_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-Bip01_FannyPack_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<sampler id="node-EYE_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-EYE_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-EYE_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-EYE_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<channel source="#node-Bip01_matrix-sampler" target="node-Bip01/matrix"/>
|
||||
<channel source="#node-Bip01_Pelvis_matrix-sampler" target="node-Bip01_Pelvis/matrix"/>
|
||||
<channel source="#node-Bip01_Spine_matrix-sampler" target="node-Bip01_Spine/matrix"/>
|
||||
<channel source="#node-Bip01_Spine2_matrix-sampler" target="node-Bip01_Spine2/matrix"/>
|
||||
<channel source="#node-Bip01_Head_matrix-sampler" target="node-Bip01_Head/matrix"/>
|
||||
<channel source="#node-ALTEYE_matrix-sampler" target="node-ALTEYE/matrix"/>
|
||||
<channel source="#node-Bip01_L_UpperArm_matrix-sampler" target="node-Bip01_L_UpperArm/matrix"/>
|
||||
<channel source="#node-Bip01_L_Forearm_matrix-sampler" target="node-Bip01_L_Forearm/matrix"/>
|
||||
<channel source="#node-Bip01_L_Hand_matrix-sampler" target="node-Bip01_L_Hand/matrix"/>
|
||||
<channel source="#node-Bip01_R_UpperArm_matrix-sampler" target="node-Bip01_R_UpperArm/matrix"/>
|
||||
<channel source="#node-Bip01_L_Thigh_matrix-sampler" target="node-Bip01_L_Thigh/matrix"/>
|
||||
<channel source="#node-Bip01_L_Calf_matrix-sampler" target="node-Bip01_L_Calf/matrix"/>
|
||||
<channel source="#node-Bip01_L_Foot_matrix-sampler" target="node-Bip01_L_Foot/matrix"/>
|
||||
<channel source="#node-Bip01_R_Thigh_matrix-sampler" target="node-Bip01_R_Thigh/matrix"/>
|
||||
<channel source="#node-Bip01_R_Calf_matrix-sampler" target="node-Bip01_R_Calf/matrix"/>
|
||||
<channel source="#node-Bip01_R_Foot_matrix-sampler" target="node-Bip01_R_Foot/matrix"/>
|
||||
<channel source="#node-Bip01_R_Toe0_matrix-sampler" target="node-Bip01_R_Toe0/matrix"/>
|
||||
<channel source="#node-Bip01_FannyPack_matrix-sampler" target="node-Bip01_FannyPack/matrix"/>
|
||||
<channel source="#node-EYE_matrix-sampler" target="node-EYE/matrix"/>
|
||||
</animation>
|
||||
</library_animations>
|
||||
<scene>
|
||||
<instance_visual_scene url="#MaxScene"/>
|
||||
</scene>
|
||||
</COLLADA>
|
||||
|
|
@ -0,0 +1,34 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
// Copyright (c) 2012 GarageGames, LLC
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
// of this software and associated documentation files (the "Software"), to
|
||||
// deal in the Software without restriction, including without limitation the
|
||||
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||
// sell copies of the Software, and to permit persons to whom the Software is
|
||||
// furnished to do so, subject to the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included in
|
||||
// all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||
// IN THE SOFTWARE.
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
singleton TSShapeConstructor(PlayerAnim_Lurker_LookDAE)
|
||||
{
|
||||
baseShape = "./PlayerAnim_Lurker_Look.dae";
|
||||
neverImport = "EnvironmentAmbientLight";
|
||||
loadLights = "0";
|
||||
};
|
||||
|
||||
function PlayerAnim_Lurker_LookDAE::onLoad(%this)
|
||||
{
|
||||
%this.setSequenceCyclic("ambient", "false");
|
||||
%this.addSequence("ambient", "Look", "950", "960");
|
||||
}
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -0,0 +1,34 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
// Copyright (c) 2012 GarageGames, LLC
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
// of this software and associated documentation files (the "Software"), to
|
||||
// deal in the Software without restriction, including without limitation the
|
||||
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||
// sell copies of the Software, and to permit persons to whom the Software is
|
||||
// furnished to do so, subject to the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included in
|
||||
// all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||
// IN THE SOFTWARE.
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
singleton TSShapeConstructor(PlayerAnim_Lurker_ReloadDAE)
|
||||
{
|
||||
baseShape = "./PlayerAnim_Lurker_Reload.dae";
|
||||
neverImport = "EnvironmentAmbientLight";
|
||||
loadLights = "0";
|
||||
};
|
||||
|
||||
function PlayerAnim_Lurker_ReloadDAE::onLoad(%this)
|
||||
{
|
||||
%this.setSequenceCyclic("ambient", "false");
|
||||
%this.addSequence("ambient", "Reload", "1880", "1970");
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
|
|
@ -0,0 +1,34 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
// Copyright (c) 2012 GarageGames, LLC
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
// of this software and associated documentation files (the "Software"), to
|
||||
// deal in the Software without restriction, including without limitation the
|
||||
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||
// sell copies of the Software, and to permit persons to whom the Software is
|
||||
// furnished to do so, subject to the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included in
|
||||
// all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||
// IN THE SOFTWARE.
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
singleton TSShapeConstructor(PlayerAnim_Lurker_RootDAE)
|
||||
{
|
||||
baseShape = "./PlayerAnim_Lurker_Root.dae";
|
||||
neverImport = "EnvironmentAmbientLight";
|
||||
loadLights = "0";
|
||||
};
|
||||
|
||||
function PlayerAnim_Lurker_RootDAE::onLoad(%this)
|
||||
{
|
||||
%this.setSequenceCyclic("ambient", "true");
|
||||
%this.addSequence("ambient", "Root", "50", "109");
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
|
|
@ -0,0 +1,34 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
// Copyright (c) 2012 GarageGames, LLC
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
// of this software and associated documentation files (the "Software"), to
|
||||
// deal in the Software without restriction, including without limitation the
|
||||
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||
// sell copies of the Software, and to permit persons to whom the Software is
|
||||
// furnished to do so, subject to the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included in
|
||||
// all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||
// IN THE SOFTWARE.
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
singleton TSShapeConstructor(PlayerAnim_Lurker_RunDAE)
|
||||
{
|
||||
baseShape = "./PlayerAnim_Lurker_Run.dae";
|
||||
neverImport = "EnvironmentAmbientLight";
|
||||
loadLights = "0";
|
||||
};
|
||||
|
||||
function PlayerAnim_Lurker_RunDAE::onLoad(%this)
|
||||
{
|
||||
%this.setSequenceCyclic("ambient", "true");
|
||||
%this.addSequence("ambient", "Run", "150", "169");
|
||||
}
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -0,0 +1,34 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
// Copyright (c) 2012 GarageGames, LLC
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
// of this software and associated documentation files (the "Software"), to
|
||||
// deal in the Software without restriction, including without limitation the
|
||||
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||
// sell copies of the Software, and to permit persons to whom the Software is
|
||||
// furnished to do so, subject to the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included in
|
||||
// all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||
// IN THE SOFTWARE.
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
singleton TSShapeConstructor(PlayerAnim_Lurker_SideDAE)
|
||||
{
|
||||
baseShape = "./PlayerAnim_Lurker_Side.dae";
|
||||
neverImport = "EnvironmentAmbientLight";
|
||||
loadLights = "0";
|
||||
};
|
||||
|
||||
function PlayerAnim_Lurker_SideDAE::onLoad(%this)
|
||||
{
|
||||
%this.setSequenceCyclic("ambient", "true");
|
||||
%this.addSequence("ambient", "Side", "200", "219");
|
||||
}
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -0,0 +1,34 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
// Copyright (c) 2012 GarageGames, LLC
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
// of this software and associated documentation files (the "Software"), to
|
||||
// deal in the Software without restriction, including without limitation the
|
||||
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||
// sell copies of the Software, and to permit persons to whom the Software is
|
||||
// furnished to do so, subject to the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included in
|
||||
// all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||
// IN THE SOFTWARE.
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
singleton TSShapeConstructor(PlayerAnim_Lurker_SittingDAE)
|
||||
{
|
||||
baseShape = "./PlayerAnim_Lurker_Sitting.dae";
|
||||
neverImport = "EnvironmentAmbientLight";
|
||||
loadLights = "0";
|
||||
};
|
||||
|
||||
function PlayerAnim_Lurker_SittingDAE::onLoad(%this)
|
||||
{
|
||||
%this.setSequenceCyclic("ambient", "true");
|
||||
%this.addSequence("ambient", "Sitting", "1360", "1365");
|
||||
}
|
||||
|
|
@ -0,0 +1,378 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<COLLADA xmlns="http://www.collada.org/2005/11/COLLADASchema" version="1.4.1">
|
||||
<asset>
|
||||
<contributor>
|
||||
<author>MattO</author>
|
||||
<authoring_tool>OpenCOLLADA for 3ds Max; Version: 1.3.0; Revision: 839M; Platform: x64; Configuration: Release_Max2012</authoring_tool>
|
||||
<source_data>file:///C:/Dropbox/Prj/GGStout/Lurker/SoldierTP_Lurker_Animation_Master.max</source_data>
|
||||
</contributor>
|
||||
<created>2011-09-30T00:10:30</created>
|
||||
<modified>2011-09-30T00:10:30</modified>
|
||||
<unit name="meter" meter="1"/>
|
||||
<up_axis>Z_UP</up_axis>
|
||||
</asset>
|
||||
<library_effects>
|
||||
<effect id="ShapeBounds">
|
||||
<profile_COMMON>
|
||||
<technique sid="common">
|
||||
<blinn>
|
||||
<emission>
|
||||
<color>0 0 0 1</color>
|
||||
</emission>
|
||||
<ambient>
|
||||
<color>0.1647059 1 0 1</color>
|
||||
</ambient>
|
||||
<diffuse>
|
||||
<color>0.1647059 1 0 1</color>
|
||||
</diffuse>
|
||||
<specular>
|
||||
<color>0.9 0.9 0.9 1</color>
|
||||
</specular>
|
||||
<shininess>
|
||||
<float>10</float>
|
||||
</shininess>
|
||||
<reflective>
|
||||
<color>0 0 0 1</color>
|
||||
</reflective>
|
||||
<transparent opaque="A_ONE">
|
||||
<color>1 1 1 1</color>
|
||||
</transparent>
|
||||
<transparency>
|
||||
<float>1</float>
|
||||
</transparency>
|
||||
</blinn>
|
||||
</technique>
|
||||
</profile_COMMON>
|
||||
<extra>
|
||||
<technique profile="OpenCOLLADA3dsMax">
|
||||
<extended_shader>
|
||||
<apply_reflection_dimming>0</apply_reflection_dimming>
|
||||
<dim_level>0</dim_level>
|
||||
<falloff_type>0</falloff_type>
|
||||
<index_of_refraction>1.5</index_of_refraction>
|
||||
<opacity_type>0</opacity_type>
|
||||
<reflection_level>3</reflection_level>
|
||||
<wire_size>1</wire_size>
|
||||
<wire_units>0</wire_units>
|
||||
</extended_shader>
|
||||
<shader>
|
||||
<ambient_diffuse_lock>1</ambient_diffuse_lock>
|
||||
<ambient_diffuse_texture_lock>1</ambient_diffuse_texture_lock>
|
||||
<diffuse_specular_lock>0</diffuse_specular_lock>
|
||||
<soften>0.1</soften>
|
||||
<use_self_illum_color>0</use_self_illum_color>
|
||||
</shader>
|
||||
</technique>
|
||||
</extra>
|
||||
</effect>
|
||||
</library_effects>
|
||||
<library_materials>
|
||||
<material id="ShapeBounds-material" name="ShapeBounds">
|
||||
<instance_effect url="#ShapeBounds"/>
|
||||
</material>
|
||||
</library_materials>
|
||||
<library_geometries>
|
||||
<geometry id="geom-Bounds" name="Bounds">
|
||||
<mesh>
|
||||
<source id="geom-Bounds-positions">
|
||||
<float_array id="geom-Bounds-positions-array" count="24">-0.425 -0.425 0 0.425 -0.425 0 -0.425 0.425 0 0.425 0.425 0 -0.425 -0.425 1.84 0.425 -0.425 1.84 -0.425 0.425 1.84 0.425 0.425 1.84</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#geom-Bounds-positions-array" count="8" stride="3">
|
||||
<param name="X" type="float"/>
|
||||
<param name="Y" type="float"/>
|
||||
<param name="Z" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="geom-Bounds-normals">
|
||||
<float_array id="geom-Bounds-normals-array" count="72">0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 1 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#geom-Bounds-normals-array" count="24" stride="3">
|
||||
<param name="X" type="float"/>
|
||||
<param name="Y" type="float"/>
|
||||
<param name="Z" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="geom-Bounds-map1">
|
||||
<float_array id="geom-Bounds-map1-array" count="36">0 0 0 1 0 0 0 1 0 1 1 0 0 0 0 1 0 0 0 1 0 1 1 0 0 0 0 1 0 0 0 1 0 1 1 0</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#geom-Bounds-map1-array" count="12" stride="3">
|
||||
<param name="S" type="float"/>
|
||||
<param name="T" type="float"/>
|
||||
<param name="P" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<vertices id="geom-Bounds-vertices">
|
||||
<input semantic="POSITION" source="#geom-Bounds-positions"/>
|
||||
</vertices>
|
||||
<triangles material="ShapeBounds" count="12">
|
||||
<input semantic="VERTEX" source="#geom-Bounds-vertices" offset="0"/>
|
||||
<input semantic="NORMAL" source="#geom-Bounds-normals" offset="1"/>
|
||||
<input semantic="TEXCOORD" source="#geom-Bounds-map1" offset="2" set="0"/>
|
||||
<p>0 0 9 2 1 11 3 2 10 3 2 10 1 3 8 0 0 9 4 4 8 5 5 9 7 6 11 7 6 11 6 7 10 4 4 8 0 8 4 1 9 5 5 10 7 5 10 7 4 11 6 0 8 4 1 12 0 3 13 1 7 14 3 7 14 3 5 15 2 1 12 0 3 16 4 2 17 5 6 18 7 6 18 7 7 19 6 3 16 4 2 20 0 0 21 1 4 22 3 4 22 3 6 23 2 2 20 0</p>
|
||||
</triangles>
|
||||
</mesh>
|
||||
<extra>
|
||||
<technique profile="OpenCOLLADA3dsMax">
|
||||
<max_box>
|
||||
<generateuvs>1</generateuvs>
|
||||
<height>1.84</height>
|
||||
<heightsegments>1</heightsegments>
|
||||
<length>0.85</length>
|
||||
<lengthsegments>1</lengthsegments>
|
||||
<width>0.85</width>
|
||||
<widthsegments>1</widthsegments>
|
||||
</max_box>
|
||||
</technique>
|
||||
</extra>
|
||||
</geometry>
|
||||
</library_geometries>
|
||||
<library_lights>
|
||||
<light id="EnvironmentAmbientLight" name="EnvironmentAmbientLight">
|
||||
<technique_common>
|
||||
<ambient>
|
||||
<color>0 0 0</color>
|
||||
</ambient>
|
||||
</technique_common>
|
||||
</light>
|
||||
</library_lights>
|
||||
<library_visual_scenes>
|
||||
<visual_scene id="MaxScene">
|
||||
<node name="EnvironmentAmbientLight">
|
||||
<instance_light url="#EnvironmentAmbientLight"/>
|
||||
</node>
|
||||
<node id="node-Bip01" name="Bip01">
|
||||
<matrix>7.15256e-7 -1 -1.3113e-6 0 0.5735766 1.54972e-6 -0.8191519 0 0.8191519 -1.78814e-7 0.5735766 0.9715144 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_Pelvis" name="Bip01_Pelvis">
|
||||
<matrix>0 1 -1.3868e-6 0 -1.38747e-6 1.3868e-6 1 0 1 0 1.38747e-6 0 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_Spine" name="Bip01_Spine">
|
||||
<matrix>0.7780788 -0.6281668 -3.1283e-6 0.199298 0.6281668 0.7780788 3.54605e-6 0.02655238 2.06556e-7 -4.7242e-6 1 2.31756e-7 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_Spine1" name="Bip01_Spine1">
|
||||
<matrix>0.7675778 -0.6409556 -1.77679e-6 0.1022946 0.6409556 0.7675778 -6.45808e-7 -7.75605e-5 1.77776e-6 -6.43133e-7 1 -2.15294e-10 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_Spine2" name="Bip01_Spine2">
|
||||
<matrix>0.9061314 -0.4229962 -1.17322e-6 0.1269386 0.4229962 0.9061314 -2.60354e-7 -1.5527e-4 1.17322e-6 -2.60354e-7 1 -4.30646e-10 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_Neck" name="Bip01_Neck">
|
||||
<matrix>0.8708674 -0.4915181 -1.33283e-6 0.2151104 0.4915181 0.8708674 -3.66666e-7 -4.79221e-5 1.34094e-6 -3.35793e-7 1 -1.34378e-10 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_Head" name="Bip01_Head">
|
||||
<matrix>0.512042 0.8589603 2.36145e-6 0.07051814 -0.8589603 0.512042 -1.32829e-6 -0.01395917 -2.35011e-6 -1.34825e-6 1 -2.09684e-9 0 0 0 1</matrix>
|
||||
<node id="node-ALTEYE" name="ALTEYE">
|
||||
<matrix>-4.07496e-8 0.3262678 0.9452779 0.06454694 4.52809e-6 0.9452777 -0.3262678 0.2214611 -1 3.89645e-6 -1.61506e-6 0.04716254 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_L_Clavicle" name="Bip01_L_Clavicle">
|
||||
<matrix>-0.5139332 -0.4913912 0.703141 -0.02531704 0.2358364 -0.8690251 -0.4349441 -0.01248002 0.824775 -0.05770604 0.5625089 0.06834728 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_UpperArm" name="Bip01_L_UpperArm">
|
||||
<matrix>-0.04559906 0.939729 0.338866 0.1824006 -0.9989042 -0.03930598 -0.02541426 1.19209e-7 -0.01056316 -0.3396536 0.9404913 5.96046e-8 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Forearm" name="Bip01_L_Forearm">
|
||||
<matrix>-0.0796276 0.9968247 2.98023e-8 0.284369 -0.9968247 -0.07962772 -2.98023e-8 0 7.45058e-8 5.96046e-8 0.9999999 -5.96046e-8 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Hand" name="Bip01_L_Hand">
|
||||
<matrix>0.9972027 -0.06531978 0.03633574 0.281068 -0.03630549 0.001650929 0.9993395 5.96046e-8 -0.0653366 -0.9978629 -7.2524e-4 -5.96046e-8 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Finger0" name="Bip01_L_Finger0">
|
||||
<matrix>0.7972617 0.5458073 0.2578142 0.02119684 0.2630302 0.0703012 -0.9622229 -0.004734278 -0.543313 0.8349563 -0.08751544 -0.02572197 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Finger01" name="Bip01_L_Finger01">
|
||||
<matrix>0.965975 0.2266686 -0.1245543 0.04982853 -0.2230535 0.9738825 0.04242729 2.98023e-8 0.1309181 -0.01320135 0.9913054 -1.19209e-7 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Finger02" name="Bip01_L_Finger02">
|
||||
<matrix>0.891715 0.4525972 8.9407e-8 0.05202246 -0.4525973 0.891715 -1.86265e-8 1.49012e-8 5.96046e-8 1.49012e-8 0.9999999 0 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_L_Finger1" name="Bip01_L_Finger1">
|
||||
<matrix>0.5443667 -0.8378223 0.04145816 0.1199947 0.8343247 0.535645 -0.1303333 -0.008367598 0.08698921 0.1055387 0.9906031 -0.04101396 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Finger11" name="Bip01_L_Finger11">
|
||||
<matrix>0.227178 -0.9738533 0 0.03644174 0.9738532 0.227178 0 0 0 2.6077e-8 1 0 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Finger12" name="Bip01_L_Finger12">
|
||||
<matrix>0.3928345 -0.9196094 -2.98023e-8 0.03117549 0.9196094 0.3928345 -3.72529e-9 0 -2.98023e-8 5.96046e-8 1 -5.96046e-8 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_L_Finger2" name="Bip01_L_Finger2">
|
||||
<matrix>0.4670692 -0.8830643 -0.04520708 0.1229538 0.882349 0.4687958 -0.04111913 -0.008802056 0.05750367 -0.0206829 0.998131 -0.01328242 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Finger21" name="Bip01_L_Finger21">
|
||||
<matrix>0.335961 -0.9418759 -7.45058e-9 0.03895515 0.9418759 0.335961 0 0 2.98023e-8 0 1 0 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Finger22" name="Bip01_L_Finger22">
|
||||
<matrix>0.494412 -0.8692278 -2.98023e-8 0.03800535 0.8692278 0.4944121 7.45058e-9 1.49012e-8 0 8.9407e-8 0.9999999 5.96046e-8 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_L_Finger3" name="Bip01_L_Finger3">
|
||||
<matrix>0.4884204 -0.8645033 -0.1186576 0.1211881 0.8708873 0.4914657 0.004089713 -0.001191258 0.05478053 -0.1053348 0.9929269 0.01196873 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Finger31" name="Bip01_L_Finger31">
|
||||
<matrix>0.4560263 -0.8899663 7.45058e-9 0.03155842 0.8899664 0.4560263 0 -1.19209e-7 -2.98023e-8 1.49012e-8 1 -1.78814e-7 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Finger32" name="Bip01_L_Finger32">
|
||||
<matrix>0.4560263 -0.8899664 2.98023e-8 0.0336659 0.8899663 0.4560262 1.49012e-8 -2.98023e-8 0 -8.9407e-8 1 0 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_L_Finger4" name="Bip01_L_Finger4">
|
||||
<matrix>0.2730237 -0.9537597 -0.1257006 0.1136797 0.9570502 0.2560405 0.1360083 0.005147398 -0.09753479 -0.1574352 0.982701 0.03886575 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Finger41" name="Bip01_L_Finger41">
|
||||
<matrix>0.3741724 -0.9273593 1.49012e-8 0.03661618 0.9273593 0.3741724 -2.98023e-8 0 0 -1.11759e-8 1 -1.19209e-7 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Finger42" name="Bip01_L_Finger42">
|
||||
<matrix>0.353461 -0.9354492 0 0.01772642 0.9354492 0.353461 0 0 0 2.98023e-8 1 5.96046e-8 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_R_Clavicle" name="Bip01_R_Clavicle">
|
||||
<matrix>-0.5139332 -0.4913912 -0.7031411 -0.02531701 0.235841 -0.8690255 0.4349411 -0.01247966 -0.8247737 0.05770123 0.5625112 -0.06834734 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_UpperArm" name="Bip01_R_UpperArm">
|
||||
<matrix>0.07836263 0.6446645 -0.7604387 0.1824006 -0.9786651 -0.09557858 -0.1818777 -1.19209e-7 -0.1899316 0.7584672 0.6234208 -5.96046e-8 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Forearm" name="Bip01_R_Forearm">
|
||||
<matrix>0.8033634 0.595489 -1.49012e-8 0.284369 -0.595489 0.8033634 0 5.96046e-8 2.04891e-8 -2.98023e-8 1 5.96046e-8 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Hand" name="Bip01_R_Hand">
|
||||
<matrix>-0.3210543 -0.9457393 0.05001414 0.281068 -0.01235577 -0.04862258 -0.9987407 -1.19209e-7 0.9469803 -0.3212681 0.003925174 0 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Finger0" name="Bip01_R_Finger0">
|
||||
<matrix>0.5864988 0.5584857 -0.5866112 0.02119672 0.5495919 0.2575932 0.7947292 -0.004734278 0.594952 -0.7885046 -0.1558613 0.02572179 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Finger01" name="Bip01_R_Finger01">
|
||||
<matrix>0.9984426 -0.03286722 -0.04507772 0.0498285 0.032763 0.9994584 -0.003049873 -1.19209e-7 0.04515356 0.001568288 0.9989789 2.98023e-8 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Finger02" name="Bip01_R_Finger02">
|
||||
<matrix>0.9784714 0.2063825 1.86265e-8 0.0520224 -0.2063825 0.9784715 -7.45058e-9 0 2.98023e-8 2.98023e-8 1 -1.49012e-8 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_R_Finger1" name="Bip01_R_Finger1">
|
||||
<matrix>0.9929683 -0.03073483 -0.1143215 0.1199946 0.05074902 0.9829876 0.1765219 -0.008367628 0.1069512 -0.1810823 0.9776353 0.04101396 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Finger11" name="Bip01_R_Finger11">
|
||||
<matrix>0.9786204 -0.2056749 -7.45058e-9 0.03644171 0.205675 0.9786203 0 0 1.11759e-8 0 0.9999999 0 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Finger12" name="Bip01_R_Finger12">
|
||||
<matrix>0.9786203 -0.2056749 -3.72529e-9 0.03117546 0.205675 0.9786204 0 0 7.45058e-9 0 0.9999999 0 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_R_Finger2" name="Bip01_R_Finger2">
|
||||
<matrix>0.9925045 -0.1221326 0.004327282 0.1229538 0.1222092 0.9918535 -0.0359391 -0.008802056 9.73195e-5 0.03619862 0.9993446 0.01328242 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Finger21" name="Bip01_R_Finger21">
|
||||
<matrix>0.9956127 -0.09356989 0 0.03895518 0.09356989 0.9956127 0 -5.96046e-8 -7.45058e-9 0 1 0 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Finger22" name="Bip01_R_Finger22">
|
||||
<matrix>0.9956127 -0.0935699 -7.45058e-9 0.03800538 0.09356989 0.9956129 0 0 2.23517e-8 2.98023e-8 0.9999999 0 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_R_Finger3" name="Bip01_R_Finger3">
|
||||
<matrix>0.9921618 -0.06649599 0.1057986 0.1211882 0.08649812 0.9764947 -0.1974235 -0.001191288 -0.0901839 0.2050275 0.9745926 -0.01196873 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Finger31" name="Bip01_R_Finger31">
|
||||
<matrix>0.9905837 -0.136909 -1.49012e-8 0.03155845 0.136909 0.9905837 0 -2.98023e-8 1.49012e-8 -2.98023e-8 0.9999999 0 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Finger32" name="Bip01_R_Finger32">
|
||||
<matrix>0.9905837 -0.1369088 1.49012e-8 0.03366601 0.1369088 0.9905837 -2.98023e-8 0 0 -2.98023e-8 1 0 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_R_Finger4" name="Bip01_R_Finger4">
|
||||
<matrix>0.9797845 -0.1556327 0.1257005 0.1136797 0.1724154 0.9755894 -0.1360082 0.005147368 -0.1014648 0.1549316 0.982701 -0.03886592 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Finger41" name="Bip01_R_Finger41">
|
||||
<matrix>0.998605 -0.05280363 -1.49012e-8 0.03661621 0.05280366 0.998605 2.98023e-8 -2.98023e-8 4.47035e-8 -5.96046e-8 1 0 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Finger42" name="Bip01_R_Finger42">
|
||||
<matrix>0.969012 -0.2470135 0 0.0177263 0.2470134 0.9690118 -2.98023e-8 -1.49012e-8 -1.49012e-8 2.98023e-8 0.9999999 0 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-MOUNT0" name="MOUNT0">
|
||||
<matrix>-6.18398e-7 1 0 0.109539 -0.9999999 -6.81728e-7 5.21541e-7 0.02518257 4.47035e-7 -1.49012e-8 1 0.01321673 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_L_Pauldron_Upper" name="Bip01_L_Pauldron_Upper">
|
||||
<matrix>0.9004827 0.1079657 0.4212773 0.1769029 0.09779224 -0.9941548 0.04575239 -0.0390836 0.4237544 -1.55517e-6 -0.9057773 0.2290199 0 0 0 1</matrix>
|
||||
</node>
|
||||
<node id="node-Bip01_R_Pauldron_Lower" name="Bip01_R_Pauldron_Lower">
|
||||
<matrix>-0.1156726 -0.9403759 -0.3198653 0.172906 0.9097751 -0.2295502 0.3458564 -0.1133294 -0.3986599 -0.2509994 0.8820827 -0.2351094 0 0 0 1</matrix>
|
||||
</node>
|
||||
<node id="node-Bip01_L_Pauldron_Lower" name="Bip01_L_Pauldron_Lower">
|
||||
<matrix>-0.2099969 -0.7687201 0.6041283 0.1529202 0.4002343 -0.6313506 -0.6642358 -0.1054225 0.892028 0.1023054 0.4402496 0.2344801 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_L_Thigh" name="Bip01_L_Thigh">
|
||||
<matrix>0.5573003 0.8272914 0.07074709 -0.1717489 0.8298256 -0.552037 -0.0815118 0.1045322 -0.028379 0.1041343 -0.9941584 0.1274867 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Calf" name="Bip01_L_Calf">
|
||||
<matrix>-0.9399682 0.3412621 -3.72529e-9 0.4629987 -0.3412619 -0.9399682 7.45058e-9 -1.19209e-7 7.45058e-9 -1.02445e-8 1 -7.45058e-9 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Foot" name="Bip01_L_Foot">
|
||||
<matrix>0.4256111 0.9049062 4.23528e-4 0.3610501 -0.8994555 0.422996 0.1097916 0 0.099172 -0.04710948 0.9939544 0 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_L_Toe0" name="Bip01_L_Toe0">
|
||||
<matrix>0 -1 -4.35393e-8 0.1486306 1 0 0 0.1543275 0 -4.30737e-8 0.9999999 1.49012e-8 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_R_Thigh" name="Bip01_R_Thigh">
|
||||
<matrix>0.5572999 0.8272915 -0.07074808 -0.1717489 0.8298258 -0.5520358 0.08151881 0.1045328 0.02838436 -0.104139 -0.9941576 -0.1274861 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Calf" name="Bip01_R_Calf">
|
||||
<matrix>-0.939968 0.3412626 3.72529e-9 0.4629988 -0.3412627 -0.939968 -1.11759e-8 5.96046e-8 0 -8.3819e-9 1 7.45058e-9 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Foot" name="Bip01_R_Foot">
|
||||
<matrix>0.4256109 0.9049062 -4.23416e-4 0.36105 -0.8994555 0.4229958 -0.1097935 1.49012e-8 -0.0991737 0.04711013 0.9939544 0 0 0 0 1</matrix>
|
||||
<node id="node-Bip01_R_Toe0" name="Bip01_R_Toe0">
|
||||
<matrix sid="matrix">-7.45058e-9 -1 4.65079e-8 0.1486307 1 0 0 0.1543275 0 4.56348e-8 1 -1.49012e-8 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bip01_FannyPack" name="Bip01_FannyPack">
|
||||
<matrix>-0.9629918 -0.2062316 0.1735378 0.2299506 -0.2083318 0.9780383 0.006226994 -0.1378937 -0.1710108 -0.0301569 -0.9848075 0.01013964 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-EYE" name="EYE">
|
||||
<matrix>8.13342e-7 0.5735763 0.8191518 0.5500596 -1 1.4869e-6 -1.17567e-7 -0.003751013 -1.39247e-6 -0.8191519 0.5735765 0.2583399 0 0 0 1</matrix>
|
||||
<node id="node-CAM" name="CAM">
|
||||
<matrix>1 -6.03104e-8 3.55271e-15 4.84288e-8 6.03104e-8 1 -2.32831e-9 -0.104 -3.55271e-15 2.32832e-9 1 0.3005601 0 0 0 1</matrix>
|
||||
</node>
|
||||
</node>
|
||||
</node>
|
||||
<node id="node-Bounds" name="Bounds">
|
||||
<matrix>0.9999915 0.001706907 0.003750479 0 -0.001711356 0.9999978 0.001183292 0.1035326 -0.003748452 -0.0011897 0.9999923 -8.93474e-5 0 0 0 1</matrix>
|
||||
<instance_geometry url="#geom-Bounds">
|
||||
<bind_material>
|
||||
<technique_common>
|
||||
<instance_material symbol="ShapeBounds" target="#ShapeBounds-material"/>
|
||||
</technique_common>
|
||||
</bind_material>
|
||||
</instance_geometry>
|
||||
</node>
|
||||
</visual_scene>
|
||||
</library_visual_scenes>
|
||||
<library_animations>
|
||||
<animation>
|
||||
<source id="node-Bip01_R_Toe0_matrix-input">
|
||||
<float_array id="node-Bip01_R_Toe0_matrix-input-array" count="6">45.33333 45.36666 45.4 45.43333 45.46667 45.5</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_R_Toe0_matrix-input-array" count="6" stride="1">
|
||||
<param name="TIME" type="float"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_R_Toe0_matrix-output">
|
||||
<float_array id="node-Bip01_R_Toe0_matrix-output-array" count="96">0 -1 0 0.1486306 1 0 0 0.1543275 0 0 1 0 0 0 0 1 -0.08005404 -0.9967904 -5.53115e-4 0.1486306 0.9967904 -0.08005428 4.27736e-4 0.1543274 -4.70642e-4 -5.17097e-4 0.9999998 0 0 0 0 1 -0.1595935 -0.9871821 -0.001138687 0.1486306 0.9871823 -0.1595945 8.09815e-4 0.1543274 -9.81173e-4 -9.94901e-4 0.999999 0 0 0 0 1 -0.1199198 -0.9927833 -8.42096e-4 0.1486306 0.9927833 -0.1199203 6.24643e-4 0.1543275 -7.21118e-4 -7.61113e-4 0.9999995 0 0 0 0 1 -0.04005891 -0.9991973 -2.72247e-4 0.1486306 0.9991974 -0.04005897 2.19409e-4 0.1543274 -2.30138e-4 -2.6324e-4 1 0 0 0 0 1 0 -1 0 0.1486306 1 0 0 0.1543275 0 0 1 0 0 0 0 1</float_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_R_Toe0_matrix-output-array" count="6" stride="16">
|
||||
<param name="TRANSFORM" type="float4x4"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<source id="node-Bip01_R_Toe0_matrix-interpolation">
|
||||
<Name_array id="node-Bip01_R_Toe0_matrix-interpolation-array" count="6">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>
|
||||
<technique_common>
|
||||
<accessor source="#node-Bip01_R_Toe0_matrix-interpolation-array" count="6" stride="1">
|
||||
<param name="INTERPOLATION" type="name"/>
|
||||
</accessor>
|
||||
</technique_common>
|
||||
</source>
|
||||
<sampler id="node-Bip01_R_Toe0_matrix-sampler">
|
||||
<input semantic="INPUT" source="#node-Bip01_R_Toe0_matrix-input"/>
|
||||
<input semantic="OUTPUT" source="#node-Bip01_R_Toe0_matrix-output"/>
|
||||
<input semantic="INTERPOLATION" source="#node-Bip01_R_Toe0_matrix-interpolation"/>
|
||||
</sampler>
|
||||
<channel source="#node-Bip01_R_Toe0_matrix-sampler" target="node-Bip01_R_Toe0/matrix"/>
|
||||
</animation>
|
||||
</library_animations>
|
||||
<scene>
|
||||
<instance_visual_scene url="#MaxScene"/>
|
||||
</scene>
|
||||
</COLLADA>
|
||||
|
|
@ -0,0 +1,34 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
// Copyright (c) 2012 GarageGames, LLC
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
// of this software and associated documentation files (the "Software"), to
|
||||
// deal in the Software without restriction, including without limitation the
|
||||
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||
// sell copies of the Software, and to permit persons to whom the Software is
|
||||
// furnished to do so, subject to the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included in
|
||||
// all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||
// IN THE SOFTWARE.
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
singleton TSShapeConstructor(PlayerAnim_Lurker_Swim_BackwardDAE)
|
||||
{
|
||||
baseShape = "./PlayerAnim_Lurker_Swim_Backward.dae";
|
||||
neverImport = "EnvironmentAmbientLight";
|
||||
loadLights = "0";
|
||||
};
|
||||
|
||||
function PlayerAnim_Lurker_Swim_BackwardDAE::onLoad(%this)
|
||||
{
|
||||
%this.setSequenceCyclic("ambient", "true");
|
||||
%this.addSequence("ambient", "Swim_Backward", "1580", "1639");
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
|
|
@ -0,0 +1,34 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
// Copyright (c) 2012 GarageGames, LLC
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
// of this software and associated documentation files (the "Software"), to
|
||||
// deal in the Software without restriction, including without limitation the
|
||||
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||
// sell copies of the Software, and to permit persons to whom the Software is
|
||||
// furnished to do so, subject to the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included in
|
||||
// all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||
// IN THE SOFTWARE.
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
singleton TSShapeConstructor(PlayerAnim_Lurker_Swim_ForwardDAE)
|
||||
{
|
||||
baseShape = "./PlayerAnim_Lurker_Swim_Forward.dae";
|
||||
neverImport = "EnvironmentAmbientLight";
|
||||
loadLights = "0";
|
||||
};
|
||||
|
||||
function PlayerAnim_Lurker_Swim_ForwardDAE::onLoad(%this)
|
||||
{
|
||||
%this.setSequenceCyclic("ambient", "true");
|
||||
%this.addSequence("ambient", "Swim_Forward", "1490", "1549");
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
|
|
@ -0,0 +1,34 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
// Copyright (c) 2012 GarageGames, LLC
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
// of this software and associated documentation files (the "Software"), to
|
||||
// deal in the Software without restriction, including without limitation the
|
||||
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||
// sell copies of the Software, and to permit persons to whom the Software is
|
||||
// furnished to do so, subject to the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included in
|
||||
// all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||
// IN THE SOFTWARE.
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
singleton TSShapeConstructor(PlayerAnim_Lurker_Swim_LeftDAE)
|
||||
{
|
||||
baseShape = "./PlayerAnim_Lurker_Swim_Left.dae";
|
||||
neverImport = "EnvironmentAmbientLight";
|
||||
loadLights = "0";
|
||||
};
|
||||
|
||||
function PlayerAnim_Lurker_Swim_LeftDAE::onLoad(%this)
|
||||
{
|
||||
%this.setSequenceCyclic("ambient", "true");
|
||||
%this.addSequence("ambient", "Swim_Left", "1670", "1729");
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
|
|
@ -0,0 +1,34 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
// Copyright (c) 2012 GarageGames, LLC
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
// of this software and associated documentation files (the "Software"), to
|
||||
// deal in the Software without restriction, including without limitation the
|
||||
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||
// sell copies of the Software, and to permit persons to whom the Software is
|
||||
// furnished to do so, subject to the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included in
|
||||
// all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||
// IN THE SOFTWARE.
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
singleton TSShapeConstructor(PlayerAnim_Lurker_Swim_RightDAE)
|
||||
{
|
||||
baseShape = "./PlayerAnim_Lurker_Swim_Right.dae";
|
||||
neverImport = "EnvironmentAmbientLight";
|
||||
loadLights = "0";
|
||||
};
|
||||
|
||||
function PlayerAnim_Lurker_Swim_RightDAE::onLoad(%this)
|
||||
{
|
||||
%this.setSequenceCyclic("ambient", "true");
|
||||
%this.addSequence("ambient", "Swim_Right", "1760", "1819");
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
|
|
@ -0,0 +1,34 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
// Copyright (c) 2012 GarageGames, LLC
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
// of this software and associated documentation files (the "Software"), to
|
||||
// deal in the Software without restriction, including without limitation the
|
||||
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||
// sell copies of the Software, and to permit persons to whom the Software is
|
||||
// furnished to do so, subject to the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included in
|
||||
// all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||
// IN THE SOFTWARE.
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
singleton TSShapeConstructor(PlayerAnim_Lurker_Swim_RootDAE)
|
||||
{
|
||||
baseShape = "./PlayerAnim_Lurker_Swim_Root.dae";
|
||||
neverImport = "EnvironmentAmbientLight";
|
||||
loadLights = "0";
|
||||
};
|
||||
|
||||
function PlayerAnim_Lurker_Swim_RootDAE::onLoad(%this)
|
||||
{
|
||||
%this.setSequenceCyclic("ambient", "true");
|
||||
%this.addSequence("ambient", "Swim_Root", "1400", "1459");
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -0,0 +1,98 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
// Copyright (c) 2012 GarageGames, LLC
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
// of this software and associated documentation files (the "Software"), to
|
||||
// deal in the Software without restriction, including without limitation the
|
||||
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||
// sell copies of the Software, and to permit persons to whom the Software is
|
||||
// furnished to do so, subject to the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included in
|
||||
// all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||
// IN THE SOFTWARE.
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
singleton TSShapeConstructor(FP_SoldierArmsDAE)
|
||||
{
|
||||
baseShape = "./FP_SoldierArms.DAE";
|
||||
loadLights = "0";
|
||||
};
|
||||
|
||||
function FP_SoldierArmsDAE::onLoad(%this)
|
||||
{
|
||||
// BEGIN: General rifle Sequences
|
||||
// Extracted from Lurker
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Lurker/FP_Lurker.DAE run", "Rifle_run");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Lurker/FP_Lurker.DAE sprint", "Rifle_sprint");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Lurker/FP_Lurker.DAE idle", "Rifle_idle");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Lurker/FP_Lurker.DAE idle_fidget1", "Rifle_idle_fidget1");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Lurker/FP_Lurker.DAE fire", "Rifle_fire");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Lurker/FP_Lurker.DAE reload", "Rifle_reload");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Lurker/FP_Lurker.DAE fire_alt", "Rifle_fire_alt");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Lurker/FP_Lurker.DAE switch_out", "Rifle_switch_out");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Lurker/FP_Lurker.DAE switch_in", "Rifle_switch_in");
|
||||
|
||||
%this.setSequenceCyclic("Rifle_idle_fidget1", "0");
|
||||
%this.setSequenceCyclic("Rifle_fire", "0");
|
||||
%this.setSequenceCyclic("Rifle_reload", "0");
|
||||
%this.setSequenceCyclic("Rifle_fire_alt", "0");
|
||||
%this.setSequenceCyclic("Rifle_switch_out", "0");
|
||||
%this.setSequenceCyclic("Rifle_switch_in", "0");
|
||||
// END: General rifle Sequences
|
||||
|
||||
// BEGIN: General pistol Sequences
|
||||
// Extracted from Ryder
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Ryder/FP_Ryder.DAE run", "Pistol_run");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Ryder/FP_Ryder.DAE sprint", "Pistol_sprint");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Ryder/FP_Ryder.DAE idle", "Pistol_idle");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Ryder/FP_Ryder.DAE fire", "Pistol_fire");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Ryder/FP_Ryder.DAE reload", "Pistol_reload");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Ryder/FP_Ryder.DAE switch_out", "Pistol_switch_out");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Ryder/FP_Ryder.DAE switch_in", "Pistol_switch_in");
|
||||
|
||||
%this.setSequenceCyclic("Pistol_fire", "0");
|
||||
%this.setSequenceCyclic("Pistol_reload", "0");
|
||||
%this.setSequenceCyclic("Pistol_switch_out", "0");
|
||||
%this.setSequenceCyclic("Pistol_switch_in", "0");
|
||||
// END: General pistol Sequences
|
||||
|
||||
// BEGIN: ProxMine Sequences
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/ProxMine/FP_ProxMine.DAE run", "ProxMine_run");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/ProxMine/FP_ProxMine.DAE run2sprint", "ProxMine_run2sprint");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/ProxMine/FP_ProxMine.DAE sprint", "ProxMine_sprint");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/ProxMine/FP_ProxMine.DAE sprint2run", "ProxMine_sprint2run");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/ProxMine/FP_ProxMine.DAE idle", "ProxMine_idle");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/ProxMine/FP_ProxMine.DAE fire", "ProxMine_fire");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/ProxMine/FP_ProxMine.DAE fire_release", "ProxMine_fire_release");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/ProxMine/FP_ProxMine.DAE switch_out", "ProxMine_switch_out");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/ProxMine/FP_ProxMine.DAE switch_in", "ProxMine_switch_in");
|
||||
|
||||
%this.setSequenceCyclic("ProxMine_fire", "0");
|
||||
%this.setSequenceCyclic("ProxMine_fire_release", "0");
|
||||
%this.setSequenceCyclic("ProxMine_switch_out", "0");
|
||||
%this.setSequenceCyclic("ProxMine_switch_in", "0");
|
||||
%this.setSequenceCyclic("ProxMine_run2sprint", "0");
|
||||
%this.setSequenceCyclic("ProxMine_sprint2run", "0");
|
||||
// END: ProxMine Sequences
|
||||
|
||||
// BEGIN: Turret Sequences
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Turret/FP_Turret.DAE run", "Turret_run");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Turret/FP_Turret.DAE sprint", "Turret_sprint");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Turret/FP_Turret.DAE idle", "Turret_idle");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Turret/FP_Turret.DAE fire", "Turret_fire");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Turret/FP_Turret.DAE switch_out", "Turret_switch_out");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Turret/FP_Turret.DAE switch_in", "Turret_switch_in");
|
||||
|
||||
%this.setSequenceCyclic("Turret_fire", "0");
|
||||
%this.setSequenceCyclic("Turret_switch_out", "0");
|
||||
%this.setSequenceCyclic("Turret_switch_in", "0");
|
||||
// END: Turret Sequences
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -0,0 +1,84 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
// Copyright (c) 2012 GarageGames, LLC
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
// of this software and associated documentation files (the "Software"), to
|
||||
// deal in the Software without restriction, including without limitation the
|
||||
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||
// sell copies of the Software, and to permit persons to whom the Software is
|
||||
// furnished to do so, subject to the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included in
|
||||
// all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||
// IN THE SOFTWARE.
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
singleton Material(Mat_FP_Soldier_Arms_Main)
|
||||
{
|
||||
mapTo = "base_FP_Soldier_Arms_Main";
|
||||
diffuseMap[0] = "data/FPSGameplay/art/shapes/actors/Soldier/FP/FP_SoldierArms_D";
|
||||
specular[0] = "0.9 0.9 0.9 1";
|
||||
specularPower[0] = "10";
|
||||
translucentBlendOp = "None";
|
||||
normalMap[0] = "data/FPSGameplay/art/shapes/actors/Soldier/FP/FP_SoldierArms_N.dds";
|
||||
specularMap[0] = "data/FPSGameplay/art/shapes/actors/Soldier/FP/FP_SoldierArms_S.dds";
|
||||
};
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Soldier Skins
|
||||
// Add names to PlayerData.availableSkins list in art/datablock/player.cs
|
||||
|
||||
singleton Material(Mat_DarkBlue_FP_Soldier_Arms_Main : Mat_FP_Soldier_Arms_Main)
|
||||
{
|
||||
mapTo = "DarkBlue_FP_Soldier_Arms_Main";
|
||||
diffuseMap[0] = "Soldier_FPSarms_DarkBlue_Dif.dds";
|
||||
};
|
||||
|
||||
singleton Material(Mat_DarkGreen_FP_Soldier_Arms_Main : Mat_FP_Soldier_Arms_Main)
|
||||
{
|
||||
mapTo = "DarkGreen_FP_Soldier_Arms_Main";
|
||||
diffuseMap[0] = "Soldier_FPSarms_DarkGreen_Dif.dds";
|
||||
};
|
||||
|
||||
singleton Material(Mat_LightGreen_FP_Soldier_Arms_Main : Mat_FP_Soldier_Arms_Main)
|
||||
{
|
||||
mapTo = "LightGreen_FP_Soldier_Arms_Main";
|
||||
diffuseMap[0] = "Soldier_FPSarms_LightGreen_Dif.dds";
|
||||
};
|
||||
|
||||
singleton Material(Mat_Orange_FP_Soldier_Arms_Main : Mat_FP_Soldier_Arms_Main)
|
||||
{
|
||||
mapTo = "Orange_FP_Soldier_Arms_Main";
|
||||
diffuseMap[0] = "Soldier_FPSarms_Orange_Dif.dds";
|
||||
};
|
||||
|
||||
singleton Material(Mat_Red_FP_Soldier_Arms_Main : Mat_FP_Soldier_Arms_Main)
|
||||
{
|
||||
mapTo = "Red_FP_Soldier_Arms_Main";
|
||||
diffuseMap[0] = "Soldier_FPSarms_Red_Dif.dds";
|
||||
};
|
||||
|
||||
singleton Material(Mat_Teal_FP_Soldier_Arms_Main : Mat_FP_Soldier_Arms_Main)
|
||||
{
|
||||
mapTo = "Teal_FP_Soldier_Arms_Main";
|
||||
diffuseMap[0] = "Soldier_FPSarms_Teal_Dif.dds";
|
||||
};
|
||||
|
||||
singleton Material(Mat_Violet_FP_Soldier_Arms_Main : Mat_FP_Soldier_Arms_Main)
|
||||
{
|
||||
mapTo = "Violet_FP_Soldier_Arms_Main";
|
||||
diffuseMap[0] = "Soldier_FPSarms_Violet_Dif.dds";
|
||||
};
|
||||
|
||||
singleton Material(Mat_Yellow_FP_Soldier_Arms_Main : Mat_FP_Soldier_Arms_Main)
|
||||
{
|
||||
mapTo = "Yellow_FP_Soldier_Arms_Main";
|
||||
diffuseMap[0] = "Soldier_FPSarms_Yellow_Dif.dds";
|
||||
};
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -0,0 +1,132 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
// Copyright (c) 2012 GarageGames, LLC
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
// of this software and associated documentation files (the "Software"), to
|
||||
// deal in the Software without restriction, including without limitation the
|
||||
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||
// sell copies of the Software, and to permit persons to whom the Software is
|
||||
// furnished to do so, subject to the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included in
|
||||
// all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||
// IN THE SOFTWARE.
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
singleton Material(Mat_Soldier_Main)
|
||||
{
|
||||
mapTo = "base_Soldier_Main";
|
||||
|
||||
diffuseMap[0] = "Soldier_Dif.dds";
|
||||
normalMap[0] = "Soldier_N.dds";
|
||||
specularMap[0] = "Soldier_Spec.dds";
|
||||
|
||||
diffuseColor[0] = "1 1 1 1";
|
||||
specular[0] = "0.9 0.9 0.9 1";
|
||||
specularPower[0] = 10;
|
||||
|
||||
doubleSided = false;
|
||||
translucent = false;
|
||||
showFootprints = "0";
|
||||
castDynamicShadows = true;
|
||||
materialTag0 = "Player";
|
||||
};
|
||||
|
||||
singleton Material(Mat_Soldier_Dazzle)
|
||||
{
|
||||
mapTo = "base_Soldier_Dazzle";
|
||||
|
||||
diffuseMap[0] = "Soldier_Dazzle.dds";
|
||||
|
||||
diffuseColor[0] = "1 1 1 1";
|
||||
specular[0] = "0.9 0.9 0.9 1";
|
||||
specularPower[0] = 10;
|
||||
|
||||
doubleSided = false;
|
||||
translucent = "1";
|
||||
translucentBlendOp = "Add";
|
||||
glow[0] = "1";
|
||||
emissive[0] = "1";
|
||||
castShadows = "0";
|
||||
showFootprints = "0";
|
||||
castDynamicShadows = true;
|
||||
materialTag0 = "Player";
|
||||
};
|
||||
|
||||
singleton Material(soldier_rigged_BoundsMaterial)
|
||||
{
|
||||
mapTo = "BoundsMaterial";
|
||||
diffuseColor[0] = "0.0705882 1 0 0.27";
|
||||
specular[0] = "0.9 0.9 0.9 1";
|
||||
specularPower[0] = "10";
|
||||
translucent = "1";
|
||||
};
|
||||
|
||||
singleton Material(soldier_rigged_ShapeBounds)
|
||||
{
|
||||
mapTo = "ShapeBounds";
|
||||
diffuseColor[0] = "0.164706 1 0 1";
|
||||
specular[0] = "0.9 0.9 0.9 1";
|
||||
specularPower[0] = "10";
|
||||
translucentBlendOp = "None";
|
||||
materialTag0 = "Player";
|
||||
};
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Soldier Skins
|
||||
// Add names to PlayerData.availableSkins list in art/datablock/player.cs
|
||||
|
||||
singleton Material(Mat_DarkBlue_Soldier_Main : Mat_Soldier_Main)
|
||||
{
|
||||
mapTo = "DarkBlue_Soldier_Main";
|
||||
diffuseMap[0] = "Soldier_DarkBlue_Dif.dds";
|
||||
};
|
||||
|
||||
singleton Material(Mat_DarkGreen_Soldier_Main : Mat_Soldier_Main)
|
||||
{
|
||||
mapTo = "DarkGreen_Soldier_Main";
|
||||
diffuseMap[0] = "Soldier_DarkGreen_Dif.dds";
|
||||
};
|
||||
|
||||
singleton Material(Mat_LightGreen_Soldier_Main : Mat_Soldier_Main)
|
||||
{
|
||||
mapTo = "LightGreen_Soldier_Main";
|
||||
diffuseMap[0] = "Soldier_LightGreen_Dif.dds";
|
||||
};
|
||||
|
||||
singleton Material(Mat_Orange_Soldier_Main : Mat_Soldier_Main)
|
||||
{
|
||||
mapTo = "Orange_Soldier_Main";
|
||||
diffuseMap[0] = "Soldier_Orange_Dif.dds";
|
||||
};
|
||||
|
||||
singleton Material(Mat_Red_Soldier_Main : Mat_Soldier_Main)
|
||||
{
|
||||
mapTo = "Red_Soldier_Main";
|
||||
diffuseMap[0] = "Soldier_Red_Dif.dds";
|
||||
};
|
||||
|
||||
singleton Material(Mat_Teal_Soldier_Main : Mat_Soldier_Main)
|
||||
{
|
||||
mapTo = "Teal_Soldier_Main";
|
||||
diffuseMap[0] = "Soldier_Teal_Dif.dds";
|
||||
};
|
||||
|
||||
singleton Material(Mat_Violet_Soldier_Main : Mat_Soldier_Main)
|
||||
{
|
||||
mapTo = "Violet_Soldier_Main";
|
||||
diffuseMap[0] = "Soldier_Violet_Dif.dds";
|
||||
};
|
||||
|
||||
singleton Material(Mat_Yellow_Soldier_Main : Mat_Soldier_Main)
|
||||
{
|
||||
mapTo = "Yellow_Soldier_Main";
|
||||
diffuseMap[0] = "Soldier_Yellow_Dif.dds";
|
||||
};
|
||||
File diff suppressed because one or more lines are too long
|
|
@ -0,0 +1,245 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
// Copyright (c) 2012 GarageGames, LLC
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
// of this software and associated documentation files (the "Software"), to
|
||||
// deal in the Software without restriction, including without limitation the
|
||||
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||
// sell copies of the Software, and to permit persons to whom the Software is
|
||||
// furnished to do so, subject to the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included in
|
||||
// all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||
// IN THE SOFTWARE.
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
singleton TSShapeConstructor(SoldierDAE)
|
||||
{
|
||||
baseShape = "./soldier_rigged.DAE";
|
||||
loadLights = "0";
|
||||
unit = "1.0";
|
||||
upAxis = "DEFAULT";
|
||||
lodType = "TrailingNumber";
|
||||
ignoreNodeScale = "0";
|
||||
adjustCenter = "0";
|
||||
adjustFloor = "0";
|
||||
forceUpdateMaterials = "0";
|
||||
};
|
||||
|
||||
function SoldierDAE::onLoad(%this)
|
||||
{
|
||||
%this.addSequence("./Anims/PlayerAnim_Lurker_Back.dae Back", "Back", "0", "-1", "1", "0");
|
||||
%this.addSequence("./Anims/PlayerAnim_Lurker_Celebrate_01.dae Celebrate_01", "Celebrate_01", "0", "-1", "1", "0");
|
||||
%this.addSequence("./Anims/PlayerAnim_Lurker_Crouch_Backward.dae Crouch_Backward", "Crouch_Backward", "0", "-1", "1", "0");
|
||||
%this.addSequence("./Anims/PlayerAnim_Lurker_Crouch_Forward.dae Crouch_Forward", "Crouch_Forward", "0", "-1", "1", "0");
|
||||
%this.addSequence("./Anims/PlayerAnim_Lurker_Crouch_Side.dae Crouch_Side", "Crouch_Side", "0", "-1", "1", "0");
|
||||
%this.addSequence("./Anims/PlayerAnim_Lurker_Crouch_Root.dae Crouch_Root", "Crouch_Root", "0", "-1", "1", "0");
|
||||
%this.addSequence("./Anims/PlayerAnim_Lurker_Death1.dae Death1", "Death1", "0", "-1", "1", "0");
|
||||
%this.addSequence("./Anims/PlayerAnim_Lurker_Death2.dae Death2", "Death2", "0", "-1", "1", "0");
|
||||
%this.addSequence("./Anims/PlayerAnim_Lurker_Fall.dae Fall", "Fall", "0", "-1", "1", "0");
|
||||
%this.addSequence("./Anims/PlayerAnim_Lurker_Head.dae Head", "Head", "0", "-1", "1", "0");
|
||||
%this.addSequence("./Anims/PlayerAnim_Lurker_Jump.dae Jump", "Jump", "0", "-1", "1", "0");
|
||||
%this.addSequence("./Anims/PlayerAnim_Lurker_Land.dae Land", "Land", "0", "-1", "1", "0");
|
||||
%this.addSequence("./Anims/PlayerAnim_Lurker_Look.dae Look", "Look", "0", "-1", "1", "0");
|
||||
%this.addSequence("./Anims/PlayerAnim_Lurker_Reload.dae Reload", "Reload", "0", "-1", "1", "0");
|
||||
%this.addSequence("./Anims/PlayerAnim_Lurker_Root.dae Root", "Root", "0", "-1", "1", "0");
|
||||
%this.addSequence("./Anims/PlayerAnim_Lurker_Run.dae Run", "Run", "0", "-1", "1", "0");
|
||||
%this.addSequence("./Anims/PlayerAnim_Lurker_Side.dae Side", "Side", "0", "-1", "1", "0");
|
||||
%this.addSequence("./Anims/PlayerAnim_Lurker_Sitting.dae Sitting", "Sitting", "0", "-1", "1", "0");
|
||||
%this.addSequence("./Anims/PlayerAnim_Lurker_Swim_Backward.dae Swim_Backward", "Swim_Backward", "0", "-1", "1", "0");
|
||||
%this.addSequence("./Anims/PlayerAnim_Lurker_Swim_Forward.dae Swim_Forward", "Swim_Forward", "0", "-1", "1", "0");
|
||||
%this.addSequence("./Anims/PlayerAnim_Lurker_Swim_Root.dae Swim_Root", "Swim_Root", "0", "-1", "1", "0");
|
||||
%this.addSequence("./Anims/PlayerAnim_Lurker_Swim_Left.dae Swim_Left", "Swim_Left", "0", "-1", "1", "0");
|
||||
%this.addSequence("./Anims/PlayerAnim_Lurker_Swim_Right.dae Swim_Right", "Swim_Right", "0", "-1", "1", "0");
|
||||
%this.setSequenceBlend("Head", "1", "Root", "0");
|
||||
%this.setSequenceBlend("Look", "1", "Root", "0");
|
||||
%this.setSequenceBlend("Reload", "1", "Root", "0");
|
||||
%this.setSequenceGroundSpeed("Back", "0 -3.6 0", "0 0 0");
|
||||
%this.setSequenceGroundSpeed("Run", "0 5 0", "0 0 0");
|
||||
%this.setSequenceGroundSpeed("Side", "-3.6 0 0", "0 0 0");
|
||||
%this.setSequenceGroundSpeed("Swim_Backward", "0 -1 0", "0 0 0");
|
||||
%this.setSequenceGroundSpeed("Swim_Forward", "0 1 0", "0 0 0");
|
||||
%this.setSequenceGroundSpeed("Swim_Left", "-1 0 0", "0 0 0");
|
||||
%this.setSequenceGroundSpeed("Swim_Right", "1 0 0", "0 0 0");
|
||||
%this.setSequenceGroundSpeed("Crouch_Backward", "0 -2 0", "0 0 0");
|
||||
%this.setSequenceGroundSpeed("Crouch_Forward", "0 2 0", "0 0 0");
|
||||
%this.setSequenceGroundSpeed("Crouch_Side", "1 0 0", "0 0 0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Ryder/PlayerAnims/PlayerAnim_Pistol_Back.dae Back", "Pistol_Back", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Ryder/PlayerAnims/PlayerAnim_Pistol_Crouch_Backward.dae Crouch_Backward", "Pistol_Crouch_Backward", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Ryder/PlayerAnims/PlayerAnim_Pistol_Crouch_Forward.dae Crouch_Forward", "Pistol_Crouch_Forward", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Ryder/PlayerAnims/PlayerAnim_Pistol_Crouch_Side.dae Crouch_Side", "Pistol_Crouch_Side", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Ryder/PlayerAnims/PlayerAnim_Pistol_Crouch_Root.dae Crouch_Root", "Pistol_Crouch_Root", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Ryder/PlayerAnims/PlayerAnim_Pistol_Death1.dae Death1", "Pistol_Death1", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Ryder/PlayerAnims/PlayerAnim_Pistol_Death2.dae Death2", "Pistol_Death2", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Ryder/PlayerAnims/PlayerAnim_Pistol_Fall.dae Fall", "Pistol_Fall", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Ryder/PlayerAnims/PlayerAnim_Pistol_Head.dae Head", "Pistol_Head", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Ryder/PlayerAnims/PlayerAnim_Pistol_Jump.dae Jump", "Pistol_Jump", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Ryder/PlayerAnims/PlayerAnim_Pistol_Land.dae Land", "Pistol_Land", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Ryder/PlayerAnims/PlayerAnim_Pistol_Look.dae Look", "Pistol_Look", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Ryder/PlayerAnims/PlayerAnim_Pistol_Reload.dae Reload", "Pistol_Reload", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Ryder/PlayerAnims/PlayerAnim_Pistol_Root.dae Root", "Pistol_Root", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Ryder/PlayerAnims/PlayerAnim_Pistol_Run.dae Run", "Pistol_Run", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Ryder/PlayerAnims/PlayerAnim_Pistol_Side.dae Side", "Pistol_Side", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Ryder/PlayerAnims/PlayerAnim_Pistol_Sitting.dae Sitting", "Pistol_Sitting", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Ryder/PlayerAnims/PlayerAnim_Pistol_Swim_Backward.dae Swim_Backward", "Pistol_Swim_Backward", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Ryder/PlayerAnims/PlayerAnim_Pistol_Swim_Forward.dae Swim_Forward", "Pistol_Swim_Forward", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Ryder/PlayerAnims/PlayerAnim_Pistol_Swim_Root.dae Swim_Root", "Pistol_Swim_Root", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Ryder/PlayerAnims/PlayerAnim_Pistol_Swim_Left.dae Swim_Left", "Pistol_Swim_Left", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Ryder/PlayerAnims/PlayerAnim_Pistol_Swim_Right.dae Swim_Right", "Pistol_Swim_Right", "0", "-1", "1", "0");
|
||||
%this.setSequenceCyclic("Pistol_Fall", "1");
|
||||
%this.setSequenceCyclic("Pistol_Sitting", "1");
|
||||
%this.setSequenceBlend("Pistol_Head", "1", "Pistol_Root", "0");
|
||||
%this.setSequenceBlend("Pistol_Look", "1", "Pistol_Root", "0");
|
||||
%this.setSequenceBlend("Pistol_Reload", "1", "Pistol_Root", "0");
|
||||
%this.setSequenceGroundSpeed("Pistol_Back", "0 -3.6 0", "0 0 0");
|
||||
%this.setSequenceGroundSpeed("Pistol_Run", "0 5 0", "0 0 0");
|
||||
%this.setSequenceGroundSpeed("Pistol_Side", "3.6 0 0", "0 0 0");
|
||||
%this.setSequenceGroundSpeed("Pistol_Swim_Backward", "0 -1 0", "0 0 0");
|
||||
%this.setSequenceGroundSpeed("Pistol_Swim_Forward", "0 1 0", "0 0 0");
|
||||
%this.setSequenceGroundSpeed("Pistol_Swim_Left", "-1 0 0", "0 0 0");
|
||||
%this.setSequenceGroundSpeed("Pistol_Swim_Right", "1 0 0", "0 0 0");
|
||||
%this.setSequenceGroundSpeed("Pistol_Crouch_Backward", "0 -2 0", "0 0 0");
|
||||
%this.setSequenceGroundSpeed("Pistol_Crouch_Forward", "0 2 0", "0 0 0");
|
||||
%this.setSequenceGroundSpeed("Pistol_Crouch_Side", "1 0 0", "0 0 0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/ProxMine/PlayerAnims/PlayerAnim_ProxMine_Back.dae Back", "ProxMine_Back", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/ProxMine/PlayerAnims/PlayerAnim_ProxMine_Crouch_Backward.dae Crouch_Backward", "ProxMine_Crouch_Backward", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/ProxMine/PlayerAnims/PlayerAnim_ProxMine_Crouch_Forward.dae Crouch_Forward", "ProxMine_Crouch_Forward", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/ProxMine/PlayerAnims/PlayerAnim_ProxMine_Crouch_Side.dae Crouch_Side", "ProxMine_Crouch_Side", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/ProxMine/PlayerAnims/PlayerAnim_ProxMine_Crouch_Root.dae Crouch_Root", "ProxMine_Crouch_Root", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/ProxMine/PlayerAnims/PlayerAnim_ProxMine_Death1.dae Death1", "ProxMine_Death1", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/ProxMine/PlayerAnims/PlayerAnim_ProxMine_Death2.dae Death2", "ProxMine_Death2", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/ProxMine/PlayerAnims/PlayerAnim_ProxMine_Fall.dae Fall", "ProxMine_Fall", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/ProxMine/PlayerAnims/PlayerAnim_ProxMine_Head.dae Head", "ProxMine_Head", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/ProxMine/PlayerAnims/PlayerAnim_ProxMine_Jump.dae Jump", "ProxMine_Jump", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/ProxMine/PlayerAnims/PlayerAnim_ProxMine_Land.dae Land", "ProxMine_Land", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/ProxMine/PlayerAnims/PlayerAnim_ProxMine_Look.dae Look", "ProxMine_Look", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/ProxMine/PlayerAnims/PlayerAnim_ProxMine_Reload.dae Reload", "ProxMine_Reload", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/ProxMine/PlayerAnims/PlayerAnim_ProxMine_Fire.dae Fire", "ProxMine_Fire", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/ProxMine/PlayerAnims/PlayerAnim_ProxMine_Fire_Release.dae Fire_Release", "ProxMine_Fire_Release", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/ProxMine/PlayerAnims/PlayerAnim_ProxMine_Root.dae Root", "ProxMine_Root", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/ProxMine/PlayerAnims/PlayerAnim_ProxMine_Run.dae Run", "ProxMine_Run", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/ProxMine/PlayerAnims/PlayerAnim_ProxMine_Side.dae Side", "ProxMine_Side", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/ProxMine/PlayerAnims/PlayerAnim_ProxMine_Sitting.dae Sitting", "ProxMine_Sitting", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/ProxMine/PlayerAnims/PlayerAnim_ProxMine_Swim_Backward.dae Swim_Backward", "ProxMine_Swim_Backward", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/ProxMine/PlayerAnims/PlayerAnim_ProxMine_Swim_Forward.dae Swim_Forward", "ProxMine_Swim_Forward", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/ProxMine/PlayerAnims/PlayerAnim_ProxMine_Swim_Root.dae Swim_Root", "ProxMine_Swim_Root", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/ProxMine/PlayerAnims/PlayerAnim_ProxMine_Swim_Left.dae Swim_Left", "ProxMine_Swim_Left", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/ProxMine/PlayerAnims/PlayerAnim_ProxMine_Swim_Right.dae Swim_Right", "ProxMine_Swim_Right", "0", "-1", "1", "0");
|
||||
%this.setSequenceCyclic("ProxMine_Fall", "1");
|
||||
%this.setSequenceBlend("ProxMine_Head", "1", "ProxMine_Root", "0");
|
||||
%this.setSequenceBlend("ProxMine_Look", "1", "ProxMine_Root", "0");
|
||||
%this.setSequenceBlend("ProxMine_Reload", "1", "ProxMine_Root", "0");
|
||||
%this.setSequenceBlend("ProxMine_Fire", "1", "ProxMine_Root", "0");
|
||||
%this.setSequenceBlend("ProxMine_Fire_Release", "1", "ProxMine_Root", "0");
|
||||
%this.setSequenceGroundSpeed("ProxMine_Back", "0 -3.6 0", "0 0 0");
|
||||
%this.setSequenceGroundSpeed("ProxMine_Run", "0 5 0", "0 0 0");
|
||||
%this.setSequenceGroundSpeed("ProxMine_Side", "3.6 0 0", "0 0 0");
|
||||
%this.setSequenceGroundSpeed("ProxMine_Swim_Backward", "0 -1 0", "0 0 0");
|
||||
%this.setSequenceGroundSpeed("ProxMine_Swim_Forward", "0 1 0", "0 0 0");
|
||||
%this.setSequenceGroundSpeed("ProxMine_Swim_Left", "-1 0 0", "0 0 0");
|
||||
%this.setSequenceGroundSpeed("ProxMine_Swim_Right", "1 0 0", "0 0 0");
|
||||
%this.setSequenceGroundSpeed("ProxMine_Crouch_Backward", "0 -2 0", "0 0 0");
|
||||
%this.setSequenceGroundSpeed("ProxMine_Crouch_Forward", "0 2 0", "0 0 0");
|
||||
%this.setSequenceGroundSpeed("ProxMine_Crouch_Side", "1 0 0", "0 0 0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Turret/PlayerAnims/PlayerAnim_Turret_Back.dae Back", "Turret_Back", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Turret/PlayerAnims/PlayerAnim_Turret_Crouch_Root.dae Crouch_Root", "Turret_Crouch_Root", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Turret/PlayerAnims/PlayerAnim_Turret_Crouch_Backward.dae Crouch_Backward", "Turret_Crouch_Backward", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Turret/PlayerAnims/PlayerAnim_Turret_Crouch_Forward.dae Crouch_Forward", "Turret_Crouch_Forward", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Turret/PlayerAnims/PlayerAnim_Turret_Crouch_Side.dae Crouch_Side", "Turret_Crouch_Side", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Turret/PlayerAnims/PlayerAnim_Turret_Death1.dae Death1", "Turret_Death1", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Turret/PlayerAnims/PlayerAnim_Turret_Death2.dae Death2", "Turret_Death2", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Turret/PlayerAnims/PlayerAnim_Turret_Fall.dae Fall", "Turret_Fall", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Turret/PlayerAnims/PlayerAnim_Turret_Run.dae Run", "Turret_Run", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Turret/PlayerAnims/PlayerAnim_Turret_Jump.dae Jump", "Turret_Jump", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Turret/PlayerAnims/PlayerAnim_Turret_Land.dae Land", "Turret_Land", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Turret/PlayerAnims/PlayerAnim_Turret_Look.dae Look", "Turret_Look", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Turret/PlayerAnims/PlayerAnim_Turret_Head.dae Head", "Turret_Head", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Turret/PlayerAnims/PlayerAnim_Turret_Recoil.dae Recoil", "Turret_Recoil", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Turret/PlayerAnims/PlayerAnim_Turret_Fire_Release.dae Fire_Release", "Turret_Fire_Release", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Turret/PlayerAnims/PlayerAnim_Turret_Root.dae Root", "Turret_Root", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Turret/PlayerAnims/PlayerAnim_Turret_Side.dae Side", "Turret_Side", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Turret/PlayerAnims/PlayerAnim_Turret_Sitting.dae Sitting", "Turret_Sitting", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Turret/PlayerAnims/PlayerAnim_Turret_Swim_Backward.dae Swim_Backward", "Turret_Swim_Backward", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Turret/PlayerAnims/PlayerAnim_Turret_Swim_Forward.dae Swim_Forward", "Turret_Swim_Forward", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Turret/PlayerAnims/PlayerAnim_Turret_Swim_Root.dae Swim_Root", "Turret_Swim_Root", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Turret/PlayerAnims/PlayerAnim_Turret_Swim_Left.dae Swim_Left", "Turret_Swim_Left", "0", "-1", "1", "0");
|
||||
%this.addSequence("data/FPSGameplay/art/shapes/weapons/Turret/PlayerAnims/PlayerAnim_Turret_Swim_Right.dae Swim_Right", "Turret_Swim_Right", "0", "-1", "1", "0");
|
||||
%this.setSequenceBlend("Turret_Head", "1", "Turret_Root", "0");
|
||||
%this.setSequenceBlend("Turret_Look", "1", "Turret_Root", "0");
|
||||
%this.setSequenceBlend("Turret_Recoil", "1", "Turret_Root", "0");
|
||||
%this.setSequenceBlend("Turret_Fire_Release", "1", "Turret_Root", "0");
|
||||
%this.setSequenceGroundSpeed("Turret_Back", "0 -3.6 0", "0 0 0");
|
||||
%this.setSequenceGroundSpeed("Turret_Run", "0 5 0", "0 0 0");
|
||||
%this.setSequenceGroundSpeed("Turret_Side", "3.6 0 0", "0 0 0");
|
||||
%this.setSequenceGroundSpeed("Turret_Swim_Backward", "0 -1 0", "0 0 0");
|
||||
%this.setSequenceGroundSpeed("Turret_Swim_Forward", "0 1 0", "0 0 0");
|
||||
%this.setSequenceGroundSpeed("Turret_Swim_Left", "-1 0 0", "0 0 0");
|
||||
%this.setSequenceGroundSpeed("Turret_Swim_Right", "1 0 0", "0 0 0");
|
||||
%this.setSequenceGroundSpeed("Turret_Crouch_Backward", "0 -2 0", "0 0 0");
|
||||
%this.setSequenceGroundSpeed("Turret_Crouch_Forward", "0 2 0", "0 0 0");
|
||||
%this.setSequenceGroundSpeed("Turret_Crouch_Side", "1 0 0", "0 0 0");
|
||||
%this.addTrigger("Back", "4", "1");
|
||||
%this.addTrigger("Back", "13", "2");
|
||||
%this.addTrigger("jump", "6", "1");
|
||||
%this.addTrigger("Land", "5", "1");
|
||||
%this.addTrigger("Run", "8", "1");
|
||||
%this.addTrigger("Run", "16", "2");
|
||||
%this.addTrigger("Pistol_Back", "6", "1");
|
||||
%this.addTrigger("Pistol_Back", "12", "2");
|
||||
%this.addTrigger("Crouch_Backward", "8", "1");
|
||||
%this.addTrigger("Crouch_Backward", "19", "2");
|
||||
%this.addTrigger("Crouch_Forward", "12", "1");
|
||||
%this.addTrigger("Crouch_Forward", "24", "2");
|
||||
%this.addTrigger("Crouch_Side", "16", "1");
|
||||
%this.addTrigger("Crouch_Side", "23", "2");
|
||||
%this.addTrigger("Side", "7", "1");
|
||||
%this.addTrigger("Side", "17", "2");
|
||||
%this.addTrigger("Pistol_Crouch_Backward", "10", "1");
|
||||
%this.addTrigger("Pistol_Crouch_Backward", "24", "2");
|
||||
%this.addTrigger("Pistol_Crouch_Forward", "9", "1");
|
||||
%this.addTrigger("Pistol_Crouch_Forward", "25", "2");
|
||||
%this.addTrigger("Pistol_Crouch_Side", "8", "1");
|
||||
%this.addTrigger("Pistol_Crouch_Side", "23", "2");
|
||||
%this.addTrigger("Pistol_Jump", "5", "1");
|
||||
%this.addTrigger("Pistol_Land", "9", "1");
|
||||
%this.addTrigger("Pistol_Run", "8", "1");
|
||||
%this.addTrigger("Pistol_Run", "16", "2");
|
||||
%this.addTrigger("Pistol_Side", "8", "1");
|
||||
%this.addTrigger("Pistol_Side", "17", "2");
|
||||
%this.addTrigger("ProxMine_Back", "3", "1");
|
||||
%this.addTrigger("ProxMine_Back", "12", "2");
|
||||
%this.addTrigger("ProxMine_Crouch_Backward", "9", "1");
|
||||
%this.addTrigger("ProxMine_Crouch_Backward", "18", "2");
|
||||
%this.addTrigger("ProxMine_Crouch_Forward", "12", "1");
|
||||
%this.addTrigger("ProxMine_Crouch_Forward", "25", "2");
|
||||
%this.addTrigger("ProxMine_Crouch_Side", "12", "1");
|
||||
%this.addTrigger("ProxMine_Crouch_Side", "27", "2");
|
||||
%this.addTrigger("ProxMine_Fall", "15", "1");
|
||||
%this.addTrigger("ProxMine_Jump", "5", "1");
|
||||
%this.addTrigger("ProxMine_Land", "7", "1");
|
||||
%this.addTrigger("ProxMine_Run", "8", "1");
|
||||
%this.addTrigger("ProxMine_Run", "17", "2");
|
||||
%this.addTrigger("ProxMine_Side", "7", "1");
|
||||
%this.addTrigger("ProxMine_Side", "18", "2");
|
||||
%this.addTrigger("Turret_Back", "4", "1");
|
||||
%this.addTrigger("Turret_Back", "11", "2");
|
||||
%this.addTrigger("Turret_Crouch_Backward", "8", "1");
|
||||
%this.addTrigger("Turret_Crouch_Backward", "26", "2");
|
||||
%this.addTrigger("Turret_Crouch_Forward", "12", "1");
|
||||
%this.addTrigger("Turret_Crouch_Forward", "24", "2");
|
||||
%this.addTrigger("Turret_Crouch_Side", "13", "1");
|
||||
%this.addTrigger("Turret_Crouch_Side", "24", "2");
|
||||
%this.addTrigger("Turret_Run", "7", "1");
|
||||
%this.addTrigger("Turret_Run", "17", "2");
|
||||
%this.addTrigger("Turret_Jump", "6", "1");
|
||||
%this.addTrigger("Turret_Land", "3", "1");
|
||||
%this.addTrigger("Turret_Side", "9", "1");
|
||||
%this.addTrigger("Turret_Side", "17", "2");
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
|
After Width: | Height: | Size: 1.3 KiB |
|
|
@ -0,0 +1,31 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
// Copyright (c) 2012 GarageGames, LLC
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
// of this software and associated documentation files (the "Software"), to
|
||||
// deal in the Software without restriction, including without limitation the
|
||||
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||
// sell copies of the Software, and to permit persons to whom the Software is
|
||||
// furnished to do so, subject to the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included in
|
||||
// all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||
// IN THE SOFTWARE.
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
new Material(CommonPlayerFootprint)
|
||||
{
|
||||
diffuseMap[0] = "footprint";
|
||||
vertColor[0] = true;
|
||||
translucent = true;
|
||||
castShadows = "0";
|
||||
translucentZWrite = "1";
|
||||
materialTag0 = "Player";
|
||||
};
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 1.3 KiB |
BIN
Templates/Modules/FPSGameplay/art/shapes/base-normal.png
Normal file
BIN
Templates/Modules/FPSGameplay/art/shapes/base-normal.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 110 KiB |
BIN
Templates/Modules/FPSGameplay/art/shapes/base.png
Normal file
BIN
Templates/Modules/FPSGameplay/art/shapes/base.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 115 KiB |
BIN
Templates/Modules/FPSGameplay/art/shapes/blue.jpg
Normal file
BIN
Templates/Modules/FPSGameplay/art/shapes/blue.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4.7 KiB |
BIN
Templates/Modules/FPSGameplay/art/shapes/camera.dts
Normal file
BIN
Templates/Modules/FPSGameplay/art/shapes/camera.dts
Normal file
Binary file not shown.
BIN
Templates/Modules/FPSGameplay/art/shapes/camera.mb
Normal file
BIN
Templates/Modules/FPSGameplay/art/shapes/camera.mb
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue