From 06f2bd6187127d6dc938a414868a22e6ad28a07c Mon Sep 17 00:00:00 2001 From: Marcus Weber Date: Thu, 29 Feb 2024 11:58:13 +0100 Subject: [PATCH] Release v1.10.1 --- CHANGELOG.md | 6 + CMakeLists.txt | 2 +- .../src/ramses_adaptor/SkinAdaptor.cpp | 13 +- doc/debugging/profiling/README.md | 2 +- doc/debugging/versions/README.md | 2 +- screenshot_tests/CMakeLists.txt | 1 + .../expected/skinning-rigged-figure.png | 3 + .../projects/shaders/skin-rigged-figure.frag | 13 + .../projects/shaders/skin-rigged-figure.vert | 28 + .../projects/skinning-rigged-figure.rca | 10519 ++++++++++++++++ 10 files changed, 10585 insertions(+), 4 deletions(-) create mode 100644 screenshot_tests/expected/skinning-rigged-figure.png create mode 100644 screenshot_tests/projects/shaders/skin-rigged-figure.frag create mode 100644 screenshot_tests/projects/shaders/skin-rigged-figure.vert create mode 100644 screenshot_tests/projects/skinning-rigged-figure.rca diff --git a/CHANGELOG.md b/CHANGELOG.md index 8446ff85..8040b179 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,6 +24,12 @@ If a copy of the MPL was not distributed with this file, You can obtain one at h --> +## [1.10.1] Skinning Export Bugfix + +### Fixes +* Include workaround fixing the export of Skin objects. + + ## [1.10.0] Multiedit, Shader Includes, Drag-and-drop Support, Misc Usability Improvements and Bugfixes ### Added diff --git a/CMakeLists.txt b/CMakeLists.txt index 17c22c9e..49b65a98 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,7 +11,7 @@ cmake_minimum_required(VERSION 3.19) SET(CMAKE_CONFIGURATION_TYPES "Debug;RelWithDebInfo") -project(RaCoOS VERSION 1.10.0) +project(RaCoOS VERSION 1.10.1) SET(RACO_RELEASE_DIRECTORY ${CMAKE_BINARY_DIR}/release) diff --git a/components/libRamsesBase/src/ramses_adaptor/SkinAdaptor.cpp b/components/libRamsesBase/src/ramses_adaptor/SkinAdaptor.cpp index ed5825ef..370320aa 100644 --- a/components/libRamsesBase/src/ramses_adaptor/SkinAdaptor.cpp +++ b/components/libRamsesBase/src/ramses_adaptor/SkinAdaptor.cpp @@ -77,7 +77,18 @@ bool SkinAdaptor::sync(core::Errors* errors) { (*appearance)->getEffect().findUniformInput(raco::core::SkinData::INV_BIND_MATRICES_UNIFORM_NAME, uniform); std::string name = targetAdaptors.size() == 1 ? editorObject()->objectName() : fmt::format("{}_SkinBinding_{}", editorObject()->objectName(), index); - auto skinBinding = ramses_base::ramsesSkinBinding(&sceneAdaptor_->logicEngine(), jointBindings, data->inverseBindMatrices, appearanceBinding, uniform, name, editorObject()->objectIDAsRamsesLogicID()); + + // TODO workaround for the LogicEngine SkinBindingImpl::Serialize function reversing the order of the bind matrices. + // Remove this again once the LogicEngine has been fixed. + std::vector> matrices; + if (sceneAdaptor_->optimizeForExport()) { + std::copy(data->inverseBindMatrices.rbegin(), data->inverseBindMatrices.rend(), std::inserter(matrices, matrices.end())); + } else { + std::copy(data->inverseBindMatrices.begin(), data->inverseBindMatrices.end(), std::inserter(matrices, matrices.end())); + } + + auto skinBinding = ramses_base::ramsesSkinBinding(&sceneAdaptor_->logicEngine(), jointBindings, matrices, appearanceBinding, + uniform, name, editorObject()->objectIDAsRamsesLogicID()); if (skinBinding) { skinBindings_.emplace_back(skinBinding); } else { diff --git a/doc/debugging/profiling/README.md b/doc/debugging/profiling/README.md index 69b61e17..e7d907b8 100644 --- a/doc/debugging/profiling/README.md +++ b/doc/debugging/profiling/README.md @@ -50,7 +50,7 @@ the Graphics memory section can provide a hint towards the video memory required Most hardware vendors provide specialized tools for GPU Debugging and profiling. To list a few examples: * [NVidia NSight](https://developer.nvidia.com/nsight-graphics) -* [Intel GPA](https://www.intel.com/content/www/us/en/developer/tools/graphics-performance-analyzers/download.html) * [Snapdragon profiler](https://developer.qualcomm.com/software/snapdragon-profiler) +* Intel GPA Those tools are very powerful and usually give device-specific hints about optimization potentials in your app. diff --git a/doc/debugging/versions/README.md b/doc/debugging/versions/README.md index 111cc6f3..80e937c2 100644 --- a/doc/debugging/versions/README.md +++ b/doc/debugging/versions/README.md @@ -17,7 +17,7 @@ We also mention changes to the shipped library versions in the CHANGELOG file in For a comprehensive list of the Ramses Toolchain releases (of which the Ramses Composer is a part of) alongside upgrade hints and future plans, please refer to the -[Ramses SDK docs](https://ramses-sdk.readthedocs.io/en/latest/versions.html). +[Ramses SDK docs](https://ramses-sdk.readthedocs.io/en/latest/). ## Switching to a newer version of the Composer (Project files) diff --git a/screenshot_tests/CMakeLists.txt b/screenshot_tests/CMakeLists.txt index 120eadaa..1561baff 100644 --- a/screenshot_tests/CMakeLists.txt +++ b/screenshot_tests/CMakeLists.txt @@ -36,6 +36,7 @@ if(WIN32) duck morphing skinning + skinning-rigged-figure ) set(RACO_DOC_PROJECTS diff --git a/screenshot_tests/expected/skinning-rigged-figure.png b/screenshot_tests/expected/skinning-rigged-figure.png new file mode 100644 index 00000000..de054d78 --- /dev/null +++ b/screenshot_tests/expected/skinning-rigged-figure.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f20f17e466b38675dc44af2121210fa37ab911b751def11f0763516327c7c678 +size 15236 diff --git a/screenshot_tests/projects/shaders/skin-rigged-figure.frag b/screenshot_tests/projects/shaders/skin-rigged-figure.frag new file mode 100644 index 00000000..44aae2de --- /dev/null +++ b/screenshot_tests/projects/shaders/skin-rigged-figure.frag @@ -0,0 +1,13 @@ +#version 300 es + +precision mediump float; + +in float lambertian; + +out vec4 FragColor; + +uniform vec3 u_color; + +void main() { + FragColor = vec4(lambertian * u_color.rgb, 1.0); +} diff --git a/screenshot_tests/projects/shaders/skin-rigged-figure.vert b/screenshot_tests/projects/shaders/skin-rigged-figure.vert new file mode 100644 index 00000000..c6d9d5b6 --- /dev/null +++ b/screenshot_tests/projects/shaders/skin-rigged-figure.vert @@ -0,0 +1,28 @@ +#version 300 es + +precision mediump float; + +in vec3 a_Position; +in vec3 a_Normal; + +uniform mat4 u_VMatrix; +uniform mat4 u_PMatrix; + +in vec4 a_Joints0; +in vec4 a_Weights0; + +uniform mat4 u_jointMat[19]; + +out float lambertian; + +void main() { + lambertian = mix(0.4, 0.8, max(abs(dot(vec3(1.5,2.4,1.0),a_Normal)), 0.0)); + + mat4 skinMat = + a_Weights0.x * u_jointMat[int(a_Joints0.x)] + + a_Weights0.y * u_jointMat[int(a_Joints0.y)] + + a_Weights0.z * u_jointMat[int(a_Joints0.z)] + + a_Weights0.w * u_jointMat[int(a_Joints0.w)]; + + gl_Position = u_PMatrix * u_VMatrix * skinMat * vec4(a_Position, 1.0); +} \ No newline at end of file diff --git a/screenshot_tests/projects/skinning-rigged-figure.rca b/screenshot_tests/projects/skinning-rigged-figure.rca new file mode 100644 index 00000000..99c985c7 --- /dev/null +++ b/screenshot_tests/projects/skinning-rigged-figure.rca @@ -0,0 +1,10519 @@ +{ + "externalProjects": { + }, + "featureLevel": 5, + "fileVersion": 54, + "instances": [ + { + "properties": { + "backgroundColor": { + "w": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1 + }, + "x": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + } + }, + "defaultResourceFolders": { + "imageSubdirectory": "images", + "interfaceSubdirectory": "interfaces", + "meshSubdirectory": "meshes", + "scriptSubdirectory": "scripts", + "shaderSubdirectory": "shaders" + }, + "featureLevel": 5, + "objectID": "4cf440c3-b838-49ff-9150-527f13c55f74", + "objectName": "skinning-rigged-figure", + "saveAsZip": false, + "sceneId": { + "annotations": [ + { + "properties": { + "max": 1024, + "min": 1 + }, + "typeName": "RangeAnnotationInt" + } + ], + "value": 123 + }, + "viewport": { + "i1": { + "annotations": [ + { + "properties": { + "max": 4096, + "min": 0 + }, + "typeName": "RangeAnnotationInt" + } + ], + "value": 1440 + }, + "i2": { + "annotations": [ + { + "properties": { + "max": 4096, + "min": 0 + }, + "typeName": "RangeAnnotationInt" + } + ], + "value": 720 + } + } + }, + "typeName": "ProjectSettings" + }, + { + "properties": { + "children": { + "properties": [ + { + "typeName": "Ref", + "value": "c80cfe27-71fe-48b8-a9ac-1cf5962540cd" + } + ] + }, + "enabled": true, + "objectID": "2b7c4d00-93ce-40a1-a69d-827390ac554d", + "objectName": "Node", + "rotation": { + "x": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + } + }, + "scaling": { + "x": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1 + } + }, + "tags": { + "properties": [ + { + "typeName": "String", + "value": "render_main" + } + ] + }, + "translation": { + "x": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.7 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + } + }, + "visibility": true + }, + "typeName": "Node" + }, + { + "properties": { + "enabled": true, + "frustum": { + "order": [ + "nearPlane", + "farPlane", + "fieldOfView", + "aspectRatio" + ], + "properties": { + "aspectRatio": { + "annotations": [ + { + "properties": { + "name": "aspectRatio" + }, + "typeName": "DisplayNameAnnotation" + }, + { + "properties": { + "max": 4, + "min": 0.5 + }, + "typeName": "RangeAnnotationDouble" + }, + { + "properties": { + "featureLevel": 1 + }, + "typeName": "LinkEndAnnotation" + } + ], + "typeName": "Double::DisplayNameAnnotation::RangeAnnotationDouble::LinkEndAnnotation", + "value": 2 + }, + "farPlane": { + "annotations": [ + { + "properties": { + "name": "farPlane" + }, + "typeName": "DisplayNameAnnotation" + }, + { + "properties": { + "max": 10000, + "min": 100 + }, + "typeName": "RangeAnnotationDouble" + }, + { + "properties": { + "featureLevel": 1 + }, + "typeName": "LinkEndAnnotation" + } + ], + "typeName": "Double::DisplayNameAnnotation::RangeAnnotationDouble::LinkEndAnnotation", + "value": 1000 + }, + "fieldOfView": { + "annotations": [ + { + "properties": { + "name": "fieldOfView" + }, + "typeName": "DisplayNameAnnotation" + }, + { + "properties": { + "max": 120, + "min": 10 + }, + "typeName": "RangeAnnotationDouble" + }, + { + "properties": { + "featureLevel": 1 + }, + "typeName": "LinkEndAnnotation" + } + ], + "typeName": "Double::DisplayNameAnnotation::RangeAnnotationDouble::LinkEndAnnotation", + "value": 35 + }, + "nearPlane": { + "annotations": [ + { + "properties": { + "name": "nearPlane" + }, + "typeName": "DisplayNameAnnotation" + }, + { + "properties": { + "max": 1, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + }, + { + "properties": { + "featureLevel": 1 + }, + "typeName": "LinkEndAnnotation" + } + ], + "typeName": "Double::DisplayNameAnnotation::RangeAnnotationDouble::LinkEndAnnotation", + "value": 0.1 + } + } + }, + "frustumType": 0, + "objectID": "b0e63b9d-f290-4628-9376-9f0f6629280b", + "objectName": "PerspectiveCamera", + "rotation": { + "x": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + } + }, + "scaling": { + "x": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1 + } + }, + "translation": { + "x": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 3 + } + }, + "viewport": { + "height": { + "annotations": [ + { + "properties": { + "max": 7680, + "min": 1 + }, + "typeName": "RangeAnnotationInt" + } + ], + "value": 720 + }, + "offsetX": { + "annotations": [ + { + "properties": { + "max": 7680, + "min": -7680 + }, + "typeName": "RangeAnnotationInt" + } + ], + "value": 0 + }, + "offsetY": { + "annotations": [ + { + "properties": { + "max": 7680, + "min": -7680 + }, + "typeName": "RangeAnnotationInt" + } + ], + "value": 0 + }, + "width": { + "annotations": [ + { + "properties": { + "max": 7680, + "min": 1 + }, + "typeName": "RangeAnnotationInt" + } + ], + "value": 1440 + } + }, + "visibility": true + }, + "typeName": "PerspectiveCamera" + }, + { + "properties": { + "enabled": true, + "objectID": "004dee79-2d9b-4e9e-9303-4ac2189a9b64", + "objectName": "arm_joint_R_3", + "rotation": { + "x": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 9.531179428100586 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -16.202068328857422 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 2.9976377487182617 + } + }, + "scaling": { + "x": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.9999998211860657 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.9999999403953552 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1.0000001192092896 + } + }, + "translation": { + "x": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.18551680445671082 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + } + }, + "visibility": true + }, + "typeName": "Node" + }, + { + "properties": { + "animationIndex": 0, + "objectID": "0591450d-c617-4224-af80-9a1a81cd943f", + "objectName": "animation_0.ch44", + "samplerIndex": 44, + "uri": "../../resources/meshes/RiggedFigure/RiggedFigure.gltf" + }, + "typeName": "AnimationChannel" + }, + { + "properties": { + "animationIndex": 0, + "objectID": "06a5713b-d6ee-4003-9d6c-286eaf62aef3", + "objectName": "animation_0.ch47", + "samplerIndex": 47, + "uri": "../../resources/meshes/RiggedFigure/RiggedFigure.gltf" + }, + "typeName": "AnimationChannel" + }, + { + "properties": { + "enabled": true, + "instanceCount": { + "annotations": [ + { + "properties": { + "max": 20, + "min": 1 + }, + "typeName": "RangeAnnotationInt" + } + ], + "value": 1 + }, + "materials": { + "order": [ + "material" + ], + "properties": { + "material": { + "order": [ + "material", + "private", + "options", + "uniforms" + ], + "properties": { + "material": { + "typeName": "Material", + "value": "e86e6216-4f21-44b4-97eb-5ab380e754dc" + }, + "options": { + "annotations": [ + { + "properties": { + "name": "Options" + }, + "typeName": "DisplayNameAnnotation" + } + ], + "properties": { + "blendColor": { + "w": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + }, + "x": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + } + }, + "blendFactorDestAlpha": 1, + "blendFactorDestColor": 3, + "blendFactorSrcAlpha": 1, + "blendFactorSrcColor": 2, + "blendOperationAlpha": 0, + "blendOperationColor": 0, + "colorWriteMask": { + "alpha": true, + "blue": true, + "green": true, + "red": true + }, + "cullmode": 2, + "depthFunction": 4, + "depthwrite": true, + "scissorOptions": { + "scissorEnable": false, + "scissorRegion": { + "height": { + "annotations": [ + { + "properties": { + "max": 7680, + "min": 1 + }, + "typeName": "RangeAnnotationInt" + } + ], + "value": 720 + }, + "offsetX": { + "annotations": [ + { + "properties": { + "max": 7680, + "min": -7680 + }, + "typeName": "RangeAnnotationInt" + } + ], + "value": 0 + }, + "offsetY": { + "annotations": [ + { + "properties": { + "max": 7680, + "min": -7680 + }, + "typeName": "RangeAnnotationInt" + } + ], + "value": 0 + }, + "width": { + "annotations": [ + { + "properties": { + "max": 7680, + "min": 1 + }, + "typeName": "RangeAnnotationInt" + } + ], + "value": 1440 + } + } + }, + "stencilOptions": { + "stencilFunc": 0, + "stencilMask": { + "annotations": [ + { + "properties": { + "max": 255, + "min": 0 + }, + "typeName": "RangeAnnotationInt" + } + ], + "value": 255 + }, + "stencilOpDepthFail": 0, + "stencilOpDepthSucc": 0, + "stencilOpStencilFail": 0, + "stencilRef": { + "annotations": [ + { + "properties": { + "max": 255, + "min": 0 + }, + "typeName": "RangeAnnotationInt" + } + ], + "value": 1 + } + } + }, + "typeName": "BlendOptions::DisplayNameAnnotation" + }, + "private": { + "annotations": [ + { + "properties": { + "name": "Private Material" + }, + "typeName": "DisplayNameAnnotation" + } + ], + "typeName": "Bool::DisplayNameAnnotation", + "value": true + }, + "uniforms": { + "order": [ + "u_color" + ], + "properties": { + "u_color": { + "annotations": [ + { + "properties": { + "engineType": 8 + }, + "typeName": "EngineTypeAnnotation" + }, + { + "properties": { + "featureLevel": 1 + }, + "typeName": "LinkEndAnnotation" + } + ], + "properties": { + "x": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.8509803921568627 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.8823529411764706 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.2823529411764706 + } + }, + "typeName": "Vec3f::EngineTypeAnnotation::LinkEndAnnotation" + } + }, + "typeName": "Table" + } + }, + "typeName": "Table" + } + } + }, + "mesh": "482ad099-9f52-4d0c-81a1-0c68ebd61c8e", + "objectID": "07904c60-dc01-4336-9aa0-496e51db2632", + "objectName": "Proxy", + "rotation": { + "x": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + } + }, + "scaling": { + "x": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1 + } + }, + "translation": { + "x": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + } + }, + "visibility": true + }, + "typeName": "MeshNode" + }, + { + "properties": { + "animationIndex": 0, + "objectID": "08d49812-025e-40c7-b04c-f8862d56d880", + "objectName": "animation_0.ch55", + "samplerIndex": 55, + "uri": "../../resources/meshes/RiggedFigure/RiggedFigure.gltf" + }, + "typeName": "AnimationChannel" + }, + { + "properties": { + "joints": { + "order": [ + "joint_0", + "joint_1", + "joint_2", + "joint_3", + "joint_4", + "joint_5", + "joint_6", + "joint_7", + "joint_8", + "joint_9", + "joint_10", + "joint_11", + "joint_12", + "joint_13", + "joint_14", + "joint_15", + "joint_16", + "joint_17", + "joint_18" + ], + "properties": { + "joint_0": { + "typeName": "Node", + "value": "fa7e1b3d-cc76-4e4c-b527-e1b1b47b858c" + }, + "joint_1": { + "typeName": "Node", + "value": "71542623-c677-4254-9456-2712ff4c3a08" + }, + "joint_10": { + "typeName": "Node", + "value": "004dee79-2d9b-4e9e-9303-4ac2189a9b64" + }, + "joint_11": { + "typeName": "Node", + "value": "348bac46-6da4-4ceb-a96f-7ef816a68eb4" + }, + "joint_12": { + "typeName": "Node", + "value": "9348d441-2e34-4e53-8d72-11780148868a" + }, + "joint_13": { + "typeName": "Node", + "value": "863c1b12-9449-43a4-90cc-54ccb81aec38" + }, + "joint_14": { + "typeName": "Node", + "value": "2e2a5809-a71d-4263-b8b8-ac8c31ec6648" + }, + "joint_15": { + "typeName": "Node", + "value": "c805e73b-3273-4b51-99b5-253ef1917ed0" + }, + "joint_16": { + "typeName": "Node", + "value": "9bcad876-8074-4a5d-a9be-fae668a94868" + }, + "joint_17": { + "typeName": "Node", + "value": "67a5ce33-34d3-4613-b707-78c0321ee13d" + }, + "joint_18": { + "typeName": "Node", + "value": "c4e73a74-02b1-4d9b-a3a5-3d13fd91e1ef" + }, + "joint_2": { + "typeName": "Node", + "value": "d987aa18-6ef1-4365-8607-1e1739bf49b4" + }, + "joint_3": { + "typeName": "Node", + "value": "a1641f65-a42e-4fc3-866a-8b571e4ef1c5" + }, + "joint_4": { + "typeName": "Node", + "value": "ea0b78f3-8567-49c0-b4ca-b0f13efb547b" + }, + "joint_5": { + "typeName": "Node", + "value": "4f4ef474-b5a4-43e4-a0c3-545b6776f36d" + }, + "joint_6": { + "typeName": "Node", + "value": "aaab0a94-3d79-4195-90be-7f439d01b605" + }, + "joint_7": { + "typeName": "Node", + "value": "d9ac6a33-768f-41bd-a322-bd28529410e2" + }, + "joint_8": { + "typeName": "Node", + "value": "973f1301-0af7-4b03-b0d7-390752ef27d7" + }, + "joint_9": { + "typeName": "Node", + "value": "ebb0caaf-90d5-48f7-ba4f-0c0933e1cba5" + } + } + }, + "objectID": "0a397364-5e6d-4aa1-8189-8fc68c48cb61", + "objectName": "Armature", + "skinIndex": 0, + "targets": { + "order": [ + "target_0" + ], + "properties": { + "target_0": { + "typeName": "MeshNode", + "value": "07904c60-dc01-4336-9aa0-496e51db2632" + } + } + }, + "uri": "../../resources/meshes/RiggedFigure/RiggedFigure.gltf" + }, + "typeName": "Skin" + }, + { + "properties": { + "animationIndex": 0, + "objectID": "0b1eb23f-337d-47ea-9977-624880e14630", + "objectName": "animation_0.ch4", + "samplerIndex": 4, + "uri": "../../resources/meshes/RiggedFigure/RiggedFigure.gltf" + }, + "typeName": "AnimationChannel" + }, + { + "properties": { + "animationIndex": 0, + "objectID": "0e0afa74-42db-431d-93fe-c9c30c8a6ee4", + "objectName": "animation_0.ch26", + "samplerIndex": 26, + "uri": "../../resources/meshes/RiggedFigure/RiggedFigure.gltf" + }, + "typeName": "AnimationChannel" + }, + { + "properties": { + "animationIndex": 0, + "objectID": "136b80f6-c3ef-4397-9a70-954b89750084", + "objectName": "animation_0.ch12", + "samplerIndex": 12, + "uri": "../../resources/meshes/RiggedFigure/RiggedFigure.gltf" + }, + "typeName": "AnimationChannel" + }, + { + "properties": { + "animationIndex": 0, + "objectID": "19aca316-b8f0-45b1-935d-e131fcd15259", + "objectName": "animation_0.ch28", + "samplerIndex": 28, + "uri": "../../resources/meshes/RiggedFigure/RiggedFigure.gltf" + }, + "typeName": "AnimationChannel" + }, + { + "properties": { + "animationIndex": 0, + "objectID": "224390c4-7b3b-407f-aaa8-2e231c77433e", + "objectName": "animation_0.ch18", + "samplerIndex": 18, + "uri": "../../resources/meshes/RiggedFigure/RiggedFigure.gltf" + }, + "typeName": "AnimationChannel" + }, + { + "properties": { + "children": { + "properties": [ + { + "typeName": "Ref", + "value": "07904c60-dc01-4336-9aa0-496e51db2632" + }, + { + "typeName": "Ref", + "value": "b80894b6-827b-4099-886b-2a3c3ad9e560" + } + ] + }, + "enabled": true, + "objectID": "249fc9e3-6675-47db-8bad-af6f74b18e27", + "objectName": "Z_UP", + "rotation": { + "x": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -90 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + } + }, + "scaling": { + "x": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1 + } + }, + "translation": { + "x": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + } + }, + "visibility": true + }, + "typeName": "Node" + }, + { + "properties": { + "animationIndex": 0, + "objectID": "26d4cf24-2b52-4e63-9d6b-85a33ea0162c", + "objectName": "animation_0.ch33", + "samplerIndex": 33, + "uri": "../../resources/meshes/RiggedFigure/RiggedFigure.gltf" + }, + "typeName": "AnimationChannel" + }, + { + "properties": { + "animationIndex": 0, + "objectID": "283d4030-434b-4ec2-bac7-4ed16ec51042", + "objectName": "animation_0.ch56", + "samplerIndex": 56, + "uri": "../../resources/meshes/RiggedFigure/RiggedFigure.gltf" + }, + "typeName": "AnimationChannel" + }, + { + "properties": { + "animationIndex": 0, + "objectID": "2871f080-35b2-46e3-96ae-1365a27d39f0", + "objectName": "animation_0.ch53", + "samplerIndex": 53, + "uri": "../../resources/meshes/RiggedFigure/RiggedFigure.gltf" + }, + "typeName": "AnimationChannel" + }, + { + "properties": { + "animationIndex": 0, + "objectID": "2c89406c-e862-4978-8df4-d4f094c832e7", + "objectName": "animation_0.ch17", + "samplerIndex": 17, + "uri": "../../resources/meshes/RiggedFigure/RiggedFigure.gltf" + }, + "typeName": "AnimationChannel" + }, + { + "properties": { + "animationIndex": 0, + "objectID": "2dc08481-5e7b-4aee-966e-b992698730ab", + "objectName": "animation_0.ch23", + "samplerIndex": 23, + "uri": "../../resources/meshes/RiggedFigure/RiggedFigure.gltf" + }, + "typeName": "AnimationChannel" + }, + { + "properties": { + "children": { + "properties": [ + { + "typeName": "Ref", + "value": "9bcad876-8074-4a5d-a9be-fae668a94868" + } + ] + }, + "enabled": true, + "objectID": "2e2a5809-a71d-4263-b8b8-ac8c31ec6648", + "objectName": "leg_joint_R_2", + "rotation": { + "x": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -25.11377716064453 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -9.330574989318848 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.8954949975013733 + } + }, + "scaling": { + "x": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1.0000009536743164 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1.0000003576278687 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1.0000008344650269 + } + }, + "translation": { + "x": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 7.4505797087454084e-09 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.26611220836639404 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + } + }, + "visibility": true + }, + "typeName": "Node" + }, + { + "properties": { + "children": { + "properties": [ + { + "typeName": "Ref", + "value": "863c1b12-9449-43a4-90cc-54ccb81aec38" + } + ] + }, + "enabled": true, + "objectID": "348bac46-6da4-4ceb-a96f-7ef816a68eb4", + "objectName": "leg_joint_L_1", + "rotation": { + "x": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 80.89250946044922 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 33.83485794067383 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -178.054443359375 + } + }, + "scaling": { + "x": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1.0000001192092896 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.9999995231628418 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.9999994039535522 + } + }, + "translation": { + "x": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.06761901825666428 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.004460844676941633 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.07226424664258957 + } + }, + "visibility": true + }, + "typeName": "Node" + }, + { + "properties": { + "animationIndex": 0, + "objectID": "34976505-5ef6-4d64-9440-c8b18842d331", + "objectName": "animation_0.ch7", + "samplerIndex": 7, + "uri": "../../resources/meshes/RiggedFigure/RiggedFigure.gltf" + }, + "typeName": "AnimationChannel" + }, + { + "properties": { + "animationIndex": 0, + "objectID": "366327d0-9886-4ca0-bced-4eb3c184954f", + "objectName": "animation_0.ch10", + "samplerIndex": 10, + "uri": "../../resources/meshes/RiggedFigure/RiggedFigure.gltf" + }, + "typeName": "AnimationChannel" + }, + { + "properties": { + "animationIndex": 0, + "objectID": "3c20fe28-56f9-4ba1-a396-62a63ccd67ac", + "objectName": "animation_0.ch43", + "samplerIndex": 43, + "uri": "../../resources/meshes/RiggedFigure/RiggedFigure.gltf" + }, + "typeName": "AnimationChannel" + }, + { + "properties": { + "animationIndex": 0, + "objectID": "3f6dff92-3e43-49e0-b7f1-f0ae33647c87", + "objectName": "animation_0.ch51", + "samplerIndex": 51, + "uri": "../../resources/meshes/RiggedFigure/RiggedFigure.gltf" + }, + "typeName": "AnimationChannel" + }, + { + "properties": { + "animationIndex": 0, + "objectID": "4363a956-3fe3-41a1-b505-66ebb4919123", + "objectName": "animation_0.ch13", + "samplerIndex": 13, + "uri": "../../resources/meshes/RiggedFigure/RiggedFigure.gltf" + }, + "typeName": "AnimationChannel" + }, + { + "properties": { + "animationIndex": 0, + "objectID": "46f620d8-f2d8-4acd-a4ad-b9dfdf6a90f2", + "objectName": "animation_0.ch34", + "samplerIndex": 34, + "uri": "../../resources/meshes/RiggedFigure/RiggedFigure.gltf" + }, + "typeName": "AnimationChannel" + }, + { + "properties": { + "bakeMeshes": false, + "materialNames": { + "properties": [ + { + "typeName": "String", + "value": "material" + } + ] + }, + "meshIndex": 0, + "objectID": "482ad099-9f52-4d0c-81a1-0c68ebd61c8e", + "objectName": "Proxy", + "uri": "../../resources/meshes/RiggedFigure/RiggedFigure.gltf" + }, + "typeName": "Mesh" + }, + { + "properties": { + "animationIndex": 0, + "objectID": "4b2fa89c-2188-426b-b066-04fa2e3c75e6", + "objectName": "animation_0.ch27", + "samplerIndex": 27, + "uri": "../../resources/meshes/RiggedFigure/RiggedFigure.gltf" + }, + "typeName": "AnimationChannel" + }, + { + "properties": { + "children": { + "properties": [ + { + "typeName": "Ref", + "value": "d9ac6a33-768f-41bd-a322-bd28529410e2" + } + ] + }, + "enabled": true, + "objectID": "4f4ef474-b5a4-43e4-a0c3-545b6776f36d", + "objectName": "arm_joint_L_1", + "rotation": { + "x": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 165.3516845703125 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -39.21699142456055 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -93.68113708496094 + } + }, + "scaling": { + "x": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1.0000003576278687 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1.000000238418579 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1.0000001192092896 + } + }, + "translation": { + "x": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.08799995481967926 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.00019979049102403224 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.0009799840627238154 + } + }, + "visibility": true + }, + "typeName": "Node" + }, + { + "properties": { + "animationIndex": 0, + "objectID": "57f29d87-930b-47ca-bd98-eb26e582b1ba", + "objectName": "animation_0.ch11", + "samplerIndex": 11, + "uri": "../../resources/meshes/RiggedFigure/RiggedFigure.gltf" + }, + "typeName": "AnimationChannel" + }, + { + "properties": { + "animationIndex": 0, + "objectID": "5965eb9a-f7c5-4bfa-80fe-4e571a841a35", + "objectName": "animation_0.ch25", + "samplerIndex": 25, + "uri": "../../resources/meshes/RiggedFigure/RiggedFigure.gltf" + }, + "typeName": "AnimationChannel" + }, + { + "properties": { + "animationIndex": 0, + "objectID": "5a243570-2ca0-4527-9f3e-5fd36274f594", + "objectName": "animation_0.ch45", + "samplerIndex": 45, + "uri": "../../resources/meshes/RiggedFigure/RiggedFigure.gltf" + }, + "typeName": "AnimationChannel" + }, + { + "properties": { + "animationIndex": 0, + "objectID": "5b802cc8-a8c7-428b-bbaa-5f0b9ed9b884", + "objectName": "animation_0.ch41", + "samplerIndex": 41, + "uri": "../../resources/meshes/RiggedFigure/RiggedFigure.gltf" + }, + "typeName": "AnimationChannel" + }, + { + "properties": { + "animationIndex": 0, + "objectID": "5de68265-83ee-4321-91ca-6a0072f47c88", + "objectName": "animation_0.ch6", + "samplerIndex": 6, + "uri": "../../resources/meshes/RiggedFigure/RiggedFigure.gltf" + }, + "typeName": "AnimationChannel" + }, + { + "properties": { + "animationIndex": 0, + "objectID": "64625b4d-c071-44ce-a2a6-4ba2a28b756e", + "objectName": "animation_0.ch1", + "samplerIndex": 1, + "uri": "../../resources/meshes/RiggedFigure/RiggedFigure.gltf" + }, + "typeName": "AnimationChannel" + }, + { + "properties": { + "animationIndex": 0, + "objectID": "66575624-2729-4699-bb4e-c817f03e1062", + "objectName": "animation_0.ch19", + "samplerIndex": 19, + "uri": "../../resources/meshes/RiggedFigure/RiggedFigure.gltf" + }, + "typeName": "AnimationChannel" + }, + { + "properties": { + "enabled": true, + "objectID": "67a5ce33-34d3-4613-b707-78c0321ee13d", + "objectName": "leg_joint_L_5", + "rotation": { + "x": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 37.43885040283203 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.13361911475658417 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 171.625244140625 + } + }, + "scaling": { + "x": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1.000000238418579 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1.0000011920928955 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1.0000007152557373 + } + }, + "translation": { + "x": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.002346455818042159 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.06617335975170135 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.02785670943558216 + } + }, + "visibility": true + }, + "typeName": "Node" + }, + { + "properties": { + "animationIndex": 0, + "objectID": "6a82e8c0-4f36-4a9c-914b-d39e971e99ca", + "objectName": "animation_0.ch48", + "samplerIndex": 48, + "uri": "../../resources/meshes/RiggedFigure/RiggedFigure.gltf" + }, + "typeName": "AnimationChannel" + }, + { + "properties": { + "animationIndex": 0, + "objectID": "6af703b9-f545-4886-b5f3-e6d71dfb5ff3", + "objectName": "animation_0.ch38", + "samplerIndex": 38, + "uri": "../../resources/meshes/RiggedFigure/RiggedFigure.gltf" + }, + "typeName": "AnimationChannel" + }, + { + "properties": { + "children": { + "properties": [ + { + "typeName": "Ref", + "value": "d987aa18-6ef1-4365-8607-1e1739bf49b4" + } + ] + }, + "enabled": true, + "objectID": "71542623-c677-4254-9456-2712ff4c3a08", + "objectName": "torso_joint_2", + "rotation": { + "x": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 95.13574981689453 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.02990707755088806 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.3327538073062897 + } + }, + "scaling": { + "x": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1.0000001192092896 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.9999994039535522 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.999999463558197 + } + }, + "translation": { + "x": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.0009999829344451427 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -1.8626499453944234e-08 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.17149099707603455 + } + }, + "visibility": true + }, + "typeName": "Node" + }, + { + "properties": { + "animationIndex": 0, + "objectID": "732a249e-c595-4a92-8b5c-68e5edd5b596", + "objectName": "animation_0.ch49", + "samplerIndex": 49, + "uri": "../../resources/meshes/RiggedFigure/RiggedFigure.gltf" + }, + "typeName": "AnimationChannel" + }, + { + "properties": { + "animationIndex": 0, + "objectID": "75e62181-3730-4d2d-abeb-787c1ab8f6b2", + "objectName": "animation_0.ch39", + "samplerIndex": 39, + "uri": "../../resources/meshes/RiggedFigure/RiggedFigure.gltf" + }, + "typeName": "AnimationChannel" + }, + { + "properties": { + "animationIndex": 0, + "objectID": "80083a6b-ac6d-4861-97bf-176b5abb49d9", + "objectName": "animation_0.ch20", + "samplerIndex": 20, + "uri": "../../resources/meshes/RiggedFigure/RiggedFigure.gltf" + }, + "typeName": "AnimationChannel" + }, + { + "properties": { + "animationIndex": 0, + "objectID": "81abac13-fab0-4445-bf43-70871cc14631", + "objectName": "animation_0.ch30", + "samplerIndex": 30, + "uri": "../../resources/meshes/RiggedFigure/RiggedFigure.gltf" + }, + "typeName": "AnimationChannel" + }, + { + "properties": { + "camera": "b0e63b9d-f290-4628-9376-9f0f6629280b", + "clearColor": { + "w": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + }, + "x": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + } + }, + "enableClearColor": true, + "enableClearDepth": true, + "enableClearStencil": true, + "enabled": true, + "layer0": "b5598e18-2dd0-467d-b91b-b38bc9c87639", + "layer1": null, + "layer2": null, + "layer3": null, + "layer4": null, + "layer5": null, + "layer6": null, + "layer7": null, + "objectID": "83f08573-98d1-47b1-8cf9-11a638ac567a", + "objectName": "MainRenderPass", + "renderOnce": false, + "renderOrder": 1, + "target": null + }, + "typeName": "RenderPass" + }, + { + "properties": { + "animationIndex": 0, + "objectID": "84fbcc96-76f6-457a-8f84-4ad96a8733be", + "objectName": "animation_0.ch46", + "samplerIndex": 46, + "uri": "../../resources/meshes/RiggedFigure/RiggedFigure.gltf" + }, + "typeName": "AnimationChannel" + }, + { + "properties": { + "children": { + "properties": [ + { + "typeName": "Ref", + "value": "c805e73b-3273-4b51-99b5-253ef1917ed0" + } + ] + }, + "enabled": true, + "objectID": "863c1b12-9449-43a4-90cc-54ccb81aec38", + "objectName": "leg_joint_L_2", + "rotation": { + "x": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -29.855300903320312 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 32.34698486328125 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 14.617319107055664 + } + }, + "scaling": { + "x": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1.000000238418579 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1.0000005960464478 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1.000001072883606 + } + }, + "translation": { + "x": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.26611220836639404 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1.4901200273698123e-08 + } + }, + "visibility": true + }, + "typeName": "Node" + }, + { + "properties": { + "animationIndex": 0, + "objectID": "8df1f2de-35f1-4e93-bde7-b583ac86cd70", + "objectName": "animation_0.ch35", + "samplerIndex": 35, + "uri": "../../resources/meshes/RiggedFigure/RiggedFigure.gltf" + }, + "typeName": "AnimationChannel" + }, + { + "properties": { + "animationIndex": 0, + "objectID": "8dfb49d3-1515-4e76-921c-35128a13b85e", + "objectName": "animation_0.ch21", + "samplerIndex": 21, + "uri": "../../resources/meshes/RiggedFigure/RiggedFigure.gltf" + }, + "typeName": "AnimationChannel" + }, + { + "properties": { + "animationIndex": 0, + "objectID": "9070a31e-5855-4cfe-b05b-bf3bafca4452", + "objectName": "animation_0.ch29", + "samplerIndex": 29, + "uri": "../../resources/meshes/RiggedFigure/RiggedFigure.gltf" + }, + "typeName": "AnimationChannel" + }, + { + "properties": { + "animationIndex": 0, + "objectID": "90da53eb-a6f0-40bb-9981-bf767da85458", + "objectName": "animation_0.ch9", + "samplerIndex": 9, + "uri": "../../resources/meshes/RiggedFigure/RiggedFigure.gltf" + }, + "typeName": "AnimationChannel" + }, + { + "properties": { + "animationIndex": 0, + "objectID": "90e83bd2-4e9a-4e17-a2b4-ae1354ddc312", + "objectName": "animation_0.ch8", + "samplerIndex": 8, + "uri": "../../resources/meshes/RiggedFigure/RiggedFigure.gltf" + }, + "typeName": "AnimationChannel" + }, + { + "properties": { + "children": { + "properties": [ + { + "typeName": "Ref", + "value": "2e2a5809-a71d-4263-b8b8-ac8c31ec6648" + } + ] + }, + "enabled": true, + "objectID": "9348d441-2e34-4e53-8d72-11780148868a", + "objectName": "leg_joint_R_1", + "rotation": { + "x": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 81.75247955322266 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -5.527599811553955 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 177.71188354492188 + } + }, + "scaling": { + "x": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.9999995827674866 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.999999463558197 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.9999994039535522 + } + }, + "translation": { + "x": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.06845720112323761 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.0044607738964259624 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.07147085666656494 + } + }, + "visibility": true + }, + "typeName": "Node" + }, + { + "properties": { + "children": { + "properties": [ + { + "typeName": "Ref", + "value": "004dee79-2d9b-4e9e-9303-4ac2189a9b64" + } + ] + }, + "enabled": true, + "objectID": "973f1301-0af7-4b03-b0d7-390752ef27d7", + "objectName": "arm_joint_R_2", + "rotation": { + "x": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 151.47222900390625 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -30.258010864257812 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 143.99313354492188 + } + }, + "scaling": { + "x": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.9999998211860657 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.999999463558197 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.9999998211860657 + } + }, + "translation": { + "x": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -7.4505797087454084e-09 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.24452559649944305 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + } + }, + "visibility": true + }, + "typeName": "Node" + }, + { + "properties": { + "animationIndex": 0, + "objectID": "98d3511c-128a-45df-9fe4-f726fc2c82a3", + "objectName": "animation_0.ch37", + "samplerIndex": 37, + "uri": "../../resources/meshes/RiggedFigure/RiggedFigure.gltf" + }, + "typeName": "AnimationChannel" + }, + { + "properties": { + "children": { + "properties": [ + { + "typeName": "Ref", + "value": "c4e73a74-02b1-4d9b-a3a5-3d13fd91e1ef" + } + ] + }, + "enabled": true, + "objectID": "9bcad876-8074-4a5d-a9be-fae668a94868", + "objectName": "leg_joint_R_3", + "rotation": { + "x": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -115.9413833618164 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.46587398648262024 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 4.62437105178833 + } + }, + "scaling": { + "x": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.9999998211860657 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1.000000238418579 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.9999992847442627 + } + }, + "translation": { + "x": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 7.4505797087454084e-09 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.27582401037216187 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -7.4505797087454084e-09 + } + }, + "visibility": true + }, + "typeName": "Node" + }, + { + "properties": { + "animationIndex": 0, + "objectID": "9d6aafb5-a25e-4cba-8f0d-f7c044a6ca0d", + "objectName": "animation_0.ch36", + "samplerIndex": 36, + "uri": "../../resources/meshes/RiggedFigure/RiggedFigure.gltf" + }, + "typeName": "AnimationChannel" + }, + { + "properties": { + "children": { + "properties": [ + { + "typeName": "Ref", + "value": "ea0b78f3-8567-49c0-b4ca-b0f13efb547b" + } + ] + }, + "enabled": true, + "objectID": "a1641f65-a42e-4fc3-866a-8b571e4ef1c5", + "objectName": "neck_joint_1", + "rotation": { + "x": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 83.21951293945312 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -1.2092723489232071e-09 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1.967967344640442e-09 + } + }, + "scaling": { + "x": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1.000000238418579 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1.000000238418579 + } + }, + "translation": { + "x": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -8.881779961836516e-15 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -3.576280960260192e-08 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.05255941301584244 + } + }, + "visibility": true + }, + "typeName": "Node" + }, + { + "properties": { + "animationChannels": { + "order": [ + "Channel 0", + "Channel 1", + "Channel 2", + "Channel 3", + "Channel 4", + "Channel 5", + "Channel 6", + "Channel 7", + "Channel 8", + "Channel 9", + "Channel 10", + "Channel 11", + "Channel 12", + "Channel 13", + "Channel 14", + "Channel 15", + "Channel 16", + "Channel 17", + "Channel 18", + "Channel 19", + "Channel 20", + "Channel 21", + "Channel 22", + "Channel 23", + "Channel 24", + "Channel 25", + "Channel 26", + "Channel 27", + "Channel 28", + "Channel 29", + "Channel 30", + "Channel 31", + "Channel 32", + "Channel 33", + "Channel 34", + "Channel 35", + "Channel 36", + "Channel 37", + "Channel 38", + "Channel 39", + "Channel 40", + "Channel 41", + "Channel 42", + "Channel 43", + "Channel 44", + "Channel 45", + "Channel 46", + "Channel 47", + "Channel 48", + "Channel 49", + "Channel 50", + "Channel 51", + "Channel 52", + "Channel 53", + "Channel 54", + "Channel 55", + "Channel 56" + ], + "properties": { + "Channel 0": { + "typeName": "AnimationChannel", + "value": "e8bb9585-fafe-4ae4-884d-e16d59f85570" + }, + "Channel 1": { + "typeName": "AnimationChannel", + "value": "64625b4d-c071-44ce-a2a6-4ba2a28b756e" + }, + "Channel 10": { + "typeName": "AnimationChannel", + "value": "366327d0-9886-4ca0-bced-4eb3c184954f" + }, + "Channel 11": { + "typeName": "AnimationChannel", + "value": "57f29d87-930b-47ca-bd98-eb26e582b1ba" + }, + "Channel 12": { + "typeName": "AnimationChannel", + "value": "136b80f6-c3ef-4397-9a70-954b89750084" + }, + "Channel 13": { + "typeName": "AnimationChannel", + "value": "4363a956-3fe3-41a1-b505-66ebb4919123" + }, + "Channel 14": { + "typeName": "AnimationChannel", + "value": "e7c9fdc2-2904-404f-82e1-3bedfb3185d8" + }, + "Channel 15": { + "typeName": "AnimationChannel", + "value": "dd2a5107-a91a-4977-bea0-95080b9193dc" + }, + "Channel 16": { + "typeName": "AnimationChannel", + "value": "b02811e5-d237-4655-98c7-3500b006c017" + }, + "Channel 17": { + "typeName": "AnimationChannel", + "value": "2c89406c-e862-4978-8df4-d4f094c832e7" + }, + "Channel 18": { + "typeName": "AnimationChannel", + "value": "224390c4-7b3b-407f-aaa8-2e231c77433e" + }, + "Channel 19": { + "typeName": "AnimationChannel", + "value": "66575624-2729-4699-bb4e-c817f03e1062" + }, + "Channel 2": { + "typeName": "AnimationChannel", + "value": "e3eac9b2-08b7-4857-889c-5b426b2c7278" + }, + "Channel 20": { + "typeName": "AnimationChannel", + "value": "80083a6b-ac6d-4861-97bf-176b5abb49d9" + }, + "Channel 21": { + "typeName": "AnimationChannel", + "value": "8dfb49d3-1515-4e76-921c-35128a13b85e" + }, + "Channel 22": { + "typeName": "AnimationChannel", + "value": "a8625235-1d1f-4ec4-9523-15709311933b" + }, + "Channel 23": { + "typeName": "AnimationChannel", + "value": "2dc08481-5e7b-4aee-966e-b992698730ab" + }, + "Channel 24": { + "typeName": "AnimationChannel", + "value": "f87251c0-8759-49bc-9861-878a87b758c3" + }, + "Channel 25": { + "typeName": "AnimationChannel", + "value": "5965eb9a-f7c5-4bfa-80fe-4e571a841a35" + }, + "Channel 26": { + "typeName": "AnimationChannel", + "value": "0e0afa74-42db-431d-93fe-c9c30c8a6ee4" + }, + "Channel 27": { + "typeName": "AnimationChannel", + "value": "4b2fa89c-2188-426b-b066-04fa2e3c75e6" + }, + "Channel 28": { + "typeName": "AnimationChannel", + "value": "19aca316-b8f0-45b1-935d-e131fcd15259" + }, + "Channel 29": { + "typeName": "AnimationChannel", + "value": "9070a31e-5855-4cfe-b05b-bf3bafca4452" + }, + "Channel 3": { + "typeName": "AnimationChannel", + "value": "e9f1f971-6db2-4db5-b604-78d2f14bf895" + }, + "Channel 30": { + "typeName": "AnimationChannel", + "value": "81abac13-fab0-4445-bf43-70871cc14631" + }, + "Channel 31": { + "typeName": "AnimationChannel", + "value": "ec751aee-4f3e-4a65-a5db-79a0686e263c" + }, + "Channel 32": { + "typeName": "AnimationChannel", + "value": "c64b8567-e09f-4622-85e1-1b07e477933e" + }, + "Channel 33": { + "typeName": "AnimationChannel", + "value": "26d4cf24-2b52-4e63-9d6b-85a33ea0162c" + }, + "Channel 34": { + "typeName": "AnimationChannel", + "value": "46f620d8-f2d8-4acd-a4ad-b9dfdf6a90f2" + }, + "Channel 35": { + "typeName": "AnimationChannel", + "value": "8df1f2de-35f1-4e93-bde7-b583ac86cd70" + }, + "Channel 36": { + "typeName": "AnimationChannel", + "value": "9d6aafb5-a25e-4cba-8f0d-f7c044a6ca0d" + }, + "Channel 37": { + "typeName": "AnimationChannel", + "value": "98d3511c-128a-45df-9fe4-f726fc2c82a3" + }, + "Channel 38": { + "typeName": "AnimationChannel", + "value": "6af703b9-f545-4886-b5f3-e6d71dfb5ff3" + }, + "Channel 39": { + "typeName": "AnimationChannel", + "value": "75e62181-3730-4d2d-abeb-787c1ab8f6b2" + }, + "Channel 4": { + "typeName": "AnimationChannel", + "value": "0b1eb23f-337d-47ea-9977-624880e14630" + }, + "Channel 40": { + "typeName": "AnimationChannel", + "value": "bb759bdd-74a2-4f04-998e-2a9d4d8bd37e" + }, + "Channel 41": { + "typeName": "AnimationChannel", + "value": "5b802cc8-a8c7-428b-bbaa-5f0b9ed9b884" + }, + "Channel 42": { + "typeName": "AnimationChannel", + "value": "ecc0fc5c-789e-4729-94a7-94ac1c5d024c" + }, + "Channel 43": { + "typeName": "AnimationChannel", + "value": "3c20fe28-56f9-4ba1-a396-62a63ccd67ac" + }, + "Channel 44": { + "typeName": "AnimationChannel", + "value": "0591450d-c617-4224-af80-9a1a81cd943f" + }, + "Channel 45": { + "typeName": "AnimationChannel", + "value": "5a243570-2ca0-4527-9f3e-5fd36274f594" + }, + "Channel 46": { + "typeName": "AnimationChannel", + "value": "84fbcc96-76f6-457a-8f84-4ad96a8733be" + }, + "Channel 47": { + "typeName": "AnimationChannel", + "value": "06a5713b-d6ee-4003-9d6c-286eaf62aef3" + }, + "Channel 48": { + "typeName": "AnimationChannel", + "value": "6a82e8c0-4f36-4a9c-914b-d39e971e99ca" + }, + "Channel 49": { + "typeName": "AnimationChannel", + "value": "732a249e-c595-4a92-8b5c-68e5edd5b596" + }, + "Channel 5": { + "typeName": "AnimationChannel", + "value": "fd16e01f-0123-4210-a2cd-25db76ac8083" + }, + "Channel 50": { + "typeName": "AnimationChannel", + "value": "f8411eb6-7ed7-4bba-8954-0c23fee17fea" + }, + "Channel 51": { + "typeName": "AnimationChannel", + "value": "3f6dff92-3e43-49e0-b7f1-f0ae33647c87" + }, + "Channel 52": { + "typeName": "AnimationChannel", + "value": "d75ffa8f-ca4b-45ac-b9ba-59f03bbbbb5d" + }, + "Channel 53": { + "typeName": "AnimationChannel", + "value": "2871f080-35b2-46e3-96ae-1365a27d39f0" + }, + "Channel 54": { + "typeName": "AnimationChannel", + "value": "ff8b2d34-e6ee-440d-81cf-fd7ed1e612c5" + }, + "Channel 55": { + "typeName": "AnimationChannel", + "value": "08d49812-025e-40c7-b04c-f8862d56d880" + }, + "Channel 56": { + "typeName": "AnimationChannel", + "value": "283d4030-434b-4ec2-bac7-4ed16ec51042" + }, + "Channel 6": { + "typeName": "AnimationChannel", + "value": "5de68265-83ee-4321-91ca-6a0072f47c88" + }, + "Channel 7": { + "typeName": "AnimationChannel", + "value": "34976505-5ef6-4d64-9440-c8b18842d331" + }, + "Channel 8": { + "typeName": "AnimationChannel", + "value": "90e83bd2-4e9a-4e17-a2b4-ae1354ddc312" + }, + "Channel 9": { + "typeName": "AnimationChannel", + "value": "90da53eb-a6f0-40bb-9981-bf767da85458" + } + } + }, + "objectID": "a567cb10-a83e-4f13-9c0a-8127fbcaf169", + "objectName": "animation_0", + "outputs": { + "order": [ + "Ch0.animation_0.ch0", + "Ch1.animation_0.ch1", + "Ch2.animation_0.ch2", + "Ch3.animation_0.ch3", + "Ch4.animation_0.ch4", + "Ch5.animation_0.ch5", + "Ch6.animation_0.ch6", + "Ch7.animation_0.ch7", + "Ch8.animation_0.ch8", + "Ch9.animation_0.ch9", + "Ch10.animation_0.ch10", + "Ch11.animation_0.ch11", + "Ch12.animation_0.ch12", + "Ch13.animation_0.ch13", + "Ch14.animation_0.ch14", + "Ch15.animation_0.ch15", + "Ch16.animation_0.ch16", + "Ch17.animation_0.ch17", + "Ch18.animation_0.ch18", + "Ch19.animation_0.ch19", + "Ch20.animation_0.ch20", + "Ch21.animation_0.ch21", + "Ch22.animation_0.ch22", + "Ch23.animation_0.ch23", + "Ch24.animation_0.ch24", + "Ch25.animation_0.ch25", + "Ch26.animation_0.ch26", + "Ch27.animation_0.ch27", + "Ch28.animation_0.ch28", + "Ch29.animation_0.ch29", + "Ch30.animation_0.ch30", + "Ch31.animation_0.ch31", + "Ch32.animation_0.ch32", + "Ch33.animation_0.ch33", + "Ch34.animation_0.ch34", + "Ch35.animation_0.ch35", + "Ch36.animation_0.ch36", + "Ch37.animation_0.ch37", + "Ch38.animation_0.ch38", + "Ch39.animation_0.ch39", + "Ch40.animation_0.ch40", + "Ch41.animation_0.ch41", + "Ch42.animation_0.ch42", + "Ch43.animation_0.ch43", + "Ch44.animation_0.ch44", + "Ch45.animation_0.ch45", + "Ch46.animation_0.ch46", + "Ch47.animation_0.ch47", + "Ch48.animation_0.ch48", + "Ch49.animation_0.ch49", + "Ch50.animation_0.ch50", + "Ch51.animation_0.ch51", + "Ch52.animation_0.ch52", + "Ch53.animation_0.ch53", + "Ch54.animation_0.ch54", + "Ch55.animation_0.ch55", + "Ch56.animation_0.ch56" + ], + "properties": { + "Ch0.animation_0.ch0": { + "annotations": [ + { + "properties": { + "engineType": 8 + }, + "typeName": "EngineTypeAnnotation" + }, + { + "typeName": "LinkStartAnnotation" + } + ], + "properties": { + "x": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 4.589660040910104e-10 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -1.1506600117172638e-07 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.6860000491142273 + } + }, + "typeName": "Vec3f::EngineTypeAnnotation::LinkStartAnnotation" + }, + "Ch1.animation_0.ch1": { + "annotations": [ + { + "properties": { + "engineType": 9 + }, + "typeName": "EngineTypeAnnotation" + }, + { + "typeName": "LinkStartAnnotation" + } + ], + "properties": { + "w": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.9992761611938477 + }, + "x": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.037929926067590714 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.0029135497752577066 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.00011340530909365043 + } + }, + "typeName": "Vec4f::EngineTypeAnnotation::LinkStartAnnotation" + }, + "Ch10.animation_0.ch10": { + "annotations": [ + { + "properties": { + "engineType": 9 + }, + "typeName": "EngineTypeAnnotation" + }, + { + "typeName": "LinkStartAnnotation" + } + ], + "properties": { + "w": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.7476850748062134 + }, + "x": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.6640534996986389 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1.9294531250491076e-11 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -5.832874547945233e-12 + } + }, + "typeName": "Vec4f::EngineTypeAnnotation::LinkStartAnnotation" + }, + "Ch11.animation_0.ch11": { + "annotations": [ + { + "properties": { + "engineType": 8 + }, + "typeName": "EngineTypeAnnotation" + }, + { + "typeName": "LinkStartAnnotation" + } + ], + "properties": { + "x": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1.000000238418579 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1.000000238418579 + } + }, + "typeName": "Vec3f::EngineTypeAnnotation::LinkStartAnnotation" + }, + "Ch12.animation_0.ch12": { + "annotations": [ + { + "properties": { + "engineType": 8 + }, + "typeName": "EngineTypeAnnotation" + }, + { + "typeName": "LinkStartAnnotation" + } + ], + "properties": { + "x": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -5.329069671167804e-15 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.06650590896606445 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 9.313230187046884e-10 + } + }, + "typeName": "Vec3f::EngineTypeAnnotation::LinkStartAnnotation" + }, + "Ch13.animation_0.ch13": { + "annotations": [ + { + "properties": { + "engineType": 9 + }, + "typeName": "EngineTypeAnnotation" + }, + { + "typeName": "LinkStartAnnotation" + } + ], + "properties": { + "w": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -1.1919865983145428e-07 + }, + "x": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 3.016988880943927e-10 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.9999837875366211 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.0057000345550477505 + } + }, + "typeName": "Vec4f::EngineTypeAnnotation::LinkStartAnnotation" + }, + "Ch14.animation_0.ch14": { + "annotations": [ + { + "properties": { + "engineType": 8 + }, + "typeName": "EngineTypeAnnotation" + }, + { + "typeName": "LinkStartAnnotation" + } + ], + "properties": { + "x": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.9999995827674866 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.9999995827674866 + } + }, + "typeName": "Vec3f::EngineTypeAnnotation::LinkStartAnnotation" + }, + "Ch15.animation_0.ch15": { + "annotations": [ + { + "properties": { + "engineType": 8 + }, + "typeName": "EngineTypeAnnotation" + }, + { + "typeName": "LinkStartAnnotation" + } + ], + "properties": { + "x": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.08799995481967926 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.00019979049102403224 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.0009799840627238154 + } + }, + "typeName": "Vec3f::EngineTypeAnnotation::LinkStartAnnotation" + }, + "Ch16.animation_0.ch16": { + "annotations": [ + { + "properties": { + "engineType": 9 + }, + "typeName": "EngineTypeAnnotation" + }, + { + "typeName": "LinkStartAnnotation" + } + ], + "properties": { + "w": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.16065561771392822 + }, + "x": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.6703123450279236 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.6522794961929321 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.3152816891670227 + } + }, + "typeName": "Vec4f::EngineTypeAnnotation::LinkStartAnnotation" + }, + "Ch17.animation_0.ch17": { + "annotations": [ + { + "properties": { + "engineType": 8 + }, + "typeName": "EngineTypeAnnotation" + }, + { + "typeName": "LinkStartAnnotation" + } + ], + "properties": { + "x": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1.0000003576278687 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1.000000238418579 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1.0000001192092896 + } + }, + "typeName": "Vec3f::EngineTypeAnnotation::LinkStartAnnotation" + }, + "Ch18.animation_0.ch18": { + "annotations": [ + { + "properties": { + "engineType": 8 + }, + "typeName": "EngineTypeAnnotation" + }, + { + "typeName": "LinkStartAnnotation" + } + ], + "properties": { + "x": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -2.328309989252375e-09 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.24452580511569977 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + } + }, + "typeName": "Vec3f::EngineTypeAnnotation::LinkStartAnnotation" + }, + "Ch19.animation_0.ch19": { + "annotations": [ + { + "properties": { + "engineType": 9 + }, + "typeName": "EngineTypeAnnotation" + }, + { + "typeName": "LinkStartAnnotation" + } + ], + "properties": { + "w": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.9521316885948181 + }, + "x": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.0023999919649213552 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.13981160521507263 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.27183130383491516 + } + }, + "typeName": "Vec4f::EngineTypeAnnotation::LinkStartAnnotation" + }, + "Ch2.animation_0.ch2": { + "annotations": [ + { + "properties": { + "engineType": 8 + }, + "typeName": "EngineTypeAnnotation" + }, + { + "typeName": "LinkStartAnnotation" + } + ], + "properties": { + "x": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1.0000001192092896 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1.000000238418579 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1.0000004768371582 + } + }, + "typeName": "Vec3f::EngineTypeAnnotation::LinkStartAnnotation" + }, + "Ch20.animation_0.ch20": { + "annotations": [ + { + "properties": { + "engineType": 8 + }, + "typeName": "EngineTypeAnnotation" + }, + { + "typeName": "LinkStartAnnotation" + } + ], + "properties": { + "x": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.9999995231628418 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.9999997615814209 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1.0000003576278687 + } + }, + "typeName": "Vec3f::EngineTypeAnnotation::LinkStartAnnotation" + }, + "Ch21.animation_0.ch21": { + "annotations": [ + { + "properties": { + "engineType": 8 + }, + "typeName": "EngineTypeAnnotation" + }, + { + "typeName": "LinkStartAnnotation" + } + ], + "properties": { + "x": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.18551670014858246 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 5.96045985901128e-08 + } + }, + "typeName": "Vec3f::EngineTypeAnnotation::LinkStartAnnotation" + }, + "Ch22.animation_0.ch22": { + "annotations": [ + { + "properties": { + "engineType": 9 + }, + "typeName": "EngineTypeAnnotation" + }, + { + "typeName": "LinkStartAnnotation" + } + ], + "properties": { + "w": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.996410608291626 + }, + "x": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.057290688157081604 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.028227226808667183 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.055560123175382614 + } + }, + "typeName": "Vec4f::EngineTypeAnnotation::LinkStartAnnotation" + }, + "Ch23.animation_0.ch23": { + "annotations": [ + { + "properties": { + "engineType": 8 + }, + "typeName": "EngineTypeAnnotation" + }, + { + "typeName": "LinkStartAnnotation" + } + ], + "properties": { + "x": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1.0000001192092896 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1.0000001192092896 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.9999995827674866 + } + }, + "typeName": "Vec3f::EngineTypeAnnotation::LinkStartAnnotation" + }, + "Ch24.animation_0.ch24": { + "annotations": [ + { + "properties": { + "engineType": 8 + }, + "typeName": "EngineTypeAnnotation" + }, + { + "typeName": "LinkStartAnnotation" + } + ], + "properties": { + "x": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.08800001442432404 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.0001997949875658378 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.00098002003505826 + } + }, + "typeName": "Vec3f::EngineTypeAnnotation::LinkStartAnnotation" + }, + "Ch25.animation_0.ch25": { + "annotations": [ + { + "properties": { + "engineType": 9 + }, + "typeName": "EngineTypeAnnotation" + }, + { + "typeName": "LinkStartAnnotation" + } + ], + "properties": { + "w": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.677500307559967 + }, + "x": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.3472990095615387 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.13099141418933868 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.634994387626648 + } + }, + "typeName": "Vec4f::EngineTypeAnnotation::LinkStartAnnotation" + }, + "Ch26.animation_0.ch26": { + "annotations": [ + { + "properties": { + "engineType": 8 + }, + "typeName": "EngineTypeAnnotation" + }, + { + "typeName": "LinkStartAnnotation" + } + ], + "properties": { + "x": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1.0000001192092896 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.9999995827674866 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.9999998807907104 + } + }, + "typeName": "Vec3f::EngineTypeAnnotation::LinkStartAnnotation" + }, + "Ch27.animation_0.ch27": { + "annotations": [ + { + "properties": { + "engineType": 8 + }, + "typeName": "EngineTypeAnnotation" + }, + { + "typeName": "LinkStartAnnotation" + } + ], + "properties": { + "x": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -7.4505797087454084e-09 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.24452559649944305 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + } + }, + "typeName": "Vec3f::EngineTypeAnnotation::LinkStartAnnotation" + }, + "Ch28.animation_0.ch28": { + "annotations": [ + { + "properties": { + "engineType": 9 + }, + "typeName": "EngineTypeAnnotation" + }, + { + "typeName": "LinkStartAnnotation" + } + ], + "properties": { + "w": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.31407514214515686 + }, + "x": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.22800646722316742 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.9096477031707764 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.14802362024784088 + } + }, + "typeName": "Vec4f::EngineTypeAnnotation::LinkStartAnnotation" + }, + "Ch29.animation_0.ch29": { + "annotations": [ + { + "properties": { + "engineType": 8 + }, + "typeName": "EngineTypeAnnotation" + }, + { + "typeName": "LinkStartAnnotation" + } + ], + "properties": { + "x": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.9999998211860657 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.999999463558197 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.9999998211860657 + } + }, + "typeName": "Vec3f::EngineTypeAnnotation::LinkStartAnnotation" + }, + "Ch3.animation_0.ch3": { + "annotations": [ + { + "properties": { + "engineType": 8 + }, + "typeName": "EngineTypeAnnotation" + }, + { + "typeName": "LinkStartAnnotation" + } + ], + "properties": { + "x": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.0009999829344451427 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -1.8626499453944234e-08 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.17149099707603455 + } + }, + "typeName": "Vec3f::EngineTypeAnnotation::LinkStartAnnotation" + }, + "Ch30.animation_0.ch30": { + "annotations": [ + { + "properties": { + "engineType": 8 + }, + "typeName": "EngineTypeAnnotation" + }, + { + "typeName": "LinkStartAnnotation" + } + ], + "properties": { + "x": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.18551680445671082 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + } + }, + "typeName": "Vec3f::EngineTypeAnnotation::LinkStartAnnotation" + }, + "Ch31.animation_0.ch31": { + "annotations": [ + { + "properties": { + "engineType": 9 + }, + "typeName": "EngineTypeAnnotation" + }, + { + "typeName": "LinkStartAnnotation" + } + ], + "properties": { + "w": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.9865673184394836 + }, + "x": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.07854897528886795 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.1425352394580841 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.014102346263825893 + } + }, + "typeName": "Vec4f::EngineTypeAnnotation::LinkStartAnnotation" + }, + "Ch32.animation_0.ch32": { + "annotations": [ + { + "properties": { + "engineType": 8 + }, + "typeName": "EngineTypeAnnotation" + }, + { + "typeName": "LinkStartAnnotation" + } + ], + "properties": { + "x": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.9999998211860657 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.9999999403953552 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1.0000001192092896 + } + }, + "typeName": "Vec3f::EngineTypeAnnotation::LinkStartAnnotation" + }, + "Ch33.animation_0.ch33": { + "annotations": [ + { + "properties": { + "engineType": 8 + }, + "typeName": "EngineTypeAnnotation" + }, + { + "typeName": "LinkStartAnnotation" + } + ], + "properties": { + "x": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.06761901825666428 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.004460844676941633 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.07226424664258957 + } + }, + "typeName": "Vec3f::EngineTypeAnnotation::LinkStartAnnotation" + }, + "Ch34.animation_0.ch34": { + "annotations": [ + { + "properties": { + "engineType": 9 + }, + "typeName": "EngineTypeAnnotation" + }, + { + "typeName": "LinkStartAnnotation" + } + ], + "properties": { + "w": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.20111103355884552 + }, + "x": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.2108810693025589 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.6243307590484619 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.7247721552848816 + } + }, + "typeName": "Vec4f::EngineTypeAnnotation::LinkStartAnnotation" + }, + "Ch35.animation_0.ch35": { + "annotations": [ + { + "properties": { + "engineType": 8 + }, + "typeName": "EngineTypeAnnotation" + }, + { + "typeName": "LinkStartAnnotation" + } + ], + "properties": { + "x": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1.0000001192092896 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.9999995231628418 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.9999994039535522 + } + }, + "typeName": "Vec3f::EngineTypeAnnotation::LinkStartAnnotation" + }, + "Ch36.animation_0.ch36": { + "annotations": [ + { + "properties": { + "engineType": 8 + }, + "typeName": "EngineTypeAnnotation" + }, + { + "typeName": "LinkStartAnnotation" + } + ], + "properties": { + "x": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.26611220836639404 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1.4901200273698123e-08 + } + }, + "typeName": "Vec3f::EngineTypeAnnotation::LinkStartAnnotation" + }, + "Ch37.animation_0.ch37": { + "annotations": [ + { + "properties": { + "engineType": 9 + }, + "typeName": "EngineTypeAnnotation" + }, + { + "typeName": "LinkStartAnnotation" + } + ], + "properties": { + "w": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.9295984506607056 + }, + "x": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.21115460991859436 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.29843294620513916 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.046885959804058075 + } + }, + "typeName": "Vec4f::EngineTypeAnnotation::LinkStartAnnotation" + }, + "Ch38.animation_0.ch38": { + "annotations": [ + { + "properties": { + "engineType": 8 + }, + "typeName": "EngineTypeAnnotation" + }, + { + "typeName": "LinkStartAnnotation" + } + ], + "properties": { + "x": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1.000000238418579 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1.0000005960464478 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1.000001072883606 + } + }, + "typeName": "Vec3f::EngineTypeAnnotation::LinkStartAnnotation" + }, + "Ch39.animation_0.ch39": { + "annotations": [ + { + "properties": { + "engineType": 8 + }, + "typeName": "EngineTypeAnnotation" + }, + { + "typeName": "LinkStartAnnotation" + } + ], + "properties": { + "x": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.27582401037216187 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -1.8626500342122654e-09 + } + }, + "typeName": "Vec3f::EngineTypeAnnotation::LinkStartAnnotation" + }, + "Ch4.animation_0.ch4": { + "annotations": [ + { + "properties": { + "engineType": 9 + }, + "typeName": "EngineTypeAnnotation" + }, + { + "typeName": "LinkStartAnnotation" + } + ], + "properties": { + "w": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.6747129559516907 + }, + "x": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.738074541091919 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.0019671509508043528 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.0021518839057534933 + } + }, + "typeName": "Vec4f::EngineTypeAnnotation::LinkStartAnnotation" + }, + "Ch40.animation_0.ch40": { + "annotations": [ + { + "properties": { + "engineType": 9 + }, + "typeName": "EngineTypeAnnotation" + }, + { + "typeName": "LinkStartAnnotation" + } + ], + "properties": { + "w": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.5303241014480591 + }, + "x": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.8477683067321777 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.002281583147123456 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.0063387081027030945 + } + }, + "typeName": "Vec4f::EngineTypeAnnotation::LinkStartAnnotation" + }, + "Ch41.animation_0.ch41": { + "annotations": [ + { + "properties": { + "engineType": 8 + }, + "typeName": "EngineTypeAnnotation" + }, + { + "typeName": "LinkStartAnnotation" + } + ], + "properties": { + "x": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.9999992251396179 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.9999995231628418 + } + }, + "typeName": "Vec3f::EngineTypeAnnotation::LinkStartAnnotation" + }, + "Ch42.animation_0.ch42": { + "annotations": [ + { + "properties": { + "engineType": 8 + }, + "typeName": "EngineTypeAnnotation" + }, + { + "typeName": "LinkStartAnnotation" + } + ], + "properties": { + "x": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.002346455818042159 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.06617335975170135 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.02785670943558216 + } + }, + "typeName": "Vec3f::EngineTypeAnnotation::LinkStartAnnotation" + }, + "Ch43.animation_0.ch43": { + "annotations": [ + { + "properties": { + "engineType": 9 + }, + "typeName": "EngineTypeAnnotation" + }, + { + "typeName": "LinkStartAnnotation" + } + ], + "properties": { + "w": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.06878267973661423 + }, + "x": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.0245355311781168 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.31999653577804565 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.9446000456809998 + } + }, + "typeName": "Vec4f::EngineTypeAnnotation::LinkStartAnnotation" + }, + "Ch44.animation_0.ch44": { + "annotations": [ + { + "properties": { + "engineType": 8 + }, + "typeName": "EngineTypeAnnotation" + }, + { + "typeName": "LinkStartAnnotation" + } + ], + "properties": { + "x": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1.000000238418579 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1.0000011920928955 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1.0000007152557373 + } + }, + "typeName": "Vec3f::EngineTypeAnnotation::LinkStartAnnotation" + }, + "Ch45.animation_0.ch45": { + "annotations": [ + { + "properties": { + "engineType": 8 + }, + "typeName": "EngineTypeAnnotation" + }, + { + "typeName": "LinkStartAnnotation" + } + ], + "properties": { + "x": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.06845720112323761 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.0044607738964259624 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.07147085666656494 + } + }, + "typeName": "Vec3f::EngineTypeAnnotation::LinkStartAnnotation" + }, + "Ch46.animation_0.ch46": { + "annotations": [ + { + "properties": { + "engineType": 9 + }, + "typeName": "EngineTypeAnnotation" + }, + { + "typeName": "LinkStartAnnotation" + } + ], + "properties": { + "w": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.046628836542367935 + }, + "x": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.023400768637657166 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.6542637348175049 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.7544649243354797 + } + }, + "typeName": "Vec4f::EngineTypeAnnotation::LinkStartAnnotation" + }, + "Ch47.animation_0.ch47": { + "annotations": [ + { + "properties": { + "engineType": 8 + }, + "typeName": "EngineTypeAnnotation" + }, + { + "typeName": "LinkStartAnnotation" + } + ], + "properties": { + "x": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.9999995827674866 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.999999463558197 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.9999994039535522 + } + }, + "typeName": "Vec3f::EngineTypeAnnotation::LinkStartAnnotation" + }, + "Ch48.animation_0.ch48": { + "annotations": [ + { + "properties": { + "engineType": 8 + }, + "typeName": "EngineTypeAnnotation" + }, + { + "typeName": "LinkStartAnnotation" + } + ], + "properties": { + "x": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 7.4505797087454084e-09 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.26611220836639404 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + } + }, + "typeName": "Vec3f::EngineTypeAnnotation::LinkStartAnnotation" + }, + "Ch49.animation_0.ch49": { + "annotations": [ + { + "properties": { + "engineType": 9 + }, + "typeName": "EngineTypeAnnotation" + }, + { + "typeName": "LinkStartAnnotation" + } + ], + "properties": { + "w": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.9729551672935486 + }, + "x": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.2160615622997284 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.0810801163315773 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.010079946368932724 + } + }, + "typeName": "Vec4f::EngineTypeAnnotation::LinkStartAnnotation" + }, + "Ch5.animation_0.ch5": { + "annotations": [ + { + "properties": { + "engineType": 8 + }, + "typeName": "EngineTypeAnnotation" + }, + { + "typeName": "LinkStartAnnotation" + } + ], + "properties": { + "x": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1.0000001192092896 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.9999994039535522 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.999999463558197 + } + }, + "typeName": "Vec3f::EngineTypeAnnotation::LinkStartAnnotation" + }, + "Ch50.animation_0.ch50": { + "annotations": [ + { + "properties": { + "engineType": 8 + }, + "typeName": "EngineTypeAnnotation" + }, + { + "typeName": "LinkStartAnnotation" + } + ], + "properties": { + "x": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1.0000009536743164 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1.0000003576278687 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1.0000008344650269 + } + }, + "typeName": "Vec3f::EngineTypeAnnotation::LinkStartAnnotation" + }, + "Ch51.animation_0.ch51": { + "annotations": [ + { + "properties": { + "engineType": 8 + }, + "typeName": "EngineTypeAnnotation" + }, + { + "typeName": "LinkStartAnnotation" + } + ], + "properties": { + "x": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 7.4505797087454084e-09 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.27582401037216187 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -7.4505797087454084e-09 + } + }, + "typeName": "Vec3f::EngineTypeAnnotation::LinkStartAnnotation" + }, + "Ch52.animation_0.ch52": { + "annotations": [ + { + "properties": { + "engineType": 9 + }, + "typeName": "EngineTypeAnnotation" + }, + { + "typeName": "LinkStartAnnotation" + } + ], + "properties": { + "w": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.5297777652740479 + }, + "x": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.8471666574478149 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.03204828500747681 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.024840379133820534 + } + }, + "typeName": "Vec4f::EngineTypeAnnotation::LinkStartAnnotation" + }, + "Ch53.animation_0.ch53": { + "annotations": [ + { + "properties": { + "engineType": 8 + }, + "typeName": "EngineTypeAnnotation" + }, + { + "typeName": "LinkStartAnnotation" + } + ], + "properties": { + "x": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.9999998211860657 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1.000000238418579 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.9999992847442627 + } + }, + "typeName": "Vec3f::EngineTypeAnnotation::LinkStartAnnotation" + }, + "Ch54.animation_0.ch54": { + "annotations": [ + { + "properties": { + "engineType": 8 + }, + "typeName": "EngineTypeAnnotation" + }, + { + "typeName": "LinkStartAnnotation" + } + ], + "properties": { + "x": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.001458517974242568 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.06619883328676224 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.027856720611453056 + } + }, + "typeName": "Vec3f::EngineTypeAnnotation::LinkStartAnnotation" + }, + "Ch55.animation_0.ch55": { + "annotations": [ + { + "properties": { + "engineType": 9 + }, + "typeName": "EngineTypeAnnotation" + }, + { + "typeName": "LinkStartAnnotation" + } + ], + "properties": { + "w": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.041467782109975815 + }, + "x": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.03414176031947136 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.31917816400527954 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.9461713433265686 + } + }, + "typeName": "Vec4f::EngineTypeAnnotation::LinkStartAnnotation" + }, + "Ch56.animation_0.ch56": { + "annotations": [ + { + "properties": { + "engineType": 8 + }, + "typeName": "EngineTypeAnnotation" + }, + { + "typeName": "LinkStartAnnotation" + } + ], + "properties": { + "x": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.9999997615814209 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.9999996423721313 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.9999992251396179 + } + }, + "typeName": "Vec3f::EngineTypeAnnotation::LinkStartAnnotation" + }, + "Ch6.animation_0.ch6": { + "annotations": [ + { + "properties": { + "engineType": 8 + }, + "typeName": "EngineTypeAnnotation" + }, + { + "typeName": "LinkStartAnnotation" + } + ], + "properties": { + "x": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -7.105429898699844e-15 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.21801790595054626 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -1.8626500342122654e-09 + } + }, + "typeName": "Vec3f::EngineTypeAnnotation::LinkStartAnnotation" + }, + "Ch7.animation_0.ch7": { + "annotations": [ + { + "properties": { + "engineType": 9 + }, + "typeName": "EngineTypeAnnotation" + }, + { + "typeName": "LinkStartAnnotation" + } + ], + "properties": { + "w": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.7701530456542969 + }, + "x": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.6378591656684875 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -4.261349051404295e-10 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -3.5284203336871656e-10 + } + }, + "typeName": "Vec4f::EngineTypeAnnotation::LinkStartAnnotation" + }, + "Ch8.animation_0.ch8": { + "annotations": [ + { + "properties": { + "engineType": 8 + }, + "typeName": "EngineTypeAnnotation" + }, + { + "typeName": "LinkStartAnnotation" + } + ], + "properties": { + "x": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1.0000005960464478 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1.0000005960464478 + } + }, + "typeName": "Vec3f::EngineTypeAnnotation::LinkStartAnnotation" + }, + "Ch9.animation_0.ch9": { + "annotations": [ + { + "properties": { + "engineType": 8 + }, + "typeName": "EngineTypeAnnotation" + }, + { + "typeName": "LinkStartAnnotation" + } + ], + "properties": { + "x": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -8.881779961836516e-15 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -3.576280960260192e-08 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.05255941301584244 + } + }, + "typeName": "Vec3f::EngineTypeAnnotation::LinkStartAnnotation" + } + } + }, + "progress": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.7 + } + }, + "typeName": "Animation" + }, + { + "properties": { + "animationIndex": 0, + "objectID": "a8625235-1d1f-4ec4-9523-15709311933b", + "objectName": "animation_0.ch22", + "samplerIndex": 22, + "uri": "../../resources/meshes/RiggedFigure/RiggedFigure.gltf" + }, + "typeName": "AnimationChannel" + }, + { + "properties": { + "children": { + "properties": [ + { + "typeName": "Ref", + "value": "973f1301-0af7-4b03-b0d7-390752ef27d7" + } + ] + }, + "enabled": true, + "objectID": "aaab0a94-3d79-4195-90be-7f439d01b605", + "objectName": "arm_joint_R_1", + "rotation": { + "x": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -22.779991149902344 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -38.211002349853516 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 78.30677795410156 + } + }, + "scaling": { + "x": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1.0000001192092896 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.9999995827674866 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.9999998807907104 + } + }, + "translation": { + "x": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.08800001442432404 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.0001997949875658378 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.00098002003505826 + } + }, + "visibility": true + }, + "typeName": "Node" + }, + { + "properties": { + "animationIndex": 0, + "objectID": "b02811e5-d237-4655-98c7-3500b006c017", + "objectName": "animation_0.ch16", + "samplerIndex": 16, + "uri": "../../resources/meshes/RiggedFigure/RiggedFigure.gltf" + }, + "typeName": "AnimationChannel" + }, + { + "properties": { + "materialFilterMode": 1, + "objectID": "b5598e18-2dd0-467d-b91b-b38bc9c87639", + "objectName": "MainRenderLayer", + "renderableTags": { + "order": [ + "render_main" + ], + "properties": { + "render_main": { + "annotations": [ + { + "properties": { + "featureLevel": 3 + }, + "typeName": "LinkEndAnnotation" + } + ], + "typeName": "Int::LinkEndAnnotation", + "value": 0 + } + } + }, + "sortOrder": 0 + }, + "typeName": "RenderLayer" + }, + { + "properties": { + "children": { + "properties": [ + { + "typeName": "Ref", + "value": "fa7e1b3d-cc76-4e4c-b527-e1b1b47b858c" + } + ] + }, + "enabled": true, + "objectID": "b80894b6-827b-4099-886b-2a3c3ad9e560", + "objectName": "Armature", + "rotation": { + "x": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + } + }, + "scaling": { + "x": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1 + } + }, + "translation": { + "x": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + } + }, + "visibility": true + }, + "typeName": "Node" + }, + { + "properties": { + "animationIndex": 0, + "objectID": "bb759bdd-74a2-4f04-998e-2a9d4d8bd37e", + "objectName": "animation_0.ch40", + "samplerIndex": 40, + "uri": "../../resources/meshes/RiggedFigure/RiggedFigure.gltf" + }, + "typeName": "AnimationChannel" + }, + { + "properties": { + "enabled": true, + "objectID": "c4e73a74-02b1-4d9b-a3a5-3d13fd91e1ef", + "objectName": "leg_joint_R_5", + "rotation": { + "x": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 37.392208099365234 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -2.1856014728546143 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -174.24131774902344 + } + }, + "scaling": { + "x": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.9999997615814209 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.9999996423721313 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.9999992251396179 + } + }, + "translation": { + "x": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.001458517974242568 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.06619883328676224 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.027856720611453056 + } + }, + "visibility": true + }, + "typeName": "Node" + }, + { + "properties": { + "animationIndex": 0, + "objectID": "c64b8567-e09f-4622-85e1-1b07e477933e", + "objectName": "animation_0.ch32", + "samplerIndex": 32, + "uri": "../../resources/meshes/RiggedFigure/RiggedFigure.gltf" + }, + "typeName": "AnimationChannel" + }, + { + "properties": { + "children": { + "properties": [ + { + "typeName": "Ref", + "value": "67a5ce33-34d3-4613-b707-78c0321ee13d" + } + ] + }, + "enabled": true, + "objectID": "c805e73b-3273-4b51-99b5-253ef1917ed0", + "objectName": "leg_joint_L_3", + "rotation": { + "x": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -115.94115447998047 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.47713926434516907 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.6068890690803528 + } + }, + "scaling": { + "x": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.9999992251396179 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.9999995231628418 + } + }, + "translation": { + "x": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.27582401037216187 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -1.8626500342122654e-09 + } + }, + "visibility": true + }, + "typeName": "Node" + }, + { + "properties": { + "children": { + "properties": [ + { + "typeName": "Ref", + "value": "249fc9e3-6675-47db-8bad-af6f74b18e27" + }, + { + "typeName": "Ref", + "value": "a567cb10-a83e-4f13-9c0a-8127fbcaf169" + }, + { + "typeName": "Ref", + "value": "0a397364-5e6d-4aa1-8189-8fc68c48cb61" + } + ] + }, + "enabled": true, + "objectID": "c80cfe27-71fe-48b8-a9ac-1cf5962540cd", + "objectName": "RiggedFigure.gltf", + "rotation": { + "x": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + } + }, + "scaling": { + "x": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1 + } + }, + "translation": { + "x": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + } + }, + "visibility": true + }, + "typeName": "Node" + }, + { + "properties": { + "animationIndex": 0, + "objectID": "d75ffa8f-ca4b-45ac-b9ba-59f03bbbbb5d", + "objectName": "animation_0.ch52", + "samplerIndex": 52, + "uri": "../../resources/meshes/RiggedFigure/RiggedFigure.gltf" + }, + "typeName": "AnimationChannel" + }, + { + "properties": { + "children": { + "properties": [ + { + "typeName": "Ref", + "value": "aaab0a94-3d79-4195-90be-7f439d01b605" + }, + { + "typeName": "Ref", + "value": "4f4ef474-b5a4-43e4-a0c3-545b6776f36d" + }, + { + "typeName": "Ref", + "value": "a1641f65-a42e-4fc3-866a-8b571e4ef1c5" + } + ] + }, + "enabled": true, + "objectID": "d987aa18-6ef1-4365-8607-1e1739bf49b4", + "objectName": "torso_joint_3", + "rotation": { + "x": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -79.26473236083984 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1.181731956734211e-08 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 6.228697913002179e-08 + } + }, + "scaling": { + "x": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1.0000005960464478 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1.0000005960464478 + } + }, + "translation": { + "x": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -7.105429898699844e-15 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.21801790595054626 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -1.8626500342122654e-09 + } + }, + "visibility": true + }, + "typeName": "Node" + }, + { + "properties": { + "children": { + "properties": [ + { + "typeName": "Ref", + "value": "ebb0caaf-90d5-48f7-ba4f-0c0933e1cba5" + } + ] + }, + "enabled": true, + "objectID": "d9ac6a33-768f-41bd-a322-bd28529410e2", + "objectName": "arm_joint_L_2", + "rotation": { + "x": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -4.793607234954834 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 15.362992286682129 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 32.51475143432617 + } + }, + "scaling": { + "x": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.9999995231628418 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.9999997615814209 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1.0000003576278687 + } + }, + "translation": { + "x": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -2.328309989252375e-09 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.24452580511569977 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + } + }, + "visibility": true + }, + "typeName": "Node" + }, + { + "properties": { + "animationIndex": 0, + "objectID": "dd2a5107-a91a-4977-bea0-95080b9193dc", + "objectName": "animation_0.ch15", + "samplerIndex": 15, + "uri": "../../resources/meshes/RiggedFigure/RiggedFigure.gltf" + }, + "typeName": "AnimationChannel" + }, + { + "properties": { + "animationIndex": 0, + "objectID": "e3eac9b2-08b7-4857-889c-5b426b2c7278", + "objectName": "animation_0.ch2", + "samplerIndex": 2, + "uri": "../../resources/meshes/RiggedFigure/RiggedFigure.gltf" + }, + "typeName": "AnimationChannel" + }, + { + "properties": { + "animationIndex": 0, + "objectID": "e7c9fdc2-2904-404f-82e1-3bedfb3185d8", + "objectName": "animation_0.ch14", + "samplerIndex": 14, + "uri": "../../resources/meshes/RiggedFigure/RiggedFigure.gltf" + }, + "typeName": "AnimationChannel" + }, + { + "properties": { + "objectID": "e86e6216-4f21-44b4-97eb-5ab380e754dc", + "objectName": "Material", + "options": { + "blendColor": { + "w": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + }, + "x": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + } + }, + "blendFactorDestAlpha": 1, + "blendFactorDestColor": 3, + "blendFactorSrcAlpha": 1, + "blendFactorSrcColor": 2, + "blendOperationAlpha": 0, + "blendOperationColor": 0, + "colorWriteMask": { + "alpha": true, + "blue": true, + "green": true, + "red": true + }, + "cullmode": 2, + "depthFunction": 4, + "depthwrite": true, + "scissorOptions": { + "scissorEnable": false, + "scissorRegion": { + "height": { + "annotations": [ + { + "properties": { + "max": 7680, + "min": 1 + }, + "typeName": "RangeAnnotationInt" + } + ], + "value": 720 + }, + "offsetX": { + "annotations": [ + { + "properties": { + "max": 7680, + "min": -7680 + }, + "typeName": "RangeAnnotationInt" + } + ], + "value": 0 + }, + "offsetY": { + "annotations": [ + { + "properties": { + "max": 7680, + "min": -7680 + }, + "typeName": "RangeAnnotationInt" + } + ], + "value": 0 + }, + "width": { + "annotations": [ + { + "properties": { + "max": 7680, + "min": 1 + }, + "typeName": "RangeAnnotationInt" + } + ], + "value": 1440 + } + } + }, + "stencilOptions": { + "stencilFunc": 0, + "stencilMask": { + "annotations": [ + { + "properties": { + "max": 255, + "min": 0 + }, + "typeName": "RangeAnnotationInt" + } + ], + "value": 255 + }, + "stencilOpDepthFail": 0, + "stencilOpDepthSucc": 0, + "stencilOpStencilFail": 0, + "stencilRef": { + "annotations": [ + { + "properties": { + "max": 255, + "min": 0 + }, + "typeName": "RangeAnnotationInt" + } + ], + "value": 1 + } + } + }, + "uniforms": { + "order": [ + "u_color" + ], + "properties": { + "u_color": { + "annotations": [ + { + "properties": { + "engineType": 8 + }, + "typeName": "EngineTypeAnnotation" + }, + { + "properties": { + "featureLevel": 1 + }, + "typeName": "LinkEndAnnotation" + } + ], + "properties": { + "x": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 1, + "min": 0 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + } + }, + "typeName": "Vec3f::EngineTypeAnnotation::LinkEndAnnotation" + } + } + }, + "uriDefines": "", + "uriFragment": "shaders/skin-rigged-figure.frag", + "uriGeometry": "", + "uriVertex": "shaders/skin-rigged-figure.vert" + }, + "typeName": "Material" + }, + { + "properties": { + "animationIndex": 0, + "objectID": "e8bb9585-fafe-4ae4-884d-e16d59f85570", + "objectName": "animation_0.ch0", + "samplerIndex": 0, + "uri": "../../resources/meshes/RiggedFigure/RiggedFigure.gltf" + }, + "typeName": "AnimationChannel" + }, + { + "properties": { + "animationIndex": 0, + "objectID": "e9f1f971-6db2-4db5-b604-78d2f14bf895", + "objectName": "animation_0.ch3", + "samplerIndex": 3, + "uri": "../../resources/meshes/RiggedFigure/RiggedFigure.gltf" + }, + "typeName": "AnimationChannel" + }, + { + "properties": { + "enabled": true, + "objectID": "ea0b78f3-8567-49c0-b4ca-b0f13efb547b", + "objectName": "neck_joint_2", + "rotation": { + "x": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -179.34681701660156 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -1.365874231851194e-05 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -180 + } + }, + "scaling": { + "x": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.9999995827674866 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.9999995827674866 + } + }, + "translation": { + "x": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -5.329069671167804e-15 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.06650590896606445 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 9.313230187046884e-10 + } + }, + "visibility": true + }, + "typeName": "Node" + }, + { + "properties": { + "enabled": true, + "objectID": "ebb0caaf-90d5-48f7-ba4f-0c0933e1cba5", + "objectName": "arm_joint_L_3", + "rotation": { + "x": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 6.387481212615967 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 3.5900943279266357 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 6.182656764984131 + } + }, + "scaling": { + "x": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1.0000001192092896 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1.0000001192092896 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.9999995827674866 + } + }, + "translation": { + "x": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.18551670014858246 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 5.96045985901128e-08 + } + }, + "visibility": true + }, + "typeName": "Node" + }, + { + "properties": { + "animationIndex": 0, + "objectID": "ec751aee-4f3e-4a65-a5db-79a0686e263c", + "objectName": "animation_0.ch31", + "samplerIndex": 31, + "uri": "../../resources/meshes/RiggedFigure/RiggedFigure.gltf" + }, + "typeName": "AnimationChannel" + }, + { + "properties": { + "animationIndex": 0, + "objectID": "ecc0fc5c-789e-4729-94a7-94ac1c5d024c", + "objectName": "animation_0.ch42", + "samplerIndex": 42, + "uri": "../../resources/meshes/RiggedFigure/RiggedFigure.gltf" + }, + "typeName": "AnimationChannel" + }, + { + "properties": { + "animationIndex": 0, + "objectID": "f8411eb6-7ed7-4bba-8954-0c23fee17fea", + "objectName": "animation_0.ch50", + "samplerIndex": 50, + "uri": "../../resources/meshes/RiggedFigure/RiggedFigure.gltf" + }, + "typeName": "AnimationChannel" + }, + { + "properties": { + "animationIndex": 0, + "objectID": "f87251c0-8759-49bc-9861-878a87b758c3", + "objectName": "animation_0.ch24", + "samplerIndex": 24, + "uri": "../../resources/meshes/RiggedFigure/RiggedFigure.gltf" + }, + "typeName": "AnimationChannel" + }, + { + "properties": { + "children": { + "properties": [ + { + "typeName": "Ref", + "value": "9348d441-2e34-4e53-8d72-11780148868a" + }, + { + "typeName": "Ref", + "value": "348bac46-6da4-4ceb-a96f-7ef816a68eb4" + }, + { + "typeName": "Ref", + "value": "71542623-c677-4254-9456-2712ff4c3a08" + } + ] + }, + "enabled": true, + "objectID": "fa7e1b3d-cc76-4e4c-b527-e1b1b47b858c", + "objectName": "torso_joint_1", + "rotation": { + "x": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -4.347509860992432 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -0.33412134647369385 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 360, + "min": -360 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.0003222933446522802 + } + }, + "scaling": { + "x": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1.0000001192092896 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1.000000238418579 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 100, + "min": 0.1 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 1.0000004768371582 + } + }, + "translation": { + "x": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 4.589660040910104e-10 + }, + "y": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": -1.1506600117172638e-07 + }, + "z": { + "annotations": [ + { + "properties": { + "max": 100, + "min": -100 + }, + "typeName": "RangeAnnotationDouble" + } + ], + "value": 0.6860000491142273 + } + }, + "visibility": true + }, + "typeName": "Node" + }, + { + "properties": { + "animationIndex": 0, + "objectID": "fd16e01f-0123-4210-a2cd-25db76ac8083", + "objectName": "animation_0.ch5", + "samplerIndex": 5, + "uri": "../../resources/meshes/RiggedFigure/RiggedFigure.gltf" + }, + "typeName": "AnimationChannel" + }, + { + "properties": { + "animationIndex": 0, + "objectID": "ff8b2d34-e6ee-440d-81cf-fd7ed1e612c5", + "objectName": "animation_0.ch54", + "samplerIndex": 54, + "uri": "../../resources/meshes/RiggedFigure/RiggedFigure.gltf" + }, + "typeName": "AnimationChannel" + } + ], + "links": [ + { + "properties": { + "endObject": "fa7e1b3d-cc76-4e4c-b527-e1b1b47b858c", + "endProp": { + "properties": [ + { + "typeName": "String", + "value": "translation" + } + ] + }, + "isValid": true, + "isWeak": false, + "startObject": "a567cb10-a83e-4f13-9c0a-8127fbcaf169", + "startProp": { + "properties": [ + { + "typeName": "String", + "value": "outputs" + }, + { + "typeName": "String", + "value": "Ch0.animation_0.ch0" + } + ] + } + }, + "typeName": "Link" + }, + { + "properties": { + "endObject": "fa7e1b3d-cc76-4e4c-b527-e1b1b47b858c", + "endProp": { + "properties": [ + { + "typeName": "String", + "value": "rotation" + } + ] + }, + "isValid": true, + "isWeak": false, + "startObject": "a567cb10-a83e-4f13-9c0a-8127fbcaf169", + "startProp": { + "properties": [ + { + "typeName": "String", + "value": "outputs" + }, + { + "typeName": "String", + "value": "Ch1.animation_0.ch1" + } + ] + } + }, + "typeName": "Link" + }, + { + "properties": { + "endObject": "a1641f65-a42e-4fc3-866a-8b571e4ef1c5", + "endProp": { + "properties": [ + { + "typeName": "String", + "value": "rotation" + } + ] + }, + "isValid": true, + "isWeak": false, + "startObject": "a567cb10-a83e-4f13-9c0a-8127fbcaf169", + "startProp": { + "properties": [ + { + "typeName": "String", + "value": "outputs" + }, + { + "typeName": "String", + "value": "Ch10.animation_0.ch10" + } + ] + } + }, + "typeName": "Link" + }, + { + "properties": { + "endObject": "a1641f65-a42e-4fc3-866a-8b571e4ef1c5", + "endProp": { + "properties": [ + { + "typeName": "String", + "value": "scaling" + } + ] + }, + "isValid": true, + "isWeak": false, + "startObject": "a567cb10-a83e-4f13-9c0a-8127fbcaf169", + "startProp": { + "properties": [ + { + "typeName": "String", + "value": "outputs" + }, + { + "typeName": "String", + "value": "Ch11.animation_0.ch11" + } + ] + } + }, + "typeName": "Link" + }, + { + "properties": { + "endObject": "ea0b78f3-8567-49c0-b4ca-b0f13efb547b", + "endProp": { + "properties": [ + { + "typeName": "String", + "value": "translation" + } + ] + }, + "isValid": true, + "isWeak": false, + "startObject": "a567cb10-a83e-4f13-9c0a-8127fbcaf169", + "startProp": { + "properties": [ + { + "typeName": "String", + "value": "outputs" + }, + { + "typeName": "String", + "value": "Ch12.animation_0.ch12" + } + ] + } + }, + "typeName": "Link" + }, + { + "properties": { + "endObject": "ea0b78f3-8567-49c0-b4ca-b0f13efb547b", + "endProp": { + "properties": [ + { + "typeName": "String", + "value": "rotation" + } + ] + }, + "isValid": true, + "isWeak": false, + "startObject": "a567cb10-a83e-4f13-9c0a-8127fbcaf169", + "startProp": { + "properties": [ + { + "typeName": "String", + "value": "outputs" + }, + { + "typeName": "String", + "value": "Ch13.animation_0.ch13" + } + ] + } + }, + "typeName": "Link" + }, + { + "properties": { + "endObject": "ea0b78f3-8567-49c0-b4ca-b0f13efb547b", + "endProp": { + "properties": [ + { + "typeName": "String", + "value": "scaling" + } + ] + }, + "isValid": true, + "isWeak": false, + "startObject": "a567cb10-a83e-4f13-9c0a-8127fbcaf169", + "startProp": { + "properties": [ + { + "typeName": "String", + "value": "outputs" + }, + { + "typeName": "String", + "value": "Ch14.animation_0.ch14" + } + ] + } + }, + "typeName": "Link" + }, + { + "properties": { + "endObject": "4f4ef474-b5a4-43e4-a0c3-545b6776f36d", + "endProp": { + "properties": [ + { + "typeName": "String", + "value": "translation" + } + ] + }, + "isValid": true, + "isWeak": false, + "startObject": "a567cb10-a83e-4f13-9c0a-8127fbcaf169", + "startProp": { + "properties": [ + { + "typeName": "String", + "value": "outputs" + }, + { + "typeName": "String", + "value": "Ch15.animation_0.ch15" + } + ] + } + }, + "typeName": "Link" + }, + { + "properties": { + "endObject": "4f4ef474-b5a4-43e4-a0c3-545b6776f36d", + "endProp": { + "properties": [ + { + "typeName": "String", + "value": "rotation" + } + ] + }, + "isValid": true, + "isWeak": false, + "startObject": "a567cb10-a83e-4f13-9c0a-8127fbcaf169", + "startProp": { + "properties": [ + { + "typeName": "String", + "value": "outputs" + }, + { + "typeName": "String", + "value": "Ch16.animation_0.ch16" + } + ] + } + }, + "typeName": "Link" + }, + { + "properties": { + "endObject": "4f4ef474-b5a4-43e4-a0c3-545b6776f36d", + "endProp": { + "properties": [ + { + "typeName": "String", + "value": "scaling" + } + ] + }, + "isValid": true, + "isWeak": false, + "startObject": "a567cb10-a83e-4f13-9c0a-8127fbcaf169", + "startProp": { + "properties": [ + { + "typeName": "String", + "value": "outputs" + }, + { + "typeName": "String", + "value": "Ch17.animation_0.ch17" + } + ] + } + }, + "typeName": "Link" + }, + { + "properties": { + "endObject": "d9ac6a33-768f-41bd-a322-bd28529410e2", + "endProp": { + "properties": [ + { + "typeName": "String", + "value": "translation" + } + ] + }, + "isValid": true, + "isWeak": false, + "startObject": "a567cb10-a83e-4f13-9c0a-8127fbcaf169", + "startProp": { + "properties": [ + { + "typeName": "String", + "value": "outputs" + }, + { + "typeName": "String", + "value": "Ch18.animation_0.ch18" + } + ] + } + }, + "typeName": "Link" + }, + { + "properties": { + "endObject": "d9ac6a33-768f-41bd-a322-bd28529410e2", + "endProp": { + "properties": [ + { + "typeName": "String", + "value": "rotation" + } + ] + }, + "isValid": true, + "isWeak": false, + "startObject": "a567cb10-a83e-4f13-9c0a-8127fbcaf169", + "startProp": { + "properties": [ + { + "typeName": "String", + "value": "outputs" + }, + { + "typeName": "String", + "value": "Ch19.animation_0.ch19" + } + ] + } + }, + "typeName": "Link" + }, + { + "properties": { + "endObject": "fa7e1b3d-cc76-4e4c-b527-e1b1b47b858c", + "endProp": { + "properties": [ + { + "typeName": "String", + "value": "scaling" + } + ] + }, + "isValid": true, + "isWeak": false, + "startObject": "a567cb10-a83e-4f13-9c0a-8127fbcaf169", + "startProp": { + "properties": [ + { + "typeName": "String", + "value": "outputs" + }, + { + "typeName": "String", + "value": "Ch2.animation_0.ch2" + } + ] + } + }, + "typeName": "Link" + }, + { + "properties": { + "endObject": "d9ac6a33-768f-41bd-a322-bd28529410e2", + "endProp": { + "properties": [ + { + "typeName": "String", + "value": "scaling" + } + ] + }, + "isValid": true, + "isWeak": false, + "startObject": "a567cb10-a83e-4f13-9c0a-8127fbcaf169", + "startProp": { + "properties": [ + { + "typeName": "String", + "value": "outputs" + }, + { + "typeName": "String", + "value": "Ch20.animation_0.ch20" + } + ] + } + }, + "typeName": "Link" + }, + { + "properties": { + "endObject": "ebb0caaf-90d5-48f7-ba4f-0c0933e1cba5", + "endProp": { + "properties": [ + { + "typeName": "String", + "value": "translation" + } + ] + }, + "isValid": true, + "isWeak": false, + "startObject": "a567cb10-a83e-4f13-9c0a-8127fbcaf169", + "startProp": { + "properties": [ + { + "typeName": "String", + "value": "outputs" + }, + { + "typeName": "String", + "value": "Ch21.animation_0.ch21" + } + ] + } + }, + "typeName": "Link" + }, + { + "properties": { + "endObject": "ebb0caaf-90d5-48f7-ba4f-0c0933e1cba5", + "endProp": { + "properties": [ + { + "typeName": "String", + "value": "rotation" + } + ] + }, + "isValid": true, + "isWeak": false, + "startObject": "a567cb10-a83e-4f13-9c0a-8127fbcaf169", + "startProp": { + "properties": [ + { + "typeName": "String", + "value": "outputs" + }, + { + "typeName": "String", + "value": "Ch22.animation_0.ch22" + } + ] + } + }, + "typeName": "Link" + }, + { + "properties": { + "endObject": "ebb0caaf-90d5-48f7-ba4f-0c0933e1cba5", + "endProp": { + "properties": [ + { + "typeName": "String", + "value": "scaling" + } + ] + }, + "isValid": true, + "isWeak": false, + "startObject": "a567cb10-a83e-4f13-9c0a-8127fbcaf169", + "startProp": { + "properties": [ + { + "typeName": "String", + "value": "outputs" + }, + { + "typeName": "String", + "value": "Ch23.animation_0.ch23" + } + ] + } + }, + "typeName": "Link" + }, + { + "properties": { + "endObject": "aaab0a94-3d79-4195-90be-7f439d01b605", + "endProp": { + "properties": [ + { + "typeName": "String", + "value": "translation" + } + ] + }, + "isValid": true, + "isWeak": false, + "startObject": "a567cb10-a83e-4f13-9c0a-8127fbcaf169", + "startProp": { + "properties": [ + { + "typeName": "String", + "value": "outputs" + }, + { + "typeName": "String", + "value": "Ch24.animation_0.ch24" + } + ] + } + }, + "typeName": "Link" + }, + { + "properties": { + "endObject": "aaab0a94-3d79-4195-90be-7f439d01b605", + "endProp": { + "properties": [ + { + "typeName": "String", + "value": "rotation" + } + ] + }, + "isValid": true, + "isWeak": false, + "startObject": "a567cb10-a83e-4f13-9c0a-8127fbcaf169", + "startProp": { + "properties": [ + { + "typeName": "String", + "value": "outputs" + }, + { + "typeName": "String", + "value": "Ch25.animation_0.ch25" + } + ] + } + }, + "typeName": "Link" + }, + { + "properties": { + "endObject": "aaab0a94-3d79-4195-90be-7f439d01b605", + "endProp": { + "properties": [ + { + "typeName": "String", + "value": "scaling" + } + ] + }, + "isValid": true, + "isWeak": false, + "startObject": "a567cb10-a83e-4f13-9c0a-8127fbcaf169", + "startProp": { + "properties": [ + { + "typeName": "String", + "value": "outputs" + }, + { + "typeName": "String", + "value": "Ch26.animation_0.ch26" + } + ] + } + }, + "typeName": "Link" + }, + { + "properties": { + "endObject": "973f1301-0af7-4b03-b0d7-390752ef27d7", + "endProp": { + "properties": [ + { + "typeName": "String", + "value": "translation" + } + ] + }, + "isValid": true, + "isWeak": false, + "startObject": "a567cb10-a83e-4f13-9c0a-8127fbcaf169", + "startProp": { + "properties": [ + { + "typeName": "String", + "value": "outputs" + }, + { + "typeName": "String", + "value": "Ch27.animation_0.ch27" + } + ] + } + }, + "typeName": "Link" + }, + { + "properties": { + "endObject": "973f1301-0af7-4b03-b0d7-390752ef27d7", + "endProp": { + "properties": [ + { + "typeName": "String", + "value": "rotation" + } + ] + }, + "isValid": true, + "isWeak": false, + "startObject": "a567cb10-a83e-4f13-9c0a-8127fbcaf169", + "startProp": { + "properties": [ + { + "typeName": "String", + "value": "outputs" + }, + { + "typeName": "String", + "value": "Ch28.animation_0.ch28" + } + ] + } + }, + "typeName": "Link" + }, + { + "properties": { + "endObject": "973f1301-0af7-4b03-b0d7-390752ef27d7", + "endProp": { + "properties": [ + { + "typeName": "String", + "value": "scaling" + } + ] + }, + "isValid": true, + "isWeak": false, + "startObject": "a567cb10-a83e-4f13-9c0a-8127fbcaf169", + "startProp": { + "properties": [ + { + "typeName": "String", + "value": "outputs" + }, + { + "typeName": "String", + "value": "Ch29.animation_0.ch29" + } + ] + } + }, + "typeName": "Link" + }, + { + "properties": { + "endObject": "71542623-c677-4254-9456-2712ff4c3a08", + "endProp": { + "properties": [ + { + "typeName": "String", + "value": "translation" + } + ] + }, + "isValid": true, + "isWeak": false, + "startObject": "a567cb10-a83e-4f13-9c0a-8127fbcaf169", + "startProp": { + "properties": [ + { + "typeName": "String", + "value": "outputs" + }, + { + "typeName": "String", + "value": "Ch3.animation_0.ch3" + } + ] + } + }, + "typeName": "Link" + }, + { + "properties": { + "endObject": "004dee79-2d9b-4e9e-9303-4ac2189a9b64", + "endProp": { + "properties": [ + { + "typeName": "String", + "value": "translation" + } + ] + }, + "isValid": true, + "isWeak": false, + "startObject": "a567cb10-a83e-4f13-9c0a-8127fbcaf169", + "startProp": { + "properties": [ + { + "typeName": "String", + "value": "outputs" + }, + { + "typeName": "String", + "value": "Ch30.animation_0.ch30" + } + ] + } + }, + "typeName": "Link" + }, + { + "properties": { + "endObject": "004dee79-2d9b-4e9e-9303-4ac2189a9b64", + "endProp": { + "properties": [ + { + "typeName": "String", + "value": "rotation" + } + ] + }, + "isValid": true, + "isWeak": false, + "startObject": "a567cb10-a83e-4f13-9c0a-8127fbcaf169", + "startProp": { + "properties": [ + { + "typeName": "String", + "value": "outputs" + }, + { + "typeName": "String", + "value": "Ch31.animation_0.ch31" + } + ] + } + }, + "typeName": "Link" + }, + { + "properties": { + "endObject": "004dee79-2d9b-4e9e-9303-4ac2189a9b64", + "endProp": { + "properties": [ + { + "typeName": "String", + "value": "scaling" + } + ] + }, + "isValid": true, + "isWeak": false, + "startObject": "a567cb10-a83e-4f13-9c0a-8127fbcaf169", + "startProp": { + "properties": [ + { + "typeName": "String", + "value": "outputs" + }, + { + "typeName": "String", + "value": "Ch32.animation_0.ch32" + } + ] + } + }, + "typeName": "Link" + }, + { + "properties": { + "endObject": "348bac46-6da4-4ceb-a96f-7ef816a68eb4", + "endProp": { + "properties": [ + { + "typeName": "String", + "value": "translation" + } + ] + }, + "isValid": true, + "isWeak": false, + "startObject": "a567cb10-a83e-4f13-9c0a-8127fbcaf169", + "startProp": { + "properties": [ + { + "typeName": "String", + "value": "outputs" + }, + { + "typeName": "String", + "value": "Ch33.animation_0.ch33" + } + ] + } + }, + "typeName": "Link" + }, + { + "properties": { + "endObject": "348bac46-6da4-4ceb-a96f-7ef816a68eb4", + "endProp": { + "properties": [ + { + "typeName": "String", + "value": "rotation" + } + ] + }, + "isValid": true, + "isWeak": false, + "startObject": "a567cb10-a83e-4f13-9c0a-8127fbcaf169", + "startProp": { + "properties": [ + { + "typeName": "String", + "value": "outputs" + }, + { + "typeName": "String", + "value": "Ch34.animation_0.ch34" + } + ] + } + }, + "typeName": "Link" + }, + { + "properties": { + "endObject": "348bac46-6da4-4ceb-a96f-7ef816a68eb4", + "endProp": { + "properties": [ + { + "typeName": "String", + "value": "scaling" + } + ] + }, + "isValid": true, + "isWeak": false, + "startObject": "a567cb10-a83e-4f13-9c0a-8127fbcaf169", + "startProp": { + "properties": [ + { + "typeName": "String", + "value": "outputs" + }, + { + "typeName": "String", + "value": "Ch35.animation_0.ch35" + } + ] + } + }, + "typeName": "Link" + }, + { + "properties": { + "endObject": "863c1b12-9449-43a4-90cc-54ccb81aec38", + "endProp": { + "properties": [ + { + "typeName": "String", + "value": "translation" + } + ] + }, + "isValid": true, + "isWeak": false, + "startObject": "a567cb10-a83e-4f13-9c0a-8127fbcaf169", + "startProp": { + "properties": [ + { + "typeName": "String", + "value": "outputs" + }, + { + "typeName": "String", + "value": "Ch36.animation_0.ch36" + } + ] + } + }, + "typeName": "Link" + }, + { + "properties": { + "endObject": "863c1b12-9449-43a4-90cc-54ccb81aec38", + "endProp": { + "properties": [ + { + "typeName": "String", + "value": "rotation" + } + ] + }, + "isValid": true, + "isWeak": false, + "startObject": "a567cb10-a83e-4f13-9c0a-8127fbcaf169", + "startProp": { + "properties": [ + { + "typeName": "String", + "value": "outputs" + }, + { + "typeName": "String", + "value": "Ch37.animation_0.ch37" + } + ] + } + }, + "typeName": "Link" + }, + { + "properties": { + "endObject": "863c1b12-9449-43a4-90cc-54ccb81aec38", + "endProp": { + "properties": [ + { + "typeName": "String", + "value": "scaling" + } + ] + }, + "isValid": true, + "isWeak": false, + "startObject": "a567cb10-a83e-4f13-9c0a-8127fbcaf169", + "startProp": { + "properties": [ + { + "typeName": "String", + "value": "outputs" + }, + { + "typeName": "String", + "value": "Ch38.animation_0.ch38" + } + ] + } + }, + "typeName": "Link" + }, + { + "properties": { + "endObject": "c805e73b-3273-4b51-99b5-253ef1917ed0", + "endProp": { + "properties": [ + { + "typeName": "String", + "value": "translation" + } + ] + }, + "isValid": true, + "isWeak": false, + "startObject": "a567cb10-a83e-4f13-9c0a-8127fbcaf169", + "startProp": { + "properties": [ + { + "typeName": "String", + "value": "outputs" + }, + { + "typeName": "String", + "value": "Ch39.animation_0.ch39" + } + ] + } + }, + "typeName": "Link" + }, + { + "properties": { + "endObject": "71542623-c677-4254-9456-2712ff4c3a08", + "endProp": { + "properties": [ + { + "typeName": "String", + "value": "rotation" + } + ] + }, + "isValid": true, + "isWeak": false, + "startObject": "a567cb10-a83e-4f13-9c0a-8127fbcaf169", + "startProp": { + "properties": [ + { + "typeName": "String", + "value": "outputs" + }, + { + "typeName": "String", + "value": "Ch4.animation_0.ch4" + } + ] + } + }, + "typeName": "Link" + }, + { + "properties": { + "endObject": "c805e73b-3273-4b51-99b5-253ef1917ed0", + "endProp": { + "properties": [ + { + "typeName": "String", + "value": "rotation" + } + ] + }, + "isValid": true, + "isWeak": false, + "startObject": "a567cb10-a83e-4f13-9c0a-8127fbcaf169", + "startProp": { + "properties": [ + { + "typeName": "String", + "value": "outputs" + }, + { + "typeName": "String", + "value": "Ch40.animation_0.ch40" + } + ] + } + }, + "typeName": "Link" + }, + { + "properties": { + "endObject": "c805e73b-3273-4b51-99b5-253ef1917ed0", + "endProp": { + "properties": [ + { + "typeName": "String", + "value": "scaling" + } + ] + }, + "isValid": true, + "isWeak": false, + "startObject": "a567cb10-a83e-4f13-9c0a-8127fbcaf169", + "startProp": { + "properties": [ + { + "typeName": "String", + "value": "outputs" + }, + { + "typeName": "String", + "value": "Ch41.animation_0.ch41" + } + ] + } + }, + "typeName": "Link" + }, + { + "properties": { + "endObject": "67a5ce33-34d3-4613-b707-78c0321ee13d", + "endProp": { + "properties": [ + { + "typeName": "String", + "value": "translation" + } + ] + }, + "isValid": true, + "isWeak": false, + "startObject": "a567cb10-a83e-4f13-9c0a-8127fbcaf169", + "startProp": { + "properties": [ + { + "typeName": "String", + "value": "outputs" + }, + { + "typeName": "String", + "value": "Ch42.animation_0.ch42" + } + ] + } + }, + "typeName": "Link" + }, + { + "properties": { + "endObject": "67a5ce33-34d3-4613-b707-78c0321ee13d", + "endProp": { + "properties": [ + { + "typeName": "String", + "value": "rotation" + } + ] + }, + "isValid": true, + "isWeak": false, + "startObject": "a567cb10-a83e-4f13-9c0a-8127fbcaf169", + "startProp": { + "properties": [ + { + "typeName": "String", + "value": "outputs" + }, + { + "typeName": "String", + "value": "Ch43.animation_0.ch43" + } + ] + } + }, + "typeName": "Link" + }, + { + "properties": { + "endObject": "67a5ce33-34d3-4613-b707-78c0321ee13d", + "endProp": { + "properties": [ + { + "typeName": "String", + "value": "scaling" + } + ] + }, + "isValid": true, + "isWeak": false, + "startObject": "a567cb10-a83e-4f13-9c0a-8127fbcaf169", + "startProp": { + "properties": [ + { + "typeName": "String", + "value": "outputs" + }, + { + "typeName": "String", + "value": "Ch44.animation_0.ch44" + } + ] + } + }, + "typeName": "Link" + }, + { + "properties": { + "endObject": "9348d441-2e34-4e53-8d72-11780148868a", + "endProp": { + "properties": [ + { + "typeName": "String", + "value": "translation" + } + ] + }, + "isValid": true, + "isWeak": false, + "startObject": "a567cb10-a83e-4f13-9c0a-8127fbcaf169", + "startProp": { + "properties": [ + { + "typeName": "String", + "value": "outputs" + }, + { + "typeName": "String", + "value": "Ch45.animation_0.ch45" + } + ] + } + }, + "typeName": "Link" + }, + { + "properties": { + "endObject": "9348d441-2e34-4e53-8d72-11780148868a", + "endProp": { + "properties": [ + { + "typeName": "String", + "value": "rotation" + } + ] + }, + "isValid": true, + "isWeak": false, + "startObject": "a567cb10-a83e-4f13-9c0a-8127fbcaf169", + "startProp": { + "properties": [ + { + "typeName": "String", + "value": "outputs" + }, + { + "typeName": "String", + "value": "Ch46.animation_0.ch46" + } + ] + } + }, + "typeName": "Link" + }, + { + "properties": { + "endObject": "9348d441-2e34-4e53-8d72-11780148868a", + "endProp": { + "properties": [ + { + "typeName": "String", + "value": "scaling" + } + ] + }, + "isValid": true, + "isWeak": false, + "startObject": "a567cb10-a83e-4f13-9c0a-8127fbcaf169", + "startProp": { + "properties": [ + { + "typeName": "String", + "value": "outputs" + }, + { + "typeName": "String", + "value": "Ch47.animation_0.ch47" + } + ] + } + }, + "typeName": "Link" + }, + { + "properties": { + "endObject": "2e2a5809-a71d-4263-b8b8-ac8c31ec6648", + "endProp": { + "properties": [ + { + "typeName": "String", + "value": "translation" + } + ] + }, + "isValid": true, + "isWeak": false, + "startObject": "a567cb10-a83e-4f13-9c0a-8127fbcaf169", + "startProp": { + "properties": [ + { + "typeName": "String", + "value": "outputs" + }, + { + "typeName": "String", + "value": "Ch48.animation_0.ch48" + } + ] + } + }, + "typeName": "Link" + }, + { + "properties": { + "endObject": "2e2a5809-a71d-4263-b8b8-ac8c31ec6648", + "endProp": { + "properties": [ + { + "typeName": "String", + "value": "rotation" + } + ] + }, + "isValid": true, + "isWeak": false, + "startObject": "a567cb10-a83e-4f13-9c0a-8127fbcaf169", + "startProp": { + "properties": [ + { + "typeName": "String", + "value": "outputs" + }, + { + "typeName": "String", + "value": "Ch49.animation_0.ch49" + } + ] + } + }, + "typeName": "Link" + }, + { + "properties": { + "endObject": "71542623-c677-4254-9456-2712ff4c3a08", + "endProp": { + "properties": [ + { + "typeName": "String", + "value": "scaling" + } + ] + }, + "isValid": true, + "isWeak": false, + "startObject": "a567cb10-a83e-4f13-9c0a-8127fbcaf169", + "startProp": { + "properties": [ + { + "typeName": "String", + "value": "outputs" + }, + { + "typeName": "String", + "value": "Ch5.animation_0.ch5" + } + ] + } + }, + "typeName": "Link" + }, + { + "properties": { + "endObject": "2e2a5809-a71d-4263-b8b8-ac8c31ec6648", + "endProp": { + "properties": [ + { + "typeName": "String", + "value": "scaling" + } + ] + }, + "isValid": true, + "isWeak": false, + "startObject": "a567cb10-a83e-4f13-9c0a-8127fbcaf169", + "startProp": { + "properties": [ + { + "typeName": "String", + "value": "outputs" + }, + { + "typeName": "String", + "value": "Ch50.animation_0.ch50" + } + ] + } + }, + "typeName": "Link" + }, + { + "properties": { + "endObject": "9bcad876-8074-4a5d-a9be-fae668a94868", + "endProp": { + "properties": [ + { + "typeName": "String", + "value": "translation" + } + ] + }, + "isValid": true, + "isWeak": false, + "startObject": "a567cb10-a83e-4f13-9c0a-8127fbcaf169", + "startProp": { + "properties": [ + { + "typeName": "String", + "value": "outputs" + }, + { + "typeName": "String", + "value": "Ch51.animation_0.ch51" + } + ] + } + }, + "typeName": "Link" + }, + { + "properties": { + "endObject": "9bcad876-8074-4a5d-a9be-fae668a94868", + "endProp": { + "properties": [ + { + "typeName": "String", + "value": "rotation" + } + ] + }, + "isValid": true, + "isWeak": false, + "startObject": "a567cb10-a83e-4f13-9c0a-8127fbcaf169", + "startProp": { + "properties": [ + { + "typeName": "String", + "value": "outputs" + }, + { + "typeName": "String", + "value": "Ch52.animation_0.ch52" + } + ] + } + }, + "typeName": "Link" + }, + { + "properties": { + "endObject": "9bcad876-8074-4a5d-a9be-fae668a94868", + "endProp": { + "properties": [ + { + "typeName": "String", + "value": "scaling" + } + ] + }, + "isValid": true, + "isWeak": false, + "startObject": "a567cb10-a83e-4f13-9c0a-8127fbcaf169", + "startProp": { + "properties": [ + { + "typeName": "String", + "value": "outputs" + }, + { + "typeName": "String", + "value": "Ch53.animation_0.ch53" + } + ] + } + }, + "typeName": "Link" + }, + { + "properties": { + "endObject": "c4e73a74-02b1-4d9b-a3a5-3d13fd91e1ef", + "endProp": { + "properties": [ + { + "typeName": "String", + "value": "translation" + } + ] + }, + "isValid": true, + "isWeak": false, + "startObject": "a567cb10-a83e-4f13-9c0a-8127fbcaf169", + "startProp": { + "properties": [ + { + "typeName": "String", + "value": "outputs" + }, + { + "typeName": "String", + "value": "Ch54.animation_0.ch54" + } + ] + } + }, + "typeName": "Link" + }, + { + "properties": { + "endObject": "c4e73a74-02b1-4d9b-a3a5-3d13fd91e1ef", + "endProp": { + "properties": [ + { + "typeName": "String", + "value": "rotation" + } + ] + }, + "isValid": true, + "isWeak": false, + "startObject": "a567cb10-a83e-4f13-9c0a-8127fbcaf169", + "startProp": { + "properties": [ + { + "typeName": "String", + "value": "outputs" + }, + { + "typeName": "String", + "value": "Ch55.animation_0.ch55" + } + ] + } + }, + "typeName": "Link" + }, + { + "properties": { + "endObject": "c4e73a74-02b1-4d9b-a3a5-3d13fd91e1ef", + "endProp": { + "properties": [ + { + "typeName": "String", + "value": "scaling" + } + ] + }, + "isValid": true, + "isWeak": false, + "startObject": "a567cb10-a83e-4f13-9c0a-8127fbcaf169", + "startProp": { + "properties": [ + { + "typeName": "String", + "value": "outputs" + }, + { + "typeName": "String", + "value": "Ch56.animation_0.ch56" + } + ] + } + }, + "typeName": "Link" + }, + { + "properties": { + "endObject": "d987aa18-6ef1-4365-8607-1e1739bf49b4", + "endProp": { + "properties": [ + { + "typeName": "String", + "value": "translation" + } + ] + }, + "isValid": true, + "isWeak": false, + "startObject": "a567cb10-a83e-4f13-9c0a-8127fbcaf169", + "startProp": { + "properties": [ + { + "typeName": "String", + "value": "outputs" + }, + { + "typeName": "String", + "value": "Ch6.animation_0.ch6" + } + ] + } + }, + "typeName": "Link" + }, + { + "properties": { + "endObject": "d987aa18-6ef1-4365-8607-1e1739bf49b4", + "endProp": { + "properties": [ + { + "typeName": "String", + "value": "rotation" + } + ] + }, + "isValid": true, + "isWeak": false, + "startObject": "a567cb10-a83e-4f13-9c0a-8127fbcaf169", + "startProp": { + "properties": [ + { + "typeName": "String", + "value": "outputs" + }, + { + "typeName": "String", + "value": "Ch7.animation_0.ch7" + } + ] + } + }, + "typeName": "Link" + }, + { + "properties": { + "endObject": "d987aa18-6ef1-4365-8607-1e1739bf49b4", + "endProp": { + "properties": [ + { + "typeName": "String", + "value": "scaling" + } + ] + }, + "isValid": true, + "isWeak": false, + "startObject": "a567cb10-a83e-4f13-9c0a-8127fbcaf169", + "startProp": { + "properties": [ + { + "typeName": "String", + "value": "outputs" + }, + { + "typeName": "String", + "value": "Ch8.animation_0.ch8" + } + ] + } + }, + "typeName": "Link" + }, + { + "properties": { + "endObject": "a1641f65-a42e-4fc3-866a-8b571e4ef1c5", + "endProp": { + "properties": [ + { + "typeName": "String", + "value": "translation" + } + ] + }, + "isValid": true, + "isWeak": false, + "startObject": "a567cb10-a83e-4f13-9c0a-8127fbcaf169", + "startProp": { + "properties": [ + { + "typeName": "String", + "value": "outputs" + }, + { + "typeName": "String", + "value": "Ch9.animation_0.ch9" + } + ] + } + }, + "typeName": "Link" + } + ], + "logicEngineVersion": [ + 1, + 4, + 2 + ], + "racoVersion": [ + 1, + 10, + 0 + ], + "ramsesVersion": [ + 27, + 0, + 130 + ], + "structPropMap": { + "AnchorPointOutputs": { + "depth": "Double::DisplayNameAnnotation::LinkStartAnnotation", + "viewportCoords": "Vec2f::DisplayNameAnnotation::LinkStartAnnotation" + }, + "BlendOptions": { + "blendColor": "Vec4f::DisplayNameAnnotation", + "blendFactorDestAlpha": "Int::DisplayNameAnnotation::EnumerationAnnotation", + "blendFactorDestColor": "Int::DisplayNameAnnotation::EnumerationAnnotation", + "blendFactorSrcAlpha": "Int::DisplayNameAnnotation::EnumerationAnnotation", + "blendFactorSrcColor": "Int::DisplayNameAnnotation::EnumerationAnnotation", + "blendOperationAlpha": "Int::DisplayNameAnnotation::EnumerationAnnotation", + "blendOperationColor": "Int::DisplayNameAnnotation::EnumerationAnnotation", + "colorWriteMask": "ColorWriteMask::DisplayNameAnnotation", + "cullmode": "Int::DisplayNameAnnotation::EnumerationAnnotation", + "depthFunction": "Int::DisplayNameAnnotation::EnumerationAnnotation", + "depthwrite": "Bool::DisplayNameAnnotation", + "scissorOptions": "ScissorOptions::DisplayNameAnnotation", + "stencilOptions": "StencilOptions::DisplayNameAnnotation" + }, + "CameraViewport": { + "height": "Int::RangeAnnotationInt::DisplayNameAnnotation::LinkEndAnnotation", + "offsetX": "Int::RangeAnnotationInt::DisplayNameAnnotation::LinkEndAnnotation", + "offsetY": "Int::RangeAnnotationInt::DisplayNameAnnotation::LinkEndAnnotation", + "width": "Int::RangeAnnotationInt::DisplayNameAnnotation::LinkEndAnnotation" + }, + "ColorWriteMask": { + "alpha": "Bool::DisplayNameAnnotation", + "blue": "Bool::DisplayNameAnnotation", + "green": "Bool::DisplayNameAnnotation", + "red": "Bool::DisplayNameAnnotation" + }, + "DefaultResourceDirectories": { + "imageSubdirectory": "String::DisplayNameAnnotation::URIAnnotation", + "interfaceSubdirectory": "String::DisplayNameAnnotation::URIAnnotation", + "meshSubdirectory": "String::DisplayNameAnnotation::URIAnnotation", + "scriptSubdirectory": "String::DisplayNameAnnotation::URIAnnotation", + "shaderSubdirectory": "String::DisplayNameAnnotation::URIAnnotation" + }, + "LuaStandardModuleSelection": { + "base": "Bool::DisplayNameAnnotation", + "debug": "Bool::DisplayNameAnnotation", + "math": "Bool::DisplayNameAnnotation", + "string": "Bool::DisplayNameAnnotation", + "table": "Bool::DisplayNameAnnotation" + }, + "OrthographicFrustum": { + "bottomPlane": "Double::DisplayNameAnnotation::RangeAnnotationDouble::LinkEndAnnotation", + "farPlane": "Double::DisplayNameAnnotation::RangeAnnotationDouble::LinkEndAnnotation", + "leftPlane": "Double::DisplayNameAnnotation::RangeAnnotationDouble::LinkEndAnnotation", + "nearPlane": "Double::DisplayNameAnnotation::RangeAnnotationDouble::LinkEndAnnotation", + "rightPlane": "Double::DisplayNameAnnotation::RangeAnnotationDouble::LinkEndAnnotation", + "topPlane": "Double::DisplayNameAnnotation::RangeAnnotationDouble::LinkEndAnnotation" + }, + "ScissorOptions": { + "scissorEnable": "Bool::DisplayNameAnnotation", + "scissorRegion": "CameraViewport::DisplayNameAnnotation" + }, + "StencilOptions": { + "stencilFunc": "Int::DisplayNameAnnotation::EnumerationAnnotation", + "stencilMask": "Int::DisplayNameAnnotation::RangeAnnotationInt", + "stencilOpDepthFail": "Int::DisplayNameAnnotation::EnumerationAnnotation", + "stencilOpDepthSucc": "Int::DisplayNameAnnotation::EnumerationAnnotation", + "stencilOpStencilFail": "Int::DisplayNameAnnotation::EnumerationAnnotation", + "stencilRef": "Int::DisplayNameAnnotation::RangeAnnotationInt" + }, + "TimerInput": { + "ticker_us": "Int64::DisplayNameAnnotation::LinkEndAnnotation" + }, + "TimerOutput": { + "ticker_us": "Int64::DisplayNameAnnotation::LinkStartAnnotation" + }, + "Vec2f": { + "x": "Double::DisplayNameAnnotation::RangeAnnotationDouble", + "y": "Double::DisplayNameAnnotation::RangeAnnotationDouble" + }, + "Vec2i": { + "i1": "Int::DisplayNameAnnotation::RangeAnnotationInt", + "i2": "Int::DisplayNameAnnotation::RangeAnnotationInt" + }, + "Vec3f": { + "x": "Double::DisplayNameAnnotation::RangeAnnotationDouble", + "y": "Double::DisplayNameAnnotation::RangeAnnotationDouble", + "z": "Double::DisplayNameAnnotation::RangeAnnotationDouble" + }, + "Vec3i": { + "i1": "Int::DisplayNameAnnotation::RangeAnnotationInt", + "i2": "Int::DisplayNameAnnotation::RangeAnnotationInt", + "i3": "Int::DisplayNameAnnotation::RangeAnnotationInt" + }, + "Vec4f": { + "w": "Double::DisplayNameAnnotation::RangeAnnotationDouble", + "x": "Double::DisplayNameAnnotation::RangeAnnotationDouble", + "y": "Double::DisplayNameAnnotation::RangeAnnotationDouble", + "z": "Double::DisplayNameAnnotation::RangeAnnotationDouble" + }, + "Vec4i": { + "i1": "Int::DisplayNameAnnotation::RangeAnnotationInt", + "i2": "Int::DisplayNameAnnotation::RangeAnnotationInt", + "i3": "Int::DisplayNameAnnotation::RangeAnnotationInt", + "i4": "Int::DisplayNameAnnotation::RangeAnnotationInt" + } + }, + "userTypePropMap": { + "AnchorPoint": { + "camera": "BaseCamera::DisplayNameAnnotation", + "children": "Table::ArraySemanticAnnotation::HiddenProperty", + "node": "Node::DisplayNameAnnotation", + "objectID": "String::HiddenProperty", + "objectName": "String::DisplayNameAnnotation", + "outputs": "AnchorPointOutputs::DisplayNameAnnotation", + "userTags": "Table::ArraySemanticAnnotation::HiddenProperty::UserTagContainerAnnotation::DisplayNameAnnotation" + }, + "Animation": { + "animationChannels": "Table::DisplayNameAnnotation", + "children": "Table::ArraySemanticAnnotation::HiddenProperty", + "objectID": "String::HiddenProperty", + "objectName": "String::DisplayNameAnnotation", + "outputs": "Table::DisplayNameAnnotation", + "progress": "Double::DisplayNameAnnotation::RangeAnnotationDouble::LinkEndAnnotation", + "userTags": "Table::ArraySemanticAnnotation::HiddenProperty::UserTagContainerAnnotation::DisplayNameAnnotation" + }, + "AnimationChannel": { + "animationIndex": "Int::DisplayNameAnnotation", + "children": "Table::ArraySemanticAnnotation::HiddenProperty", + "objectID": "String::HiddenProperty", + "objectName": "String::DisplayNameAnnotation", + "samplerIndex": "Int::DisplayNameAnnotation", + "uri": "String::URIAnnotation::DisplayNameAnnotation", + "userTags": "Table::ArraySemanticAnnotation::HiddenProperty::UserTagContainerAnnotation::DisplayNameAnnotation" + }, + "BlitPass": { + "children": "Table::ArraySemanticAnnotation::HiddenProperty", + "destinationX": "Int::RangeAnnotationInt::DisplayNameAnnotation", + "destinationY": "Int::RangeAnnotationInt::DisplayNameAnnotation", + "enabled": "Bool::DisplayNameAnnotation", + "height": "Int::RangeAnnotationInt::DisplayNameAnnotation", + "objectID": "String::HiddenProperty", + "objectName": "String::DisplayNameAnnotation", + "renderOrder": "Int::DisplayNameAnnotation", + "sourceRenderBuffer": "RenderBuffer::DisplayNameAnnotation::EmptyReferenceAllowable", + "sourceRenderBufferMS": "RenderBufferMS::DisplayNameAnnotation::EmptyReferenceAllowable", + "sourceX": "Int::RangeAnnotationInt::DisplayNameAnnotation", + "sourceY": "Int::RangeAnnotationInt::DisplayNameAnnotation", + "targetRenderBuffer": "RenderBuffer::DisplayNameAnnotation::EmptyReferenceAllowable", + "targetRenderBufferMS": "RenderBufferMS::DisplayNameAnnotation::EmptyReferenceAllowable", + "userTags": "Table::ArraySemanticAnnotation::HiddenProperty::UserTagContainerAnnotation::DisplayNameAnnotation", + "width": "Int::RangeAnnotationInt::DisplayNameAnnotation" + }, + "CubeMap": { + "anisotropy": "Int::DisplayNameAnnotation::RangeAnnotationInt", + "children": "Table::ArraySemanticAnnotation::HiddenProperty", + "generateMipmaps": "Bool::DisplayNameAnnotation", + "level2uriBack": "String::URIAnnotation::DisplayNameAnnotation", + "level2uriBottom": "String::URIAnnotation::DisplayNameAnnotation", + "level2uriFront": "String::URIAnnotation::DisplayNameAnnotation", + "level2uriLeft": "String::URIAnnotation::DisplayNameAnnotation", + "level2uriRight": "String::URIAnnotation::DisplayNameAnnotation", + "level2uriTop": "String::URIAnnotation::DisplayNameAnnotation", + "level3uriBack": "String::URIAnnotation::DisplayNameAnnotation", + "level3uriBottom": "String::URIAnnotation::DisplayNameAnnotation", + "level3uriFront": "String::URIAnnotation::DisplayNameAnnotation", + "level3uriLeft": "String::URIAnnotation::DisplayNameAnnotation", + "level3uriRight": "String::URIAnnotation::DisplayNameAnnotation", + "level3uriTop": "String::URIAnnotation::DisplayNameAnnotation", + "level4uriBack": "String::URIAnnotation::DisplayNameAnnotation", + "level4uriBottom": "String::URIAnnotation::DisplayNameAnnotation", + "level4uriFront": "String::URIAnnotation::DisplayNameAnnotation", + "level4uriLeft": "String::URIAnnotation::DisplayNameAnnotation", + "level4uriRight": "String::URIAnnotation::DisplayNameAnnotation", + "level4uriTop": "String::URIAnnotation::DisplayNameAnnotation", + "magSamplingMethod": "Int::DisplayNameAnnotation::EnumerationAnnotation", + "minSamplingMethod": "Int::DisplayNameAnnotation::EnumerationAnnotation", + "mipmapLevel": "Int::DisplayNameAnnotation::RangeAnnotationInt", + "objectID": "String::HiddenProperty", + "objectName": "String::DisplayNameAnnotation", + "textureFormat": "Int::DisplayNameAnnotation::EnumerationAnnotation", + "uriBack": "String::URIAnnotation::DisplayNameAnnotation", + "uriBottom": "String::URIAnnotation::DisplayNameAnnotation", + "uriFront": "String::URIAnnotation::DisplayNameAnnotation", + "uriLeft": "String::URIAnnotation::DisplayNameAnnotation", + "uriRight": "String::URIAnnotation::DisplayNameAnnotation", + "uriTop": "String::URIAnnotation::DisplayNameAnnotation", + "userTags": "Table::ArraySemanticAnnotation::HiddenProperty::UserTagContainerAnnotation::DisplayNameAnnotation", + "wrapUMode": "Int::DisplayNameAnnotation::EnumerationAnnotation", + "wrapVMode": "Int::DisplayNameAnnotation::EnumerationAnnotation" + }, + "LuaInterface": { + "children": "Table::ArraySemanticAnnotation::HiddenProperty", + "inputs": "Table::DisplayNameAnnotation::LinkStartAnnotation::LinkEndAnnotation", + "luaModules": "Table::DisplayNameAnnotation::FeatureLevel", + "objectID": "String::HiddenProperty", + "objectName": "String::DisplayNameAnnotation", + "stdModules": "LuaStandardModuleSelection::DisplayNameAnnotation::FeatureLevel", + "uri": "String::URIAnnotation::DisplayNameAnnotation", + "userTags": "Table::ArraySemanticAnnotation::HiddenProperty::UserTagContainerAnnotation::DisplayNameAnnotation" + }, + "LuaScript": { + "children": "Table::ArraySemanticAnnotation::HiddenProperty", + "inputs": "Table::DisplayNameAnnotation::LinkEndAnnotation", + "luaModules": "Table::DisplayNameAnnotation", + "objectID": "String::HiddenProperty", + "objectName": "String::DisplayNameAnnotation", + "outputs": "Table::DisplayNameAnnotation", + "stdModules": "LuaStandardModuleSelection::DisplayNameAnnotation", + "uri": "String::URIAnnotation::DisplayNameAnnotation", + "userTags": "Table::ArraySemanticAnnotation::HiddenProperty::UserTagContainerAnnotation::DisplayNameAnnotation" + }, + "LuaScriptModule": { + "children": "Table::ArraySemanticAnnotation::HiddenProperty", + "objectID": "String::HiddenProperty", + "objectName": "String::DisplayNameAnnotation", + "stdModules": "LuaStandardModuleSelection::DisplayNameAnnotation", + "uri": "String::URIAnnotation::DisplayNameAnnotation", + "userTags": "Table::ArraySemanticAnnotation::HiddenProperty::UserTagContainerAnnotation::DisplayNameAnnotation" + }, + "Material": { + "children": "Table::ArraySemanticAnnotation::HiddenProperty", + "objectID": "String::HiddenProperty", + "objectName": "String::DisplayNameAnnotation", + "options": "BlendOptions::DisplayNameAnnotation", + "tags": "Table::ArraySemanticAnnotation::HiddenProperty::TagContainerAnnotation::DisplayNameAnnotation", + "uniforms": "Table::DisplayNameAnnotation", + "uriDefines": "String::URIAnnotation::DisplayNameAnnotation", + "uriFragment": "String::URIAnnotation::DisplayNameAnnotation", + "uriGeometry": "String::URIAnnotation::DisplayNameAnnotation", + "uriVertex": "String::URIAnnotation::DisplayNameAnnotation", + "userTags": "Table::ArraySemanticAnnotation::HiddenProperty::UserTagContainerAnnotation::DisplayNameAnnotation" + }, + "Mesh": { + "bakeMeshes": "Bool::DisplayNameAnnotation", + "children": "Table::ArraySemanticAnnotation::HiddenProperty", + "materialNames": "Table::ArraySemanticAnnotation::HiddenProperty", + "meshIndex": "Int::DisplayNameAnnotation", + "objectID": "String::HiddenProperty", + "objectName": "String::DisplayNameAnnotation", + "uri": "String::URIAnnotation::DisplayNameAnnotation", + "userTags": "Table::ArraySemanticAnnotation::HiddenProperty::UserTagContainerAnnotation::DisplayNameAnnotation" + }, + "MeshNode": { + "children": "Table::ArraySemanticAnnotation::HiddenProperty", + "enabled": "Bool::DisplayNameAnnotation::LinkEndAnnotation::FeatureLevel", + "instanceCount": "Int::RangeAnnotationInt::DisplayNameAnnotation::LinkEndAnnotation", + "materials": "Table::DisplayNameAnnotation", + "mesh": "Mesh::DisplayNameAnnotation", + "objectID": "String::HiddenProperty", + "objectName": "String::DisplayNameAnnotation", + "rotation": "Vec3f::DisplayNameAnnotation::LinkEndAnnotation", + "scaling": "Vec3f::DisplayNameAnnotation::LinkEndAnnotation", + "tags": "Table::ArraySemanticAnnotation::HiddenProperty::TagContainerAnnotation::DisplayNameAnnotation", + "translation": "Vec3f::DisplayNameAnnotation::LinkEndAnnotation", + "userTags": "Table::ArraySemanticAnnotation::HiddenProperty::UserTagContainerAnnotation::DisplayNameAnnotation", + "visibility": "Bool::DisplayNameAnnotation::LinkEndAnnotation" + }, + "Node": { + "children": "Table::ArraySemanticAnnotation::HiddenProperty", + "enabled": "Bool::DisplayNameAnnotation::LinkEndAnnotation::FeatureLevel", + "objectID": "String::HiddenProperty", + "objectName": "String::DisplayNameAnnotation", + "rotation": "Vec3f::DisplayNameAnnotation::LinkEndAnnotation", + "scaling": "Vec3f::DisplayNameAnnotation::LinkEndAnnotation", + "tags": "Table::ArraySemanticAnnotation::HiddenProperty::TagContainerAnnotation::DisplayNameAnnotation", + "translation": "Vec3f::DisplayNameAnnotation::LinkEndAnnotation", + "userTags": "Table::ArraySemanticAnnotation::HiddenProperty::UserTagContainerAnnotation::DisplayNameAnnotation", + "visibility": "Bool::DisplayNameAnnotation::LinkEndAnnotation" + }, + "OrthographicCamera": { + "children": "Table::ArraySemanticAnnotation::HiddenProperty", + "enabled": "Bool::DisplayNameAnnotation::LinkEndAnnotation::FeatureLevel", + "frustum": "OrthographicFrustum::DisplayNameAnnotation::LinkEndAnnotation", + "objectID": "String::HiddenProperty", + "objectName": "String::DisplayNameAnnotation", + "rotation": "Vec3f::DisplayNameAnnotation::LinkEndAnnotation", + "scaling": "Vec3f::DisplayNameAnnotation::LinkEndAnnotation", + "tags": "Table::ArraySemanticAnnotation::HiddenProperty::TagContainerAnnotation::DisplayNameAnnotation", + "translation": "Vec3f::DisplayNameAnnotation::LinkEndAnnotation", + "userTags": "Table::ArraySemanticAnnotation::HiddenProperty::UserTagContainerAnnotation::DisplayNameAnnotation", + "viewport": "CameraViewport::DisplayNameAnnotation::LinkEndAnnotation", + "visibility": "Bool::DisplayNameAnnotation::LinkEndAnnotation" + }, + "PerspectiveCamera": { + "children": "Table::ArraySemanticAnnotation::HiddenProperty", + "enabled": "Bool::DisplayNameAnnotation::LinkEndAnnotation::FeatureLevel", + "frustum": "Table::DisplayNameAnnotation::LinkEndAnnotation", + "frustumType": "Int::DisplayNameAnnotation::EnumerationAnnotation::FeatureLevel", + "objectID": "String::HiddenProperty", + "objectName": "String::DisplayNameAnnotation", + "rotation": "Vec3f::DisplayNameAnnotation::LinkEndAnnotation", + "scaling": "Vec3f::DisplayNameAnnotation::LinkEndAnnotation", + "tags": "Table::ArraySemanticAnnotation::HiddenProperty::TagContainerAnnotation::DisplayNameAnnotation", + "translation": "Vec3f::DisplayNameAnnotation::LinkEndAnnotation", + "userTags": "Table::ArraySemanticAnnotation::HiddenProperty::UserTagContainerAnnotation::DisplayNameAnnotation", + "viewport": "CameraViewport::DisplayNameAnnotation::LinkEndAnnotation", + "visibility": "Bool::DisplayNameAnnotation::LinkEndAnnotation" + }, + "Prefab": { + "children": "Table::ArraySemanticAnnotation::HiddenProperty", + "objectID": "String::HiddenProperty", + "objectName": "String::DisplayNameAnnotation", + "userTags": "Table::ArraySemanticAnnotation::HiddenProperty::UserTagContainerAnnotation::DisplayNameAnnotation" + }, + "PrefabInstance": { + "children": "Table::ArraySemanticAnnotation::HiddenProperty", + "enabled": "Bool::DisplayNameAnnotation::LinkEndAnnotation::FeatureLevel", + "objectID": "String::HiddenProperty", + "objectName": "String::DisplayNameAnnotation", + "rotation": "Vec3f::DisplayNameAnnotation::LinkEndAnnotation", + "scaling": "Vec3f::DisplayNameAnnotation::LinkEndAnnotation", + "tags": "Table::ArraySemanticAnnotation::HiddenProperty::TagContainerAnnotation::DisplayNameAnnotation", + "template": "Prefab::DisplayNameAnnotation", + "translation": "Vec3f::DisplayNameAnnotation::LinkEndAnnotation", + "userTags": "Table::ArraySemanticAnnotation::HiddenProperty::UserTagContainerAnnotation::DisplayNameAnnotation", + "visibility": "Bool::DisplayNameAnnotation::LinkEndAnnotation" + }, + "ProjectSettings": { + "backgroundColor": "Vec4f::DisplayNameAnnotation", + "children": "Table::ArraySemanticAnnotation::HiddenProperty", + "defaultResourceFolders": "DefaultResourceDirectories::DisplayNameAnnotation", + "featureLevel": "Int::DisplayNameAnnotation::ReadOnlyAnnotation", + "objectID": "String::HiddenProperty", + "objectName": "String::DisplayNameAnnotation", + "saveAsZip": "Bool::DisplayNameAnnotation", + "sceneId": "Int::DisplayNameAnnotation::RangeAnnotationInt", + "userTags": "Table::ArraySemanticAnnotation::HiddenProperty::UserTagContainerAnnotation::DisplayNameAnnotation", + "viewport": "Vec2i::DisplayNameAnnotation" + }, + "RenderBuffer": { + "anisotropy": "Int::DisplayNameAnnotation::RangeAnnotationInt", + "children": "Table::ArraySemanticAnnotation::HiddenProperty", + "format": "Int::DisplayNameAnnotation::EnumerationAnnotation", + "height": "Int::RangeAnnotationInt::DisplayNameAnnotation", + "magSamplingMethod": "Int::DisplayNameAnnotation::EnumerationAnnotation", + "minSamplingMethod": "Int::DisplayNameAnnotation::EnumerationAnnotation", + "objectID": "String::HiddenProperty", + "objectName": "String::DisplayNameAnnotation", + "userTags": "Table::ArraySemanticAnnotation::HiddenProperty::UserTagContainerAnnotation::DisplayNameAnnotation", + "width": "Int::RangeAnnotationInt::DisplayNameAnnotation", + "wrapUMode": "Int::DisplayNameAnnotation::EnumerationAnnotation", + "wrapVMode": "Int::DisplayNameAnnotation::EnumerationAnnotation" + }, + "RenderBufferMS": { + "children": "Table::ArraySemanticAnnotation::HiddenProperty", + "format": "Int::DisplayNameAnnotation::EnumerationAnnotation", + "height": "Int::RangeAnnotationInt::DisplayNameAnnotation", + "objectID": "String::HiddenProperty", + "objectName": "String::DisplayNameAnnotation", + "sampleCount": "Int::RangeAnnotationInt::DisplayNameAnnotation", + "userTags": "Table::ArraySemanticAnnotation::HiddenProperty::UserTagContainerAnnotation::DisplayNameAnnotation", + "width": "Int::RangeAnnotationInt::DisplayNameAnnotation" + }, + "RenderLayer": { + "children": "Table::ArraySemanticAnnotation::HiddenProperty", + "materialFilterMode": "Int::DisplayNameAnnotation::EnumerationAnnotation", + "materialFilterTags": "Table::ArraySemanticAnnotation::HiddenProperty::TagContainerAnnotation::DisplayNameAnnotation", + "objectID": "String::HiddenProperty", + "objectName": "String::DisplayNameAnnotation", + "renderableTags": "Table::RenderableTagContainerAnnotation::DisplayNameAnnotation", + "sortOrder": "Int::DisplayNameAnnotation::EnumerationAnnotation", + "tags": "Table::ArraySemanticAnnotation::HiddenProperty::TagContainerAnnotation::DisplayNameAnnotation", + "userTags": "Table::ArraySemanticAnnotation::HiddenProperty::UserTagContainerAnnotation::DisplayNameAnnotation" + }, + "RenderPass": { + "camera": "BaseCamera::DisplayNameAnnotation", + "children": "Table::ArraySemanticAnnotation::HiddenProperty", + "clearColor": "Vec4f::DisplayNameAnnotation::LinkEndAnnotation", + "enableClearColor": "Bool::DisplayNameAnnotation", + "enableClearDepth": "Bool::DisplayNameAnnotation", + "enableClearStencil": "Bool::DisplayNameAnnotation", + "enabled": "Bool::DisplayNameAnnotation::LinkEndAnnotation", + "layer0": "RenderLayer::DisplayNameAnnotation", + "layer1": "RenderLayer::DisplayNameAnnotation::EmptyReferenceAllowable", + "layer2": "RenderLayer::DisplayNameAnnotation::EmptyReferenceAllowable", + "layer3": "RenderLayer::DisplayNameAnnotation::EmptyReferenceAllowable", + "layer4": "RenderLayer::DisplayNameAnnotation::EmptyReferenceAllowable", + "layer5": "RenderLayer::DisplayNameAnnotation::EmptyReferenceAllowable", + "layer6": "RenderLayer::DisplayNameAnnotation::EmptyReferenceAllowable", + "layer7": "RenderLayer::DisplayNameAnnotation::EmptyReferenceAllowable", + "objectID": "String::HiddenProperty", + "objectName": "String::DisplayNameAnnotation", + "renderOnce": "Bool::DisplayNameAnnotation::LinkEndAnnotation::FeatureLevel", + "renderOrder": "Int::DisplayNameAnnotation::LinkEndAnnotation", + "target": "RenderTarget::DisplayNameAnnotation::EmptyReferenceAllowable", + "userTags": "Table::ArraySemanticAnnotation::HiddenProperty::UserTagContainerAnnotation::DisplayNameAnnotation" + }, + "RenderTarget": { + "buffer0": "RenderBuffer::DisplayNameAnnotation::EmptyReferenceAllowable", + "buffer1": "RenderBuffer::DisplayNameAnnotation::EmptyReferenceAllowable", + "buffer2": "RenderBuffer::DisplayNameAnnotation::EmptyReferenceAllowable", + "buffer3": "RenderBuffer::DisplayNameAnnotation::EmptyReferenceAllowable", + "buffer4": "RenderBuffer::DisplayNameAnnotation::EmptyReferenceAllowable", + "buffer5": "RenderBuffer::DisplayNameAnnotation::EmptyReferenceAllowable", + "buffer6": "RenderBuffer::DisplayNameAnnotation::EmptyReferenceAllowable", + "buffer7": "RenderBuffer::DisplayNameAnnotation::EmptyReferenceAllowable", + "bufferMS0": "RenderBufferMS::DisplayNameAnnotation::EmptyReferenceAllowable", + "bufferMS1": "RenderBufferMS::DisplayNameAnnotation::EmptyReferenceAllowable", + "bufferMS2": "RenderBufferMS::DisplayNameAnnotation::EmptyReferenceAllowable", + "bufferMS3": "RenderBufferMS::DisplayNameAnnotation::EmptyReferenceAllowable", + "bufferMS4": "RenderBufferMS::DisplayNameAnnotation::EmptyReferenceAllowable", + "bufferMS5": "RenderBufferMS::DisplayNameAnnotation::EmptyReferenceAllowable", + "bufferMS6": "RenderBufferMS::DisplayNameAnnotation::EmptyReferenceAllowable", + "bufferMS7": "RenderBufferMS::DisplayNameAnnotation::EmptyReferenceAllowable", + "children": "Table::ArraySemanticAnnotation::HiddenProperty", + "objectID": "String::HiddenProperty", + "objectName": "String::DisplayNameAnnotation", + "userTags": "Table::ArraySemanticAnnotation::HiddenProperty::UserTagContainerAnnotation::DisplayNameAnnotation" + }, + "Skin": { + "children": "Table::ArraySemanticAnnotation::HiddenProperty", + "joints": "Table::DisplayNameAnnotation", + "objectID": "String::HiddenProperty", + "objectName": "String::DisplayNameAnnotation", + "skinIndex": "Int::DisplayNameAnnotation", + "targets": "Table::DisplayNameAnnotation", + "uri": "String::URIAnnotation::DisplayNameAnnotation", + "userTags": "Table::ArraySemanticAnnotation::HiddenProperty::UserTagContainerAnnotation::DisplayNameAnnotation" + }, + "Texture": { + "anisotropy": "Int::DisplayNameAnnotation::RangeAnnotationInt", + "children": "Table::ArraySemanticAnnotation::HiddenProperty", + "flipTexture": "Bool::DisplayNameAnnotation", + "generateMipmaps": "Bool::DisplayNameAnnotation", + "level2uri": "String::URIAnnotation::DisplayNameAnnotation", + "level3uri": "String::URIAnnotation::DisplayNameAnnotation", + "level4uri": "String::URIAnnotation::DisplayNameAnnotation", + "magSamplingMethod": "Int::DisplayNameAnnotation::EnumerationAnnotation", + "minSamplingMethod": "Int::DisplayNameAnnotation::EnumerationAnnotation", + "mipmapLevel": "Int::DisplayNameAnnotation::RangeAnnotationInt", + "objectID": "String::HiddenProperty", + "objectName": "String::DisplayNameAnnotation", + "textureFormat": "Int::DisplayNameAnnotation::EnumerationAnnotation", + "uri": "String::URIAnnotation::DisplayNameAnnotation", + "userTags": "Table::ArraySemanticAnnotation::HiddenProperty::UserTagContainerAnnotation::DisplayNameAnnotation", + "wrapUMode": "Int::DisplayNameAnnotation::EnumerationAnnotation", + "wrapVMode": "Int::DisplayNameAnnotation::EnumerationAnnotation" + }, + "TextureExternal": { + "children": "Table::ArraySemanticAnnotation::HiddenProperty", + "magSamplingMethod": "Int::DisplayNameAnnotation::EnumerationAnnotation", + "minSamplingMethod": "Int::DisplayNameAnnotation::EnumerationAnnotation", + "objectID": "String::HiddenProperty", + "objectName": "String::DisplayNameAnnotation", + "userTags": "Table::ArraySemanticAnnotation::HiddenProperty::UserTagContainerAnnotation::DisplayNameAnnotation" + }, + "Timer": { + "children": "Table::ArraySemanticAnnotation::HiddenProperty", + "inputs": "TimerInput::DisplayNameAnnotation", + "objectID": "String::HiddenProperty", + "objectName": "String::DisplayNameAnnotation", + "outputs": "TimerOutput::DisplayNameAnnotation", + "userTags": "Table::ArraySemanticAnnotation::HiddenProperty::UserTagContainerAnnotation::DisplayNameAnnotation" + } + } +}