@haiyue/extensions 0.1.0 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +25 -0
- package/dist/animation/Animation2DComponent.d.ts +18 -0
- package/dist/animation/Animation2DExtensionRegistry.d.ts +7 -0
- package/dist/animation/Animation2DRenderSystem.d.ts +6 -0
- package/dist/animation/Animation2DRuntime.d.ts +6 -2
- package/dist/animation/AnimationTextRasterizer.d.ts +4 -0
- package/dist/animation/AnimationVisual2D.d.ts +58 -2
- package/dist/animation/interaction/InteractionRuntime.d.ts +83 -0
- package/dist/animation/interaction/runtime-types.d.ts +257 -0
- package/dist/animation.d.ts +3 -1
- package/dist/animation.js +551 -59
- package/dist/animation3d.js +1 -1
- package/dist/canvas-text.js +1 -1
- package/dist/chunks/2d-ui-animation-2d.generated-FpziAeGJ.js +4 -0
- package/dist/chunks/2d-ui-indexed-sprite.generated-DmKR0CC3.js +4 -0
- package/dist/chunks/Animation2DStateMachine-BHcA6Cu3.js +18212 -0
- package/dist/chunks/{AnimationStateMachineController-BIcAh-sT.js → AnimationStateMachineController-4sKaqh9E.js} +2 -2
- package/dist/chunks/AnimationVisual2D-8y3qp0_U.js +230 -0
- package/dist/chunks/{RenderSystem2DBase-DDT61dAu.js → RenderSystem2DBase-CF2s00vg.js} +2 -2
- package/dist/controls/VirtualJoystickControls.d.ts +46 -0
- package/dist/controls/contracts.d.ts +91 -0
- package/dist/controls.d.ts +2 -0
- package/dist/controls.js +358 -0
- package/dist/deformable-animation/runtime/DeformableMesh2DRuntimeExtension.d.ts +11 -0
- package/dist/deformable-animation/runtime/DeformableMesh2DSampler.d.ts +11 -0
- package/dist/deformable-animation.d.ts +5 -0
- package/dist/deformable-animation.js +316 -0
- package/dist/experimental-indexed-sprite.d.ts +5 -0
- package/dist/experimental-indexed-sprite.js +482 -0
- package/dist/gltf-worker-runtime.js +9 -9
- package/dist/hya-state-machine.js +3 -2
- package/dist/index.js +1 -1
- package/dist/indexed-sprite/AtlasLayout.d.ts +2 -0
- package/dist/indexed-sprite/IndexedSpriteRenderer.d.ts +23 -0
- package/dist/indexed-sprite/contracts.d.ts +89 -0
- package/dist/internal/2d-ui-shader-artifact.js +232 -23
- package/dist/ray-tracing/acceleration/bvh.d.ts +37 -0
- package/dist/ray-tracing/acceleration/index.d.ts +6 -0
- package/dist/ray-tracing/acceleration/pack.d.ts +152 -0
- package/dist/ray-tracing/acceleration/query.d.ts +4 -0
- package/dist/ray-tracing/acceleration/runtime.d.ts +30 -0
- package/dist/ray-tracing/acceleration/tlas.d.ts +4 -0
- package/dist/ray-tracing/acceleration/types.d.ts +165 -0
- package/dist/ray-tracing/denoise/index.d.ts +3 -0
- package/dist/ray-tracing/denoise/layout.d.ts +9 -0
- package/dist/ray-tracing/denoise/runtime.d.ts +23 -0
- package/dist/ray-tracing/denoise/types.d.ts +28 -0
- package/dist/ray-tracing/hybrid/contract.d.ts +2 -0
- package/dist/ray-tracing/hybrid/index.d.ts +5 -0
- package/dist/ray-tracing/hybrid/layout.d.ts +17 -0
- package/dist/ray-tracing/hybrid/plan.d.ts +2 -0
- package/dist/ray-tracing/hybrid/runtime.d.ts +31 -0
- package/dist/ray-tracing/hybrid/shaders/hybrid-artifact.generated.d.ts +625 -0
- package/dist/ray-tracing/hybrid/types.d.ts +144 -0
- package/dist/ray-tracing/lifecycle/device-recovery.d.ts +31 -0
- package/dist/ray-tracing/lifecycle/index.d.ts +2 -0
- package/dist/ray-tracing/lifecycle/types.d.ts +37 -0
- package/dist/ray-tracing/material/index.d.ts +2 -0
- package/dist/ray-tracing/material/pack.d.ts +5 -0
- package/dist/ray-tracing/material/types.d.ts +63 -0
- package/dist/ray-tracing/reference/index.d.ts +122 -0
- package/dist/ray-tracing/renderer/index.d.ts +7 -0
- package/dist/ray-tracing/renderer/layout.d.ts +20 -0
- package/dist/ray-tracing/renderer/plan.d.ts +2 -0
- package/dist/ray-tracing/renderer/reference.d.ts +17 -0
- package/dist/ray-tracing/renderer/runtime.d.ts +39 -0
- package/dist/ray-tracing/renderer/scene.d.ts +4 -0
- package/dist/ray-tracing/renderer/types.d.ts +115 -0
- package/dist/ray-tracing/sampling/index.d.ts +8 -0
- package/dist/ray-tracing/sampling/layout.d.ts +12 -0
- package/dist/ray-tracing/sampling/plan.d.ts +5 -0
- package/dist/ray-tracing/sampling/revision.d.ts +15 -0
- package/dist/ray-tracing/sampling/runtime.d.ts +44 -0
- package/dist/ray-tracing/sampling/sequence.d.ts +2 -0
- package/dist/ray-tracing/sampling/types.d.ts +96 -0
- package/dist/ray-tracing/scene/index.d.ts +41 -0
- package/dist/ray-tracing/traversal/index.d.ts +4 -0
- package/dist/ray-tracing/traversal/layout.d.ts +16 -0
- package/dist/ray-tracing/traversal/plan.d.ts +2 -0
- package/dist/ray-tracing/traversal/runtime.d.ts +25 -0
- package/dist/ray-tracing/traversal/types.d.ts +79 -0
- package/dist/ray-tracing/worker/client.d.ts +25 -0
- package/dist/ray-tracing/worker/index.d.ts +5 -0
- package/dist/ray-tracing/worker/runtime.d.ts +11 -0
- package/dist/ray-tracing/worker/serialization.d.ts +16 -0
- package/dist/ray-tracing/worker/source.d.ts +1 -0
- package/dist/ray-tracing/worker/types.d.ts +91 -0
- package/dist/ray-tracing.d.ts +17 -0
- package/dist/ray-tracing.js +7666 -0
- package/dist/spine.js +1 -1
- package/dist/tilemap.js +1 -1
- package/package.json +26 -23
- package/dist/animation/Animation2DStateMachineVisualRuntime.d.ts +0 -27
- package/dist/animation/Particle2DDescriptorAdapter.d.ts +0 -5
- package/dist/animation3d/Animation3DResource.d.ts +0 -28
- package/dist/animation3d/hya/HyaAnimation3DStateMachineRuntime.d.ts +0 -65
- package/dist/animation3d/hya/index.d.ts +0 -4
- package/dist/animation3d/runtime/integration/Animation3DStateMachineMixerAdapter.d.ts +0 -81
- package/dist/animation3d/runtime/integration/Animation3DStateMachineMixerIntegration.d.ts +0 -39
- package/dist/animation3d/runtime/integration/index.d.ts +0 -2
- package/dist/animation3d/runtime/mixer/Action.d.ts +0 -150
- package/dist/animation3d/runtime/mixer/Animation3DMixerRuntimeStore.d.ts +0 -6
- package/dist/animation3d/runtime/mixer/Mixer.d.ts +0 -59
- package/dist/animation3d/runtime/mixer/PoseBuffer.d.ts +0 -1
- package/dist/animation3d/runtime/mixer/TrackSampler.d.ts +0 -24
- package/dist/animation3d/runtime/mixer/index.d.ts +0 -4
- package/dist/animation3d/runtime/state-machine/Animation3DBlendTreeWeights.d.ts +0 -1
- package/dist/animation3d/runtime/state-machine/Animation3DStateMachineCompiler.d.ts +0 -1
- package/dist/animation3d/runtime/state-machine/Animation3DStateMachineController.d.ts +0 -1
- package/dist/animation3d/runtime/state-machine/Animation3DStateMachineMixerPort.d.ts +0 -1
- package/dist/animation3d/runtime/state-machine/index.d.ts +0 -6
- package/dist/benchmark.d.ts +0 -30
- package/dist/chunks/2d-ui-animation-2d.generated-D4aHzFU2.js +0 -4
- package/dist/chunks/Animation2DStateMachine-9IonguNa.js +0 -3245
- package/dist/gltf/GltfAccessorReader.d.ts +0 -7
- package/dist/gltf/GltfDracoDecoder.d.ts +0 -4
- package/dist/gltf/GltfLoaderErrors.d.ts +0 -4
- package/dist/gltf/GltfMaterialDescriptor.d.ts +0 -23
- package/dist/gltf/GltfMaterialLoader.d.ts +0 -6
- package/dist/gltf-worker-runtime.d.ts +0 -7
- package/dist/plugins/pluginUtils.d.ts +0 -20
- package/dist/plugins.d.ts +0 -6
- package/dist/shaders/generated/2d-ui-artifact.generated.d.ts +0 -658
- package/dist/spine/Spine2DGpuRenderer.d.ts +0 -65
- package/dist/spine/Spine2DRuntime.d.ts +0 -103
- package/dist/spine/SpineAnimationBoneTimelines.d.ts +0 -8
- package/dist/spine/SpineFloatBuilder.d.ts +0 -15
- package/dist/spine/SpinePathConstraintSolver.d.ts +0 -32
- package/dist/spine/SpineSkeletonRuntime.d.ts +0 -185
- package/dist/spine/SpineSlotAnimation.d.ts +0 -17
- package/dist/spine/SpineTimelineRuntime.d.ts +0 -25
- package/dist/spine/SpineVertexBuilder.d.ts +0 -61
- package/dist/tilemap/Tilemap2DRenderer.d.ts +0 -24
- package/dist/utils/arrayAccess.d.ts +0 -4
- package/dist/utils/camera2d.d.ts +0 -12
- package/src/animation/Animation2DComponent.ts +0 -135
- package/src/animation/Animation2DExtensionRegistry.ts +0 -52
- package/src/animation/Animation2DRenderSystem.ts +0 -1026
- package/src/animation/Animation2DRuntime.ts +0 -1326
- package/src/animation/Animation2DStateMachine.ts +0 -39
- package/src/animation/Animation2DStateMachineComponent.ts +0 -228
- package/src/animation/Animation2DStateMachineRuntime.ts +0 -141
- package/src/animation/Animation2DStateMachineSystem.ts +0 -60
- package/src/animation/Animation2DStateMachineVisualRuntime.ts +0 -282
- package/src/animation/Animation2DSystem.ts +0 -72
- package/src/animation/AnimationAssetLoader.ts +0 -84
- package/src/animation/AnimationAudioClip.ts +0 -140
- package/src/animation/AnimationPathTessellator.ts +0 -691
- package/src/animation/AnimationTextRasterizer.ts +0 -340
- package/src/animation/AnimationVisual2D.ts +0 -153
- package/src/animation/HyaAnimation2DClipAdapter.ts +0 -845
- package/src/animation/Particle2DDescriptorAdapter.ts +0 -35
- package/src/animation/runtime/mixer/Action.ts +0 -876
- package/src/animation/runtime/mixer/Mixer.ts +0 -505
- package/src/animation/runtime/mixer/PoseBuffer.ts +0 -105
- package/src/animation/runtime/mixer/Sampler.ts +0 -252
- package/src/animation/runtime/mixer/Types.ts +0 -138
- package/src/animation/runtime/mixer/index.ts +0 -31
- package/src/animation-state-machine/AnimationStateMachine.ts +0 -146
- package/src/animation-state-machine/AnimationStateMachineChannels.ts +0 -116
- package/src/animation-state-machine/runtime/Animation2DStateMachineMixerAdapter.ts +0 -197
- package/src/animation-state-machine/runtime/AnimationStateMachineBlendTreeWeights.ts +0 -503
- package/src/animation-state-machine/runtime/AnimationStateMachineCompiler.ts +0 -763
- package/src/animation-state-machine/runtime/AnimationStateMachineController.ts +0 -987
- package/src/animation-state-machine/runtime/AnimationStateMachineMixerPort.ts +0 -54
- package/src/animation-state-machine/runtime/index.ts +0 -47
- package/src/animation.ts +0 -33
- package/src/animation3d/Animation3DAction.ts +0 -73
- package/src/animation3d/Animation3DBinding.ts +0 -116
- package/src/animation3d/Animation3DClip.ts +0 -22
- package/src/animation3d/Animation3DError.ts +0 -34
- package/src/animation3d/Animation3DMixer.ts +0 -82
- package/src/animation3d/Animation3DPose.ts +0 -100
- package/src/animation3d/Animation3DPoseBuffer.ts +0 -85
- package/src/animation3d/Animation3DResource.ts +0 -49
- package/src/animation3d/Animation3DStateMachine.ts +0 -126
- package/src/animation3d/Animation3DStateMachineRuntime.ts +0 -191
- package/src/animation3d/Animation3DTrack.ts +0 -29
- package/src/animation3d/hya/HyaAnimation3DRuntime.ts +0 -756
- package/src/animation3d/hya/HyaAnimation3DStateMachineRuntime.ts +0 -618
- package/src/animation3d/hya/HyaAnimation3DTypes.ts +0 -168
- package/src/animation3d/hya/index.ts +0 -10
- package/src/animation3d/index.ts +0 -76
- package/src/animation3d/runtime/integration/Animation3DStateMachineMixerAdapter.ts +0 -325
- package/src/animation3d/runtime/integration/Animation3DStateMachineMixerIntegration.ts +0 -158
- package/src/animation3d/runtime/integration/index.ts +0 -9
- package/src/animation3d/runtime/mixer/Action.ts +0 -833
- package/src/animation3d/runtime/mixer/Animation3DMixerRuntimeStore.ts +0 -26
- package/src/animation3d/runtime/mixer/Mixer.ts +0 -562
- package/src/animation3d/runtime/mixer/PoseBuffer.ts +0 -1
- package/src/animation3d/runtime/mixer/TrackSampler.ts +0 -399
- package/src/animation3d/runtime/mixer/index.ts +0 -8
- package/src/animation3d/runtime/state-machine/Animation3DBlendTreeWeights.ts +0 -4
- package/src/animation3d/runtime/state-machine/Animation3DStateMachineCompiler.ts +0 -1
- package/src/animation3d/runtime/state-machine/Animation3DStateMachineController.ts +0 -1
- package/src/animation3d/runtime/state-machine/Animation3DStateMachineMixerPort.ts +0 -1
- package/src/animation3d/runtime/state-machine/index.ts +0 -45
- package/src/animation3d.ts +0 -5
- package/src/benchmark.ts +0 -168
- package/src/canvas-text/CanvasText2DRenderSystem.ts +0 -292
- package/src/canvas-text/CanvasTextComponent.ts +0 -47
- package/src/canvas-text.ts +0 -4
- package/src/experimental-gltf-worker.ts +0 -18
- package/src/experimental-spine-worker.ts +0 -9
- package/src/gltf/GltfAccessorReader.ts +0 -271
- package/src/gltf/GltfAnimation3DAdapter.ts +0 -680
- package/src/gltf/GltfAnimationRuntime.ts +0 -392
- package/src/gltf/GltfAssetWorkerClient.ts +0 -136
- package/src/gltf/GltfCompatibilityReport.ts +0 -214
- package/src/gltf/GltfConservativeBounds.ts +0 -219
- package/src/gltf/GltfDracoDecoder.ts +0 -251
- package/src/gltf/GltfExtensionAdapter.ts +0 -340
- package/src/gltf/GltfLoaderContract.ts +0 -333
- package/src/gltf/GltfLoaderErrors.ts +0 -59
- package/src/gltf/GltfMaterialDescriptor.ts +0 -134
- package/src/gltf/GltfMaterialEncoder.ts +0 -173
- package/src/gltf/GltfMaterialLoader.ts +0 -293
- package/src/gltf/GltfModelComponent.ts +0 -115
- package/src/gltf/GltfModelSystem.ts +0 -208
- package/src/gltf/GltfPlugin.ts +0 -84
- package/src/gltf/GltfSchema.ts +0 -229
- package/src/gltf/GltfUvSemanticPlanner.ts +0 -166
- package/src/gltf/gltfLoader.ts +0 -910
- package/src/gltf-animation3d.ts +0 -10
- package/src/gltf-worker-runtime.ts +0 -10
- package/src/gltf.ts +0 -56
- package/src/grid/Grid2DComponent.ts +0 -69
- package/src/grid.ts +0 -2
- package/src/hya-state-machine.ts +0 -19
- package/src/index.ts +0 -2
- package/src/plugins/pluginUtils.ts +0 -50
- package/src/plugins.ts +0 -6
- package/src/shaders/generated/2d-ui-animation-2d.generated.wgsl +0 -242
- package/src/shaders/generated/2d-ui-artifact.generated.ts +0 -867
- package/src/shaders/generated/2d-ui-canvas-text-2d.generated.wgsl +0 -38
- package/src/shaders/generated/2d-ui-spine2d.generated.wgsl +0 -41
- package/src/shaders/generated/2d-ui-tilemap2d.generated.wgsl +0 -36
- package/src/spine/Spine2DComponent.ts +0 -168
- package/src/spine/Spine2DGpuRenderer.ts +0 -449
- package/src/spine/Spine2DRenderSystem.ts +0 -199
- package/src/spine/Spine2DRuntime.ts +0 -1529
- package/src/spine/SpineAnimationBoneTimelines.ts +0 -30
- package/src/spine/SpineAssetParser.ts +0 -20
- package/src/spine/SpineAssetWorkerClient.ts +0 -112
- package/src/spine/SpineAssetWorkerContract.ts +0 -4
- package/src/spine/SpineAtlasParser.ts +0 -127
- package/src/spine/SpineFloatBuilder.ts +0 -66
- package/src/spine/SpinePathConstraintSolver.ts +0 -582
- package/src/spine/SpinePlugin.ts +0 -76
- package/src/spine/SpineSkeletonRuntime.ts +0 -521
- package/src/spine/SpineSlotAnimation.ts +0 -195
- package/src/spine/SpineTimelineRuntime.ts +0 -453
- package/src/spine/SpineVertexBuilder.ts +0 -686
- package/src/spine.ts +0 -7
- package/src/tilemap/Tilemap2DComponent.ts +0 -232
- package/src/tilemap/Tilemap2DRenderSystem.ts +0 -58
- package/src/tilemap/Tilemap2DRenderer.ts +0 -289
- package/src/tilemap/TilemapPlugin.ts +0 -75
- package/src/tilemap.ts +0 -6
- package/src/tween/Tween2DComponent.ts +0 -83
- package/src/tween/Tween2DSystem.ts +0 -78
- package/src/tween.ts +0 -4
- package/src/types/earcut.d.ts +0 -7
- package/src/types/wgsl.d.ts +0 -4
- package/src/utils/RenderSystem2DBase.ts +0 -164
- package/src/utils/arrayAccess.ts +0 -17
- package/src/utils/camera2d.ts +0 -68
- package/src/utils/render2dGpu.ts +0 -132
- package/test/fixtures/gltf/animation-characterization.gltf +0 -344
|
@@ -1,344 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"asset": {
|
|
3
|
-
"version": "2.0",
|
|
4
|
-
"generator": "Haiyue glTF animation characterization corpus"
|
|
5
|
-
},
|
|
6
|
-
"scene": 0,
|
|
7
|
-
"scenes": [
|
|
8
|
-
{
|
|
9
|
-
"name": "AnimationCharacterizationScene",
|
|
10
|
-
"nodes": [0]
|
|
11
|
-
}
|
|
12
|
-
],
|
|
13
|
-
"nodes": [
|
|
14
|
-
{
|
|
15
|
-
"name": "SceneRoot",
|
|
16
|
-
"children": [1, 2, 3]
|
|
17
|
-
},
|
|
18
|
-
{
|
|
19
|
-
"name": "AnimatedTRS",
|
|
20
|
-
"translation": [1, 2, 3],
|
|
21
|
-
"rotation": [0, 0, 0.7071067811865476, 0.7071067811865476],
|
|
22
|
-
"scale": [1, 1, 1]
|
|
23
|
-
},
|
|
24
|
-
{
|
|
25
|
-
"name": "SkinnedMorph",
|
|
26
|
-
"mesh": 0,
|
|
27
|
-
"skin": 0
|
|
28
|
-
},
|
|
29
|
-
{
|
|
30
|
-
"name": "JointRoot",
|
|
31
|
-
"children": [4]
|
|
32
|
-
},
|
|
33
|
-
{
|
|
34
|
-
"name": "JointTip",
|
|
35
|
-
"translation": [0, 1, 0]
|
|
36
|
-
}
|
|
37
|
-
],
|
|
38
|
-
"meshes": [
|
|
39
|
-
{
|
|
40
|
-
"name": "CharacterTriangle",
|
|
41
|
-
"weights": [0.1, 0.2],
|
|
42
|
-
"primitives": [
|
|
43
|
-
{
|
|
44
|
-
"attributes": {
|
|
45
|
-
"POSITION": 0,
|
|
46
|
-
"JOINTS_0": 1,
|
|
47
|
-
"WEIGHTS_0": 2
|
|
48
|
-
},
|
|
49
|
-
"targets": [
|
|
50
|
-
{
|
|
51
|
-
"POSITION": 3
|
|
52
|
-
},
|
|
53
|
-
{
|
|
54
|
-
"POSITION": 4
|
|
55
|
-
}
|
|
56
|
-
]
|
|
57
|
-
}
|
|
58
|
-
]
|
|
59
|
-
}
|
|
60
|
-
],
|
|
61
|
-
"skins": [
|
|
62
|
-
{
|
|
63
|
-
"name": "TwoJointSkin",
|
|
64
|
-
"inverseBindMatrices": 5,
|
|
65
|
-
"skeleton": 3,
|
|
66
|
-
"joints": [3, 4]
|
|
67
|
-
}
|
|
68
|
-
],
|
|
69
|
-
"animations": [
|
|
70
|
-
{
|
|
71
|
-
"name": "Take",
|
|
72
|
-
"samplers": [
|
|
73
|
-
{
|
|
74
|
-
"input": 6,
|
|
75
|
-
"output": 7,
|
|
76
|
-
"interpolation": "LINEAR"
|
|
77
|
-
},
|
|
78
|
-
{
|
|
79
|
-
"input": 6,
|
|
80
|
-
"output": 8,
|
|
81
|
-
"interpolation": "STEP"
|
|
82
|
-
},
|
|
83
|
-
{
|
|
84
|
-
"input": 6,
|
|
85
|
-
"output": 9,
|
|
86
|
-
"interpolation": "CUBICSPLINE"
|
|
87
|
-
},
|
|
88
|
-
{
|
|
89
|
-
"input": 6,
|
|
90
|
-
"output": 10,
|
|
91
|
-
"interpolation": "LINEAR"
|
|
92
|
-
},
|
|
93
|
-
{
|
|
94
|
-
"input": 6,
|
|
95
|
-
"output": 11,
|
|
96
|
-
"interpolation": "LINEAR"
|
|
97
|
-
}
|
|
98
|
-
],
|
|
99
|
-
"channels": [
|
|
100
|
-
{
|
|
101
|
-
"sampler": 0,
|
|
102
|
-
"target": {
|
|
103
|
-
"node": 1,
|
|
104
|
-
"path": "translation"
|
|
105
|
-
}
|
|
106
|
-
},
|
|
107
|
-
{
|
|
108
|
-
"sampler": 1,
|
|
109
|
-
"target": {
|
|
110
|
-
"node": 1,
|
|
111
|
-
"path": "rotation"
|
|
112
|
-
}
|
|
113
|
-
},
|
|
114
|
-
{
|
|
115
|
-
"sampler": 2,
|
|
116
|
-
"target": {
|
|
117
|
-
"node": 1,
|
|
118
|
-
"path": "scale"
|
|
119
|
-
}
|
|
120
|
-
},
|
|
121
|
-
{
|
|
122
|
-
"sampler": 3,
|
|
123
|
-
"target": {
|
|
124
|
-
"node": 2,
|
|
125
|
-
"path": "weights"
|
|
126
|
-
}
|
|
127
|
-
},
|
|
128
|
-
{
|
|
129
|
-
"sampler": 4,
|
|
130
|
-
"target": {
|
|
131
|
-
"node": 4,
|
|
132
|
-
"path": "translation"
|
|
133
|
-
}
|
|
134
|
-
}
|
|
135
|
-
]
|
|
136
|
-
},
|
|
137
|
-
{
|
|
138
|
-
"name": "Take",
|
|
139
|
-
"samplers": [
|
|
140
|
-
{
|
|
141
|
-
"input": 6,
|
|
142
|
-
"output": 12,
|
|
143
|
-
"interpolation": "STEP"
|
|
144
|
-
}
|
|
145
|
-
],
|
|
146
|
-
"channels": [
|
|
147
|
-
{
|
|
148
|
-
"sampler": 0,
|
|
149
|
-
"target": {
|
|
150
|
-
"node": 1,
|
|
151
|
-
"path": "translation"
|
|
152
|
-
}
|
|
153
|
-
}
|
|
154
|
-
]
|
|
155
|
-
}
|
|
156
|
-
],
|
|
157
|
-
"buffers": [
|
|
158
|
-
{
|
|
159
|
-
"byteLength": 496,
|
|
160
|
-
"uri": "data:application/octet-stream;base64,AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAQAAAAEAAAABAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAACAPwAAAAAAAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAAAAAACAPwAAgD8AAAAAAAAAAAAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAIC/AAAAAAAAgD8AAAAAAACAPwAAgD8AAABAAABAQAAAQEAAAIBAAACgQAAAAAAAAAAA8wQ1P/MENT8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAAAAAACAPwAAgD8AAIA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAQEAAAIBAAAAAAAAAAAAAAAAAAACAPgAAQD8AAEA/AACAPgAAAAAAAIA/AAAAAAAAAAAAAEBAAAAAAAAAgD8AAABAAABAQAAAEEEAAABBAADgQA=="
|
|
161
|
-
}
|
|
162
|
-
],
|
|
163
|
-
"bufferViews": [
|
|
164
|
-
{
|
|
165
|
-
"name": "positions",
|
|
166
|
-
"buffer": 0,
|
|
167
|
-
"byteOffset": 0,
|
|
168
|
-
"byteLength": 36
|
|
169
|
-
},
|
|
170
|
-
{
|
|
171
|
-
"name": "joints",
|
|
172
|
-
"buffer": 0,
|
|
173
|
-
"byteOffset": 36,
|
|
174
|
-
"byteLength": 12
|
|
175
|
-
},
|
|
176
|
-
{
|
|
177
|
-
"name": "weights",
|
|
178
|
-
"buffer": 0,
|
|
179
|
-
"byteOffset": 48,
|
|
180
|
-
"byteLength": 48
|
|
181
|
-
},
|
|
182
|
-
{
|
|
183
|
-
"name": "morphX",
|
|
184
|
-
"buffer": 0,
|
|
185
|
-
"byteOffset": 96,
|
|
186
|
-
"byteLength": 36
|
|
187
|
-
},
|
|
188
|
-
{
|
|
189
|
-
"name": "morphY",
|
|
190
|
-
"buffer": 0,
|
|
191
|
-
"byteOffset": 132,
|
|
192
|
-
"byteLength": 36
|
|
193
|
-
},
|
|
194
|
-
{
|
|
195
|
-
"name": "inverseBindMatrices",
|
|
196
|
-
"buffer": 0,
|
|
197
|
-
"byteOffset": 168,
|
|
198
|
-
"byteLength": 128
|
|
199
|
-
},
|
|
200
|
-
{
|
|
201
|
-
"name": "times",
|
|
202
|
-
"buffer": 0,
|
|
203
|
-
"byteOffset": 296,
|
|
204
|
-
"byteLength": 8
|
|
205
|
-
},
|
|
206
|
-
{
|
|
207
|
-
"name": "translationLinear",
|
|
208
|
-
"buffer": 0,
|
|
209
|
-
"byteOffset": 304,
|
|
210
|
-
"byteLength": 24
|
|
211
|
-
},
|
|
212
|
-
{
|
|
213
|
-
"name": "rotationStep",
|
|
214
|
-
"buffer": 0,
|
|
215
|
-
"byteOffset": 328,
|
|
216
|
-
"byteLength": 32
|
|
217
|
-
},
|
|
218
|
-
{
|
|
219
|
-
"name": "scaleCubicSpline",
|
|
220
|
-
"buffer": 0,
|
|
221
|
-
"byteOffset": 360,
|
|
222
|
-
"byteLength": 72
|
|
223
|
-
},
|
|
224
|
-
{
|
|
225
|
-
"name": "morphLinear",
|
|
226
|
-
"buffer": 0,
|
|
227
|
-
"byteOffset": 432,
|
|
228
|
-
"byteLength": 16
|
|
229
|
-
},
|
|
230
|
-
{
|
|
231
|
-
"name": "jointLinear",
|
|
232
|
-
"buffer": 0,
|
|
233
|
-
"byteOffset": 448,
|
|
234
|
-
"byteLength": 24
|
|
235
|
-
},
|
|
236
|
-
{
|
|
237
|
-
"name": "translationStep",
|
|
238
|
-
"buffer": 0,
|
|
239
|
-
"byteOffset": 472,
|
|
240
|
-
"byteLength": 24
|
|
241
|
-
}
|
|
242
|
-
],
|
|
243
|
-
"accessors": [
|
|
244
|
-
{
|
|
245
|
-
"name": "POSITION",
|
|
246
|
-
"bufferView": 0,
|
|
247
|
-
"componentType": 5126,
|
|
248
|
-
"count": 3,
|
|
249
|
-
"type": "VEC3",
|
|
250
|
-
"min": [0, 0, 0],
|
|
251
|
-
"max": [1, 1, 0]
|
|
252
|
-
},
|
|
253
|
-
{
|
|
254
|
-
"name": "JOINTS_0",
|
|
255
|
-
"bufferView": 1,
|
|
256
|
-
"componentType": 5121,
|
|
257
|
-
"count": 3,
|
|
258
|
-
"type": "VEC4"
|
|
259
|
-
},
|
|
260
|
-
{
|
|
261
|
-
"name": "WEIGHTS_0",
|
|
262
|
-
"bufferView": 2,
|
|
263
|
-
"componentType": 5126,
|
|
264
|
-
"count": 3,
|
|
265
|
-
"type": "VEC4"
|
|
266
|
-
},
|
|
267
|
-
{
|
|
268
|
-
"name": "MorphX",
|
|
269
|
-
"bufferView": 3,
|
|
270
|
-
"componentType": 5126,
|
|
271
|
-
"count": 3,
|
|
272
|
-
"type": "VEC3",
|
|
273
|
-
"min": [1, 0, 0],
|
|
274
|
-
"max": [1, 0, 0]
|
|
275
|
-
},
|
|
276
|
-
{
|
|
277
|
-
"name": "MorphY",
|
|
278
|
-
"bufferView": 4,
|
|
279
|
-
"componentType": 5126,
|
|
280
|
-
"count": 3,
|
|
281
|
-
"type": "VEC3",
|
|
282
|
-
"min": [0, 1, 0],
|
|
283
|
-
"max": [0, 1, 0]
|
|
284
|
-
},
|
|
285
|
-
{
|
|
286
|
-
"name": "InverseBindMatrices",
|
|
287
|
-
"bufferView": 5,
|
|
288
|
-
"componentType": 5126,
|
|
289
|
-
"count": 2,
|
|
290
|
-
"type": "MAT4"
|
|
291
|
-
},
|
|
292
|
-
{
|
|
293
|
-
"name": "AnimationTimes",
|
|
294
|
-
"bufferView": 6,
|
|
295
|
-
"componentType": 5126,
|
|
296
|
-
"count": 2,
|
|
297
|
-
"type": "SCALAR",
|
|
298
|
-
"min": [0],
|
|
299
|
-
"max": [1]
|
|
300
|
-
},
|
|
301
|
-
{
|
|
302
|
-
"name": "TranslationLinear",
|
|
303
|
-
"bufferView": 7,
|
|
304
|
-
"componentType": 5126,
|
|
305
|
-
"count": 2,
|
|
306
|
-
"type": "VEC3"
|
|
307
|
-
},
|
|
308
|
-
{
|
|
309
|
-
"name": "RotationStep",
|
|
310
|
-
"bufferView": 8,
|
|
311
|
-
"componentType": 5126,
|
|
312
|
-
"count": 2,
|
|
313
|
-
"type": "VEC4"
|
|
314
|
-
},
|
|
315
|
-
{
|
|
316
|
-
"name": "ScaleCubicSpline",
|
|
317
|
-
"bufferView": 9,
|
|
318
|
-
"componentType": 5126,
|
|
319
|
-
"count": 6,
|
|
320
|
-
"type": "VEC3"
|
|
321
|
-
},
|
|
322
|
-
{
|
|
323
|
-
"name": "MorphLinear",
|
|
324
|
-
"bufferView": 10,
|
|
325
|
-
"componentType": 5126,
|
|
326
|
-
"count": 4,
|
|
327
|
-
"type": "SCALAR"
|
|
328
|
-
},
|
|
329
|
-
{
|
|
330
|
-
"name": "JointLinear",
|
|
331
|
-
"bufferView": 11,
|
|
332
|
-
"componentType": 5126,
|
|
333
|
-
"count": 2,
|
|
334
|
-
"type": "VEC3"
|
|
335
|
-
},
|
|
336
|
-
{
|
|
337
|
-
"name": "TranslationStep",
|
|
338
|
-
"bufferView": 12,
|
|
339
|
-
"componentType": 5126,
|
|
340
|
-
"count": 2,
|
|
341
|
-
"type": "VEC3"
|
|
342
|
-
}
|
|
343
|
-
]
|
|
344
|
-
}
|