x_ite 8.10.1 → 8.11.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/Makefile +3 -0
- package/build/bin/version.pl +28 -20
- package/build/docs/glTF-samples.pl +151 -0
- package/build/docs/nodes.pl +1 -1
- package/build/src/nodes.pl +41 -0
- package/dist/assets/components/Annotation.js +13 -13
- package/dist/assets/components/Annotation.min.js +1 -1
- package/dist/assets/components/CADGeometry.js +13 -13
- package/dist/assets/components/CADGeometry.min.js +1 -1
- package/dist/assets/components/CubeMapTexturing.js +30 -26
- package/dist/assets/components/CubeMapTexturing.min.js +1 -1
- package/dist/assets/components/DIS.js +14 -14
- package/dist/assets/components/DIS.min.js +1 -1
- package/dist/assets/components/EventUtilities.js +9 -9
- package/dist/assets/components/EventUtilities.min.js +1 -1
- package/dist/assets/components/Geometry2D.js +19 -19
- package/dist/assets/components/Geometry2D.min.js +1 -1
- package/dist/assets/components/Geospatial.js +33 -33
- package/dist/assets/components/Geospatial.min.js +1 -1
- package/dist/assets/components/HAnim.js +394 -30
- package/dist/assets/components/HAnim.min.js +1 -1
- package/dist/assets/components/KeyDeviceSensor.js +8 -8
- package/dist/assets/components/KeyDeviceSensor.min.js +1 -1
- package/dist/assets/components/Layout.js +26 -26
- package/dist/assets/components/Layout.min.js +1 -1
- package/dist/assets/components/NURBS.js +24 -24
- package/dist/assets/components/NURBS.min.js +1 -1
- package/dist/assets/components/ParticleSystems.js +73 -74
- package/dist/assets/components/ParticleSystems.min.js +1 -1
- package/dist/assets/components/Picking.js +18 -18
- package/dist/assets/components/Picking.min.js +1 -1
- package/dist/assets/components/RigidBodyPhysics.js +18 -18
- package/dist/assets/components/RigidBodyPhysics.min.js +1 -1
- package/dist/assets/components/Scripting.js +37 -37
- package/dist/assets/components/Scripting.min.js +1 -1
- package/dist/assets/components/Text.js +55 -63
- package/dist/assets/components/Text.min.js +1 -1
- package/dist/assets/components/TextureProjector.js +14 -14
- package/dist/assets/components/TextureProjector.min.js +1 -1
- package/dist/assets/components/Texturing3D.js +35 -31
- package/dist/assets/components/Texturing3D.min.js +1 -1
- package/dist/assets/components/VolumeRendering.js +20 -20
- package/dist/assets/components/VolumeRendering.min.js +1 -1
- package/dist/assets/components/X_ITE.js +9 -9
- package/dist/assets/components/X_ITE.min.js +1 -1
- package/dist/x_ite.css +1 -1
- package/dist/x_ite.js +1456 -844
- package/dist/x_ite.min.js +1 -1
- package/dist/x_ite.zip +0 -0
- package/docs/_config.yml +2 -2
- package/docs/_posts/components/Core/MetadataBoolean.md +6 -4
- package/docs/_posts/components/Core/MetadataDouble.md +6 -4
- package/docs/_posts/components/Core/MetadataFloat.md +6 -4
- package/docs/_posts/components/Core/MetadataInteger.md +6 -4
- package/docs/_posts/components/Core/MetadataSet.md +6 -4
- package/docs/_posts/components/Core/MetadataString.md +6 -4
- package/docs/_posts/components/DIS/DISEntityTypeMapping.md +1 -1
- package/docs/_posts/components/HAnim/HAnimMotion.md +48 -48
- package/docs/_posts/components/RigidBodyPhysics/Contact.md +1 -1
- package/docs/_posts/getting-started.md +45 -35
- package/docs/_posts/reference/browser-services.md +6 -0
- package/docs/_tabs/playground.html +215 -15
- package/docs/assets/css/style.scss +35 -2
- package/docs/assets/js/example.js +95 -3
- package/docs/laboratory/gltf-sample-viewer.html +603 -235
- package/package.json +2 -2
- package/src/assets/shaders/Types.glsl.js +4 -0
- package/src/assets/shaders/webgl1/include/Hatch.glsl.js +2 -3
- package/src/assets/shaders/webgl2/Compose.fs.js +29 -0
- package/src/assets/shaders/webgl2/Compose.vs.js +14 -0
- package/src/assets/shaders/webgl2/include/Fragment.glsl.js +24 -2
- package/src/assets/shaders/webgl2/include/Hatch.glsl.js +2 -3
- package/src/assets/shaders/webgl2/include/Stipple.glsl.js +5 -3
- package/src/bookmarks.js +92 -5
- package/src/examples.js +1 -0
- package/src/standard/Math/Numbers/Quaternion.js +191 -13
- package/src/standard/Math/Numbers/Rotation4.js +23 -0
- package/src/standard/Time/{MicroTime.js → Time.js} +21 -28
- package/src/x_ite/Base/X3DChildObject.js +5 -4
- package/src/x_ite/Browser/Core/BrowserOptions.js +71 -60
- package/src/x_ite/Browser/Core/Context.js +2 -2
- package/src/x_ite/Browser/Core/X3DCoreContext.js +6 -0
- package/src/x_ite/Browser/DOMIntegration.js +0 -17
- package/src/x_ite/Browser/Navigation/ExamineViewer.js +5 -4
- package/src/x_ite/Browser/Navigation/X3DFlyViewer.js +7 -4
- package/src/x_ite/Browser/Rendering/X3DRenderingContext.js +20 -15
- package/src/x_ite/Browser/Shaders/Shaders.js +19 -15
- package/src/x_ite/Browser/Text/X3DTextContext.js +16 -16
- package/src/x_ite/Browser/Time/X3DTimeContext.js +3 -2
- package/src/x_ite/Browser/VERSION.js +1 -1
- package/src/x_ite/Browser/VolumeRendering/VolumeMaterial.js +2 -2
- package/src/x_ite/Browser/X3DBrowser.js +1 -2
- package/src/x_ite/Browser/X3DBrowserContext.js +0 -5
- package/src/x_ite/Components/Core/MetadataBoolean.js +8 -1
- package/src/x_ite/Components/Core/MetadataDouble.js +8 -1
- package/src/x_ite/Components/Core/MetadataFloat.js +8 -1
- package/src/x_ite/Components/Core/MetadataInteger.js +8 -1
- package/src/x_ite/Components/Core/MetadataSet.js +8 -1
- package/src/x_ite/Components/Core/MetadataString.js +8 -1
- package/src/x_ite/Components/Core/X3DPrototypeInstance.js +9 -6
- package/src/x_ite/Components/CubeMapTexturing/ImageCubeMapTexture.js +2 -1
- package/src/x_ite/Components/DIS/DISEntityTypeMapping.js +1 -1
- package/src/x_ite/Components/EnvironmentalEffects/X3DBackgroundNode.js +5 -1
- package/src/x_ite/Components/Grouping/X3DGroupingNode.js +2 -0
- package/src/x_ite/Components/HAnim/HAnimHumanoid.js +34 -2
- package/src/x_ite/Components/HAnim/HAnimMotion.js +331 -15
- package/src/x_ite/Components/Lighting/DirectionalLight.js +1 -3
- package/src/x_ite/Components/Lighting/PointLight.js +1 -3
- package/src/x_ite/Components/Lighting/SpotLight.js +1 -3
- package/src/x_ite/Components/Networking/X3DUrlObject.js +5 -4
- package/src/x_ite/Components/ParticleSystems/ParticleSystem.js +47 -51
- package/src/x_ite/Components/Rendering/X3DGeometryNode.js +4 -2
- package/src/x_ite/Components/RigidBodyPhysics/Contact.js +1 -1
- package/src/x_ite/Components/Shaders/X3DProgrammableShaderObject.js +1 -1
- package/src/x_ite/Components/Shape/FillProperties.js +4 -0
- package/src/x_ite/Components/Shape/LineProperties.js +4 -0
- package/src/x_ite/Components/Shape/PointProperties.js +4 -0
- package/src/x_ite/Components/Shape/X3DMaterialNode.js +44 -20
- package/src/x_ite/Components/Sound/AudioClip.js +2 -1
- package/src/x_ite/Components/Text/X3DFontStyleNode.js +13 -23
- package/src/x_ite/Components/Texturing/ImageTexture.js +2 -1
- package/src/x_ite/Components/Texturing/MovieTexture.js +2 -1
- package/src/x_ite/Components/Texturing3D/ImageTextureAtlas.js +2 -1
- package/src/x_ite/Components/Time/TimeSensor.js +25 -24
- package/src/x_ite/Components/Time/X3DTimeDependentNode.js +5 -4
- package/src/x_ite/Execution/BindableList.js +3 -3
- package/src/x_ite/Execution/X3DScene.js +2 -0
- package/src/x_ite/Parser/XMLParser.js +12 -2
- package/src/x_ite/Rendering/MultiSampleFrameBuffer.js +264 -26
- package/src/x_ite/Rendering/PointingBuffer.js +5 -7
- package/src/x_ite/Rendering/TextureBuffer.js +6 -14
- package/src/x_ite/Rendering/X3DRenderObject.js +28 -28
- package/src/x_ite/X3D.js +0 -1
- package/src/x_ite/X3DCanvasElement.js +2 -0
- package/src/x_ite.html +23 -24
- package/x_ite.min.html +23 -24
- /package/build/{bin → docs}/tags.pl +0 -0
|
@@ -6,7 +6,21 @@ categories: [Laboratory]
|
|
|
6
6
|
tags: [glTF, Sample, Viewer]
|
|
7
7
|
---
|
|
8
8
|
<style>
|
|
9
|
+
#main {
|
|
10
|
+
padding: 0 !important;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
#main > .row {
|
|
14
|
+
height: 100%;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
#core-wrapper {
|
|
18
|
+
padding: 0 !important;
|
|
19
|
+
}
|
|
20
|
+
|
|
9
21
|
.post, .post-content {
|
|
22
|
+
margin: 0 !important;
|
|
23
|
+
padding: 0 !important;
|
|
10
24
|
height: 100%;
|
|
11
25
|
}
|
|
12
26
|
|
|
@@ -38,7 +52,7 @@ tags: [glTF, Sample, Viewer]
|
|
|
38
52
|
|
|
39
53
|
.viewer-row {
|
|
40
54
|
display: flex;
|
|
41
|
-
height: calc(100vh -
|
|
55
|
+
height: calc(100vh - 128px);
|
|
42
56
|
}
|
|
43
57
|
|
|
44
58
|
.viewer-column1 {
|
|
@@ -105,250 +119,588 @@ tags: [glTF, Sample, Viewer]
|
|
|
105
119
|
<div class="viewer-column2"></div>
|
|
106
120
|
</div>
|
|
107
121
|
|
|
122
|
+
<pre style="display: none;">
|
|
108
123
|
<script>
|
|
109
|
-
|
|
124
|
+
// TESTS_BEGIN
|
|
125
|
+
|
|
110
126
|
const models = [
|
|
111
|
-
"Animated Bee/
|
|
112
|
-
"Bonsai 1/Bonsai 1.gltf",
|
|
113
|
-
"Bus Stop 1/Bus Stop 1.gltf",
|
|
114
|
-
"NeilArmstrong/NeilArmstrong.glb",
|
|
115
|
-
"Walking Alien/Walking Alien.gltf",
|
|
116
|
-
"YetiWarrior/
|
|
127
|
+
"https://create3000.github.io/media/glTF/Animated Bee/Animated Bee.glb",
|
|
128
|
+
"https://create3000.github.io/media/glTF/Bonsai 1/Bonsai 1.gltf",
|
|
129
|
+
"https://create3000.github.io/media/glTF/Bus Stop 1/Bus Stop 1.gltf",
|
|
130
|
+
"https://create3000.github.io/media/glTF/NeilArmstrong/NeilArmstrong.glb",
|
|
131
|
+
"https://create3000.github.io/media/glTF/Walking Alien/Walking Alien.gltf",
|
|
132
|
+
"https://create3000.github.io/media/glTF/YetiWarrior/YetiWarrior.gltf",
|
|
117
133
|
];
|
|
118
134
|
|
|
119
|
-
models .server = "https://create3000.github.io/media/glTF/";
|
|
120
|
-
|
|
121
|
-
/* find . -type f -name "*.gltf" | grep "/glTF/" | sort */
|
|
122
135
|
const glTF = [
|
|
123
|
-
"2CylinderEngine/glTF/2CylinderEngine.gltf",
|
|
124
|
-
"
|
|
125
|
-
"
|
|
126
|
-
"
|
|
127
|
-
"
|
|
128
|
-
"
|
|
129
|
-
"
|
|
130
|
-
"
|
|
131
|
-
"
|
|
132
|
-
"
|
|
133
|
-
"
|
|
134
|
-
"
|
|
135
|
-
"
|
|
136
|
-
"
|
|
137
|
-
"
|
|
138
|
-
"
|
|
139
|
-
"
|
|
140
|
-
"
|
|
141
|
-
"
|
|
142
|
-
"
|
|
143
|
-
"
|
|
144
|
-
"
|
|
145
|
-
"
|
|
146
|
-
"
|
|
147
|
-
"
|
|
148
|
-
"
|
|
149
|
-
"
|
|
150
|
-
"
|
|
151
|
-
"
|
|
152
|
-
"
|
|
153
|
-
"
|
|
154
|
-
"
|
|
155
|
-
"
|
|
156
|
-
"
|
|
157
|
-
"
|
|
158
|
-
"
|
|
159
|
-
"
|
|
160
|
-
"
|
|
161
|
-
"
|
|
162
|
-
"
|
|
163
|
-
"
|
|
164
|
-
"
|
|
165
|
-
"
|
|
166
|
-
"
|
|
167
|
-
"
|
|
168
|
-
"
|
|
169
|
-
"
|
|
170
|
-
"
|
|
171
|
-
"
|
|
172
|
-
"
|
|
173
|
-
"
|
|
174
|
-
"
|
|
175
|
-
"
|
|
176
|
-
"
|
|
177
|
-
"
|
|
178
|
-
"
|
|
179
|
-
"
|
|
180
|
-
"
|
|
181
|
-
"
|
|
182
|
-
"
|
|
183
|
-
"
|
|
184
|
-
"
|
|
185
|
-
"
|
|
186
|
-
"
|
|
187
|
-
"
|
|
188
|
-
"
|
|
189
|
-
"
|
|
190
|
-
"
|
|
191
|
-
"
|
|
192
|
-
"
|
|
193
|
-
"
|
|
194
|
-
"
|
|
195
|
-
"
|
|
196
|
-
"
|
|
197
|
-
"
|
|
198
|
-
"
|
|
199
|
-
"
|
|
200
|
-
"
|
|
201
|
-
"
|
|
202
|
-
"
|
|
203
|
-
"
|
|
204
|
-
"
|
|
205
|
-
"
|
|
206
|
-
"
|
|
207
|
-
"
|
|
208
|
-
"
|
|
209
|
-
"
|
|
210
|
-
"
|
|
211
|
-
"
|
|
136
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/2CylinderEngine/glTF-Draco/2CylinderEngine.gltf",
|
|
137
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/2CylinderEngine/glTF-Embedded/2CylinderEngine.gltf",
|
|
138
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/2CylinderEngine/glTF/2CylinderEngine.gltf",
|
|
139
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/ABeautifulGame/glTF/ABeautifulGame.gltf",
|
|
140
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/AlphaBlendModeTest/glTF-Embedded/AlphaBlendModeTest.gltf",
|
|
141
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/AlphaBlendModeTest/glTF/AlphaBlendModeTest.gltf",
|
|
142
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/AnimatedCube/glTF/AnimatedCube.gltf",
|
|
143
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/AnimatedMorphCube/glTF-Quantized/AnimatedMorphCube.gltf",
|
|
144
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/AnimatedMorphCube/glTF/AnimatedMorphCube.gltf",
|
|
145
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/AnimatedMorphSphere/glTF/AnimatedMorphSphere.gltf",
|
|
146
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/AnimatedTriangle/glTF-Embedded/AnimatedTriangle.gltf",
|
|
147
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/AnimatedTriangle/glTF/AnimatedTriangle.gltf",
|
|
148
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/AntiqueCamera/glTF/AntiqueCamera.gltf",
|
|
149
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/AttenuationTest/glTF/AttenuationTest.gltf",
|
|
150
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/Avocado/glTF-Draco/Avocado.gltf",
|
|
151
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/Avocado/glTF-Quantized/Avocado.gltf",
|
|
152
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/Avocado/glTF/Avocado.gltf",
|
|
153
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/BarramundiFish/glTF-Draco/BarramundiFish.gltf",
|
|
154
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/BarramundiFish/glTF/BarramundiFish.gltf",
|
|
155
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/BoomBox/glTF-Draco/BoomBox.gltf",
|
|
156
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/BoomBox/glTF/BoomBox.gltf",
|
|
157
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/BoomBoxWithAxes/glTF/BoomBoxWithAxes.gltf",
|
|
158
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/Box With Spaces/glTF/Box With Spaces.gltf",
|
|
159
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/Box/glTF-Draco/Box.gltf",
|
|
160
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/Box/glTF-Embedded/Box.gltf",
|
|
161
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/Box/glTF/Box.gltf",
|
|
162
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/BoxAnimated/glTF-Embedded/BoxAnimated.gltf",
|
|
163
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/BoxAnimated/glTF/BoxAnimated.gltf",
|
|
164
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/BoxInterleaved/glTF-Embedded/BoxInterleaved.gltf",
|
|
165
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/BoxInterleaved/glTF/BoxInterleaved.gltf",
|
|
166
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/BoxTextured/glTF-Embedded/BoxTextured.gltf",
|
|
167
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/BoxTextured/glTF/BoxTextured.gltf",
|
|
168
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/BoxTexturedNonPowerOfTwo/glTF-Embedded/BoxTexturedNonPowerOfTwo.gltf",
|
|
169
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/BoxTexturedNonPowerOfTwo/glTF/BoxTexturedNonPowerOfTwo.gltf",
|
|
170
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/BoxVertexColors/glTF-Embedded/BoxVertexColors.gltf",
|
|
171
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/BoxVertexColors/glTF/BoxVertexColors.gltf",
|
|
172
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/BrainStem/glTF-Draco/BrainStem.gltf",
|
|
173
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/BrainStem/glTF-Embedded/BrainStem.gltf",
|
|
174
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/BrainStem/glTF-Meshopt/BrainStem.gltf",
|
|
175
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/BrainStem/glTF/BrainStem.gltf",
|
|
176
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/Buggy/glTF-Draco/Buggy.gltf",
|
|
177
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/Buggy/glTF-Embedded/Buggy.gltf",
|
|
178
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/Buggy/glTF/Buggy.gltf",
|
|
179
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/Cameras/glTF-Embedded/Cameras.gltf",
|
|
180
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/Cameras/glTF/Cameras.gltf",
|
|
181
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/CesiumMan/glTF-Draco/CesiumMan.gltf",
|
|
182
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/CesiumMan/glTF-Embedded/CesiumMan.gltf",
|
|
183
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/CesiumMan/glTF/CesiumMan.gltf",
|
|
184
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/CesiumMilkTruck/glTF-Draco/CesiumMilkTruck.gltf",
|
|
185
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/CesiumMilkTruck/glTF-Embedded/CesiumMilkTruck.gltf",
|
|
186
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/CesiumMilkTruck/glTF/CesiumMilkTruck.gltf",
|
|
187
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/ClearCoatCarPaint/glTF/ClearCoatCarPaint.gltf",
|
|
188
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/ClearCoatTest/glTF/ClearCoatTest.gltf",
|
|
189
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/ClearcoatWicker/glTF/ClearcoatWicker.gltf",
|
|
190
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/Corset/glTF-Draco/Corset.gltf",
|
|
191
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/Corset/glTF/Corset.gltf",
|
|
192
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/Cube/glTF/Cube.gltf",
|
|
193
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/DamagedHelmet/glTF-Embedded/DamagedHelmet.gltf",
|
|
194
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/DamagedHelmet/glTF/DamagedHelmet.gltf",
|
|
195
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/DragonAttenuation/glTF-Meshopt/DragonAttenuation.gltf",
|
|
196
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/DragonAttenuation/glTF/DragonAttenuation.gltf",
|
|
197
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/Duck/glTF-Draco/Duck.gltf",
|
|
198
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/Duck/glTF-Embedded/Duck.gltf",
|
|
199
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/Duck/glTF-Quantized/Duck.gltf",
|
|
200
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/Duck/glTF/Duck.gltf",
|
|
201
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/EmissiveStrengthTest/glTF/EmissiveStrengthTest.gltf",
|
|
202
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/EnvironmentTest/glTF-IBL/EnvironmentTest.gltf",
|
|
203
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/EnvironmentTest/glTF/EnvironmentTest.gltf",
|
|
204
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/FlightHelmet/glTF-KTX-BasisU/FlightHelmet.gltf",
|
|
205
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/FlightHelmet/glTF/FlightHelmet.gltf",
|
|
206
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/Fox/glTF/Fox.gltf",
|
|
207
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/GearboxAssy/glTF-Draco/GearboxAssy.gltf",
|
|
208
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/GearboxAssy/glTF-Embedded/GearboxAssy.gltf",
|
|
209
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/GearboxAssy/glTF/GearboxAssy.gltf",
|
|
210
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/GlamVelvetSofa/glTF/GlamVelvetSofa.gltf",
|
|
211
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/InterpolationTest/glTF/InterpolationTest.gltf",
|
|
212
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/IridescenceDielectricSpheres/glTF/IridescenceDielectricSpheres.gltf",
|
|
213
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/IridescenceLamp/glTF/IridescenceLamp.gltf",
|
|
214
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/IridescenceMetallicSpheres/glTF/IridescenceMetallicSpheres.gltf",
|
|
215
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/IridescenceSuzanne/glTF/IridescenceSuzanne.gltf",
|
|
216
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/IridescentDishWithOlives/glTF/IridescentDishWithOlives.gltf",
|
|
217
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/Lantern/glTF-Draco/Lantern.gltf",
|
|
218
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/Lantern/glTF-Quantized/Lantern.gltf",
|
|
219
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/Lantern/glTF/Lantern.gltf",
|
|
220
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/LightsPunctualLamp/glTF/LightsPunctualLamp.gltf",
|
|
221
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/MaterialsVariantsShoe/glTF/MaterialsVariantsShoe.gltf",
|
|
222
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/MeshPrimitiveModes/glTF-Embedded/MeshPrimitiveModes.gltf",
|
|
223
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/MeshPrimitiveModes/glTF/MeshPrimitiveModes.gltf",
|
|
224
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/MetalRoughSpheres/glTF-Embedded/MetalRoughSpheres.gltf",
|
|
225
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/MetalRoughSpheres/glTF/MetalRoughSpheres.gltf",
|
|
226
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/MetalRoughSpheresNoTextures/glTF/MetalRoughSpheresNoTextures.gltf",
|
|
227
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/MorphPrimitivesTest/glTF-Draco/MorphPrimitivesTest.gltf",
|
|
228
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/MorphPrimitivesTest/glTF/MorphPrimitivesTest.gltf",
|
|
229
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/MorphStressTest/glTF/MorphStressTest.gltf",
|
|
230
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/MosquitoInAmber/glTF/MosquitoInAmber.gltf",
|
|
231
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/MultiUVTest/glTF-Embedded/MultiUVTest.gltf",
|
|
232
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/MultiUVTest/glTF/MultiUVTest.gltf",
|
|
233
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/MultipleScenes/glTF-Embedded/MultipleScenes.gltf",
|
|
234
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/MultipleScenes/glTF/MultipleScenes.gltf",
|
|
235
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/NegativeScaleTest/glTF/NegativeScaleTest.gltf",
|
|
236
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/NormalTangentMirrorTest/glTF-Embedded/NormalTangentMirrorTest.gltf",
|
|
237
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/NormalTangentMirrorTest/glTF/NormalTangentMirrorTest.gltf",
|
|
238
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/NormalTangentTest/glTF-Embedded/NormalTangentTest.gltf",
|
|
239
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/NormalTangentTest/glTF/NormalTangentTest.gltf",
|
|
240
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/OrientationTest/glTF-Embedded/OrientationTest.gltf",
|
|
241
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/OrientationTest/glTF/OrientationTest.gltf",
|
|
242
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/ReciprocatingSaw/glTF-Draco/ReciprocatingSaw.gltf",
|
|
243
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/ReciprocatingSaw/glTF-Embedded/ReciprocatingSaw.gltf",
|
|
244
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/ReciprocatingSaw/glTF/ReciprocatingSaw.gltf",
|
|
245
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/RecursiveSkeletons/glTF/RecursiveSkeletons.gltf",
|
|
246
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/RiggedFigure/glTF-Draco/RiggedFigure.gltf",
|
|
247
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/RiggedFigure/glTF-Embedded/RiggedFigure.gltf",
|
|
248
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/RiggedFigure/glTF/RiggedFigure.gltf",
|
|
249
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/RiggedSimple/glTF-Draco/RiggedSimple.gltf",
|
|
250
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/RiggedSimple/glTF-Embedded/RiggedSimple.gltf",
|
|
251
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/RiggedSimple/glTF/RiggedSimple.gltf",
|
|
252
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/SciFiHelmet/glTF/SciFiHelmet.gltf",
|
|
253
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/SheenChair/glTF/SheenChair.gltf",
|
|
254
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/SheenCloth/glTF/SheenCloth.gltf",
|
|
255
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/SimpleInstancing/glTF/SimpleInstancing.gltf",
|
|
256
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/SimpleMeshes/glTF-Embedded/SimpleMeshes.gltf",
|
|
257
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/SimpleMeshes/glTF/SimpleMeshes.gltf",
|
|
258
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/SimpleMorph/glTF-Embedded/SimpleMorph.gltf",
|
|
259
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/SimpleMorph/glTF/SimpleMorph.gltf",
|
|
260
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/SimpleSkin/glTF-Embedded/SimpleSkin.gltf",
|
|
261
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/SimpleSkin/glTF/SimpleSkin.gltf",
|
|
262
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/SimpleSparseAccessor/glTF-Embedded/SimpleSparseAccessor.gltf",
|
|
263
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/SimpleSparseAccessor/glTF/SimpleSparseAccessor.gltf",
|
|
264
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/SpecGlossVsMetalRough/glTF/SpecGlossVsMetalRough.gltf",
|
|
265
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/SpecularTest/glTF/SpecularTest.gltf",
|
|
266
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/Sponza/glTF/Sponza.gltf",
|
|
267
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/StainedGlassLamp/glTF-JPG-PNG/StainedGlassLamp.gltf",
|
|
268
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/StainedGlassLamp/glTF-KTX-BasisU/StainedGlassLamp.gltf",
|
|
269
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/StainedGlassLamp/glTF/StainedGlassLamp.gltf",
|
|
270
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/Suzanne/glTF/Suzanne.gltf",
|
|
271
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/TextureCoordinateTest/glTF-Embedded/TextureCoordinateTest.gltf",
|
|
272
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/TextureCoordinateTest/glTF/TextureCoordinateTest.gltf",
|
|
273
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/TextureEncodingTest/glTF/TextureEncodingTest.gltf",
|
|
274
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/TextureLinearInterpolationTest/glTF/TextureLinearInterpolationTest.gltf",
|
|
275
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/TextureSettingsTest/glTF-Embedded/TextureSettingsTest.gltf",
|
|
276
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/TextureSettingsTest/glTF/TextureSettingsTest.gltf",
|
|
277
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/TextureTransformMultiTest/glTF/TextureTransformMultiTest.gltf",
|
|
278
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/TextureTransformTest/glTF/TextureTransformTest.gltf",
|
|
279
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/ToyCar/glTF/ToyCar.gltf",
|
|
280
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/TransmissionRoughnessTest/glTF/TransmissionRoughnessTest.gltf",
|
|
281
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/TransmissionTest/glTF/TransmissionTest.gltf",
|
|
282
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/Triangle/glTF-Embedded/Triangle.gltf",
|
|
283
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/Triangle/glTF/Triangle.gltf",
|
|
284
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/TriangleWithoutIndices/glTF-Embedded/TriangleWithoutIndices.gltf",
|
|
285
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/TriangleWithoutIndices/glTF/TriangleWithoutIndices.gltf",
|
|
286
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/TwoSidedPlane/glTF/TwoSidedPlane.gltf",
|
|
287
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/Unicode❤♻Test/glTF/Unicode❤♻Test.gltf",
|
|
288
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/UnlitTest/glTF/UnlitTest.gltf",
|
|
289
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/VC/glTF-Draco/VC.gltf",
|
|
290
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/VC/glTF-Embedded/VC.gltf",
|
|
291
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/VC/glTF/VC.gltf",
|
|
292
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/VertexColorTest/glTF-Embedded/VertexColorTest.gltf",
|
|
293
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/VertexColorTest/glTF/VertexColorTest.gltf",
|
|
294
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/WaterBottle/glTF-Draco/WaterBottle.gltf",
|
|
295
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/WaterBottle/glTF/WaterBottle.gltf",
|
|
296
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/ABeautifulGame/glTF/ABeautifulGame.gltf",
|
|
297
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/AlphaBlendModeTest/glTF-Embedded/AlphaBlendModeTest.gltf",
|
|
298
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/AlphaBlendModeTest/glTF/AlphaBlendModeTest.gltf",
|
|
299
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/AnimatedCube/glTF/AnimatedCube.gltf",
|
|
300
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/AnimatedMorphCube/glTF-Quantized/AnimatedMorphCube.gltf",
|
|
301
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/AnimatedMorphCube/glTF/AnimatedMorphCube.gltf",
|
|
302
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/AnimatedMorphSphere/glTF/AnimatedMorphSphere.gltf",
|
|
303
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/AnimatedTriangle/glTF-Embedded/AnimatedTriangle.gltf",
|
|
304
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/AnimatedTriangle/glTF/AnimatedTriangle.gltf",
|
|
305
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/AnisotropyBarnLamp/glTF-KTX2-Basisu/AnisotropyBarnLamp.gltf",
|
|
306
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/AnisotropyBarnLamp/glTF/AnisotropyBarnLamp.gltf",
|
|
307
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/AnisotropyRotationTest/glTF/AnisotropyRotationTest.gltf",
|
|
308
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/AnisotropyStrengthTest/glTF/AnisotropyStrengthTest.gltf",
|
|
309
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/AntiqueCamera/glTF/AntiqueCamera.gltf",
|
|
310
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/AttenuationTest/glTF/AttenuationTest.gltf",
|
|
311
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/Avocado/glTF-Draco/Avocado.gltf",
|
|
312
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/Avocado/glTF-Quantized/Avocado.gltf",
|
|
313
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/Avocado/glTF/Avocado.gltf",
|
|
314
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/BarramundiFish/glTF-Draco/BarramundiFish.gltf",
|
|
315
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/BarramundiFish/glTF/BarramundiFish.gltf",
|
|
316
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/BoomBox/glTF-Draco/BoomBox.gltf",
|
|
317
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/BoomBox/glTF/BoomBox.gltf",
|
|
318
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/BoomBoxWithAxes/glTF/BoomBoxWithAxes.gltf",
|
|
319
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/Box With Spaces/glTF/Box With Spaces.gltf",
|
|
320
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/Box/glTF-Draco/Box.gltf",
|
|
321
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/Box/glTF-Embedded/Box.gltf",
|
|
322
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/Box/glTF/Box.gltf",
|
|
323
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/BoxAnimated/glTF-Embedded/BoxAnimated.gltf",
|
|
324
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/BoxAnimated/glTF/BoxAnimated.gltf",
|
|
325
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/BoxInterleaved/glTF-Embedded/BoxInterleaved.gltf",
|
|
326
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/BoxInterleaved/glTF/BoxInterleaved.gltf",
|
|
327
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/BoxTextured/glTF-Embedded/BoxTextured.gltf",
|
|
328
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/BoxTextured/glTF/BoxTextured.gltf",
|
|
329
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/BoxTexturedNonPowerOfTwo/glTF-Embedded/BoxTexturedNonPowerOfTwo.gltf",
|
|
330
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/BoxTexturedNonPowerOfTwo/glTF/BoxTexturedNonPowerOfTwo.gltf",
|
|
331
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/BoxVertexColors/glTF-Embedded/BoxVertexColors.gltf",
|
|
332
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/BoxVertexColors/glTF/BoxVertexColors.gltf",
|
|
333
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/BrainStem/glTF-Draco/BrainStem.gltf",
|
|
334
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/BrainStem/glTF-Embedded/BrainStem.gltf",
|
|
335
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/BrainStem/glTF/BrainStem.gltf",
|
|
336
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/Cameras/glTF-Embedded/Cameras.gltf",
|
|
337
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/Cameras/glTF/Cameras.gltf",
|
|
338
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/CesiumMan/glTF-Draco/CesiumMan.gltf",
|
|
339
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/CesiumMan/glTF-Embedded/CesiumMan.gltf",
|
|
340
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/CesiumMan/glTF/CesiumMan.gltf",
|
|
341
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/CesiumMilkTruck/glTF-Draco/CesiumMilkTruck.gltf",
|
|
342
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/CesiumMilkTruck/glTF-Embedded/CesiumMilkTruck.gltf",
|
|
343
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/CesiumMilkTruck/glTF/CesiumMilkTruck.gltf",
|
|
344
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/ClearCoatCarPaint/glTF/ClearCoatCarPaint.gltf",
|
|
345
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/ClearCoatTest/glTF/ClearCoatTest.gltf",
|
|
346
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/ClearcoatWicker/glTF/ClearcoatWicker.gltf",
|
|
347
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/Corset/glTF-Draco/Corset.gltf",
|
|
348
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/Corset/glTF/Corset.gltf",
|
|
349
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/Cube/glTF/Cube.gltf",
|
|
350
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/DamagedHelmet/glTF-Embedded/DamagedHelmet.gltf",
|
|
351
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/DamagedHelmet/glTF/DamagedHelmet.gltf",
|
|
352
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/DragonAttenuation/glTF/DragonAttenuation.gltf",
|
|
353
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/Duck/glTF-Draco/Duck.gltf",
|
|
354
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/Duck/glTF-Embedded/Duck.gltf",
|
|
355
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/Duck/glTF-Quantized/Duck.gltf",
|
|
356
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/Duck/glTF/Duck.gltf",
|
|
357
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/EmissiveStrengthTest/glTF/EmissiveStrengthTest.gltf",
|
|
358
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/EnvironmentTest/glTF-IBL/EnvironmentTest.gltf",
|
|
359
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/EnvironmentTest/glTF/EnvironmentTest.gltf",
|
|
360
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/FlightHelmet/glTF/FlightHelmet.gltf",
|
|
361
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/Fox/glTF/Fox.gltf",
|
|
362
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/GlamVelvetSofa/glTF/GlamVelvetSofa.gltf",
|
|
363
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/GlassBrokenWindow/glTF/GlassBrokenWindow.gltf",
|
|
364
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/GlassHurricaneCandleHolder/glTF/GlassHurricaneCandleHolder.gltf",
|
|
365
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/GlassVaseFlowers/glTF/GlassVaseFlowers.gltf",
|
|
366
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/InterpolationTest/glTF/InterpolationTest.gltf",
|
|
367
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/IridescenceAbalone/glTF/IridescenceAbalone.gltf",
|
|
368
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/IridescenceDielectricSpheres/glTF/IridescenceDielectricSpheres.gltf",
|
|
369
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/IridescenceLamp/glTF/IridescenceLamp.gltf",
|
|
370
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/IridescenceMetallicSpheres/glTF/IridescenceMetallicSpheres.gltf",
|
|
371
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/IridescenceSuzanne/glTF/IridescenceSuzanne.gltf",
|
|
372
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/IridescentDishWithOlives/glTF/IridescentDishWithOlives.gltf",
|
|
373
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/Lantern/glTF-Draco/Lantern.gltf",
|
|
374
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/Lantern/glTF-Quantized/Lantern.gltf",
|
|
375
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/Lantern/glTF/Lantern.gltf",
|
|
376
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/LightsPunctualLamp/glTF/LightsPunctualLamp.gltf",
|
|
377
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/MaterialsVariantsShoe/glTF/MaterialsVariantsShoe.gltf",
|
|
378
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/MeshPrimitiveModes/glTF-Embedded/MeshPrimitiveModes.gltf",
|
|
379
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/MeshPrimitiveModes/glTF/MeshPrimitiveModes.gltf",
|
|
380
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/MetalRoughSpheres/glTF-Embedded/MetalRoughSpheres.gltf",
|
|
381
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/MetalRoughSpheres/glTF/MetalRoughSpheres.gltf",
|
|
382
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/MetalRoughSpheresNoTextures/glTF/MetalRoughSpheresNoTextures.gltf",
|
|
383
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/MorphPrimitivesTest/glTF-Draco/MorphPrimitivesTest.gltf",
|
|
384
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/MorphPrimitivesTest/glTF/MorphPrimitivesTest.gltf",
|
|
385
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/MorphStressTest/glTF/MorphStressTest.gltf",
|
|
386
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/MosquitoInAmber/glTF/MosquitoInAmber.gltf",
|
|
387
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/MultiUVTest/glTF-Embedded/MultiUVTest.gltf",
|
|
388
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/MultiUVTest/glTF/MultiUVTest.gltf",
|
|
389
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/MultipleScenes/glTF-Embedded/MultipleScenes.gltf",
|
|
390
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/MultipleScenes/glTF/MultipleScenes.gltf",
|
|
391
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/NegativeScaleTest/glTF/NegativeScaleTest.gltf",
|
|
392
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/NormalTangentMirrorTest/glTF-Embedded/NormalTangentMirrorTest.gltf",
|
|
393
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/NormalTangentMirrorTest/glTF/NormalTangentMirrorTest.gltf",
|
|
394
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/NormalTangentTest/glTF-Embedded/NormalTangentTest.gltf",
|
|
395
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/NormalTangentTest/glTF/NormalTangentTest.gltf",
|
|
396
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/OrientationTest/glTF-Embedded/OrientationTest.gltf",
|
|
397
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/OrientationTest/glTF/OrientationTest.gltf",
|
|
398
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/RecursiveSkeletons/glTF/RecursiveSkeletons.gltf",
|
|
399
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/RiggedFigure/glTF-Draco/RiggedFigure.gltf",
|
|
400
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/RiggedFigure/glTF-Embedded/RiggedFigure.gltf",
|
|
401
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/RiggedFigure/glTF/RiggedFigure.gltf",
|
|
402
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/RiggedSimple/glTF-Draco/RiggedSimple.gltf",
|
|
403
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/RiggedSimple/glTF-Embedded/RiggedSimple.gltf",
|
|
404
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/RiggedSimple/glTF/RiggedSimple.gltf",
|
|
405
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/SciFiHelmet/glTF/SciFiHelmet.gltf",
|
|
406
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/SheenChair/glTF/SheenChair.gltf",
|
|
407
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/SheenCloth/glTF/SheenCloth.gltf",
|
|
408
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/SimpleInstancing/glTF/SimpleInstancing.gltf",
|
|
409
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/SimpleMeshes/glTF-Embedded/SimpleMeshes.gltf",
|
|
410
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/SimpleMeshes/glTF/SimpleMeshes.gltf",
|
|
411
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/SimpleMorph/glTF-Embedded/SimpleMorph.gltf",
|
|
412
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/SimpleMorph/glTF/SimpleMorph.gltf",
|
|
413
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/SimpleSkin/glTF-Embedded/SimpleSkin.gltf",
|
|
414
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/SimpleSkin/glTF/SimpleSkin.gltf",
|
|
415
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/SimpleSparseAccessor/glTF-Embedded/SimpleSparseAccessor.gltf",
|
|
416
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/SimpleSparseAccessor/glTF/SimpleSparseAccessor.gltf",
|
|
417
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/SpecGlossVsMetalRough/glTF/SpecGlossVsMetalRough.gltf",
|
|
418
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/SpecularTest/glTF/SpecularTest.gltf",
|
|
419
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/Sponza/glTF/Sponza.gltf",
|
|
420
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/StainedGlassLamp/glTF-JPG-PNG/StainedGlassLamp.gltf",
|
|
421
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/StainedGlassLamp/glTF-KTX-BasisU/StainedGlassLamp.gltf",
|
|
422
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/StainedGlassLamp/glTF/StainedGlassLamp.gltf",
|
|
423
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/Suzanne/glTF/Suzanne.gltf",
|
|
424
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/TextureCoordinateTest/glTF-Embedded/TextureCoordinateTest.gltf",
|
|
425
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/TextureCoordinateTest/glTF/TextureCoordinateTest.gltf",
|
|
426
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/TextureEncodingTest/glTF/TextureEncodingTest.gltf",
|
|
427
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/TextureLinearInterpolationTest/glTF/TextureLinearInterpolationTest.gltf",
|
|
428
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/TextureSettingsTest/glTF-Embedded/TextureSettingsTest.gltf",
|
|
429
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/TextureSettingsTest/glTF/TextureSettingsTest.gltf",
|
|
430
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/TextureTransformMultiTest/glTF/TextureTransformMultiTest.gltf",
|
|
431
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/TextureTransformTest/glTF/TextureTransformTest.gltf",
|
|
432
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/ToyCar/glTF/ToyCar.gltf",
|
|
433
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/TransmissionRoughnessTest/glTF/TransmissionRoughnessTest.gltf",
|
|
434
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/TransmissionTest/glTF/TransmissionTest.gltf",
|
|
435
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/Triangle/glTF-Embedded/Triangle.gltf",
|
|
436
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/Triangle/glTF/Triangle.gltf",
|
|
437
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/TriangleWithoutIndices/glTF-Embedded/TriangleWithoutIndices.gltf",
|
|
438
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/TriangleWithoutIndices/glTF/TriangleWithoutIndices.gltf",
|
|
439
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/TwoSidedPlane/glTF/TwoSidedPlane.gltf",
|
|
440
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/Unicode❤♻Test/glTF/Unicode❤♻Test.gltf",
|
|
441
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/UnlitTest/glTF/UnlitTest.gltf",
|
|
442
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/VC/glTF-Draco/VC.gltf",
|
|
443
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/VC/glTF-Embedded/VC.gltf",
|
|
444
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/VC/glTF/VC.gltf",
|
|
445
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/VertexColorTest/glTF-Embedded/VertexColorTest.gltf",
|
|
446
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/VertexColorTest/glTF/VertexColorTest.gltf",
|
|
447
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/WaterBottle/glTF-Draco/WaterBottle.gltf",
|
|
448
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/WaterBottle/glTF/WaterBottle.gltf",
|
|
212
449
|
];
|
|
213
450
|
|
|
214
|
-
glTF .server = "https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/";
|
|
215
|
-
|
|
216
|
-
/* find . -type f -name "*.glb" | grep "/glTF-Binary/" | sort */
|
|
217
451
|
const glb = [
|
|
218
|
-
"2CylinderEngine/glTF-Binary/2CylinderEngine.glb",
|
|
219
|
-
"AlphaBlendModeTest/glTF-Binary/AlphaBlendModeTest.glb",
|
|
220
|
-
"AnimatedMorphCube/glTF-Binary/AnimatedMorphCube.glb",
|
|
221
|
-
"AnimatedMorphSphere/glTF-Binary/AnimatedMorphSphere.glb",
|
|
222
|
-
"AntiqueCamera/glTF-Binary/AntiqueCamera.glb",
|
|
223
|
-
"AttenuationTest/glTF-Binary/AttenuationTest.glb",
|
|
224
|
-
"Avocado/glTF-Binary/Avocado.glb",
|
|
225
|
-
"BarramundiFish/glTF-Binary/BarramundiFish.glb",
|
|
226
|
-
"BoomBox/glTF-Binary/BoomBox.glb",
|
|
227
|
-
"Box/glTF-Binary/Box.glb",
|
|
228
|
-
"BoxAnimated/glTF-Binary/BoxAnimated.glb",
|
|
229
|
-
"BoxInterleaved/glTF-Binary/BoxInterleaved.glb",
|
|
230
|
-
"BoxTextured/glTF-Binary/BoxTextured.glb",
|
|
231
|
-
"BoxTexturedNonPowerOfTwo/glTF-Binary/BoxTexturedNonPowerOfTwo.glb",
|
|
232
|
-
"BoxVertexColors/glTF-Binary/BoxVertexColors.glb",
|
|
233
|
-
"BrainStem/glTF-Binary/BrainStem.glb",
|
|
234
|
-
"Buggy/glTF-Binary/Buggy.glb",
|
|
235
|
-
"CesiumMan/glTF-Binary/CesiumMan.glb",
|
|
236
|
-
"CesiumMilkTruck/glTF-Binary/CesiumMilkTruck.glb",
|
|
237
|
-
"
|
|
238
|
-
"
|
|
239
|
-
"
|
|
240
|
-
"
|
|
241
|
-
"
|
|
242
|
-
"
|
|
243
|
-
"
|
|
244
|
-
"
|
|
245
|
-
"
|
|
246
|
-
"
|
|
247
|
-
"
|
|
248
|
-
"
|
|
249
|
-
"
|
|
250
|
-
"
|
|
251
|
-
"
|
|
252
|
-
"
|
|
253
|
-
"
|
|
254
|
-
"
|
|
255
|
-
"
|
|
256
|
-
"
|
|
257
|
-
"
|
|
258
|
-
"
|
|
259
|
-
"
|
|
260
|
-
"
|
|
261
|
-
"
|
|
262
|
-
"
|
|
263
|
-
"
|
|
264
|
-
"
|
|
265
|
-
"
|
|
266
|
-
"
|
|
267
|
-
"
|
|
268
|
-
"
|
|
269
|
-
"
|
|
270
|
-
"
|
|
271
|
-
"
|
|
272
|
-
"
|
|
273
|
-
"
|
|
274
|
-
"
|
|
275
|
-
"
|
|
276
|
-
"
|
|
277
|
-
"
|
|
278
|
-
"
|
|
279
|
-
"
|
|
280
|
-
"
|
|
281
|
-
"
|
|
452
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/2CylinderEngine/glTF-Binary/2CylinderEngine.glb",
|
|
453
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/AlphaBlendModeTest/glTF-Binary/AlphaBlendModeTest.glb",
|
|
454
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/AnimatedMorphCube/glTF-Binary/AnimatedMorphCube.glb",
|
|
455
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/AnimatedMorphSphere/glTF-Binary/AnimatedMorphSphere.glb",
|
|
456
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/AntiqueCamera/glTF-Binary/AntiqueCamera.glb",
|
|
457
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/AttenuationTest/glTF-Binary/AttenuationTest.glb",
|
|
458
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/Avocado/glTF-Binary/Avocado.glb",
|
|
459
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/BarramundiFish/glTF-Binary/BarramundiFish.glb",
|
|
460
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/BoomBox/glTF-Binary/BoomBox.glb",
|
|
461
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/Box/glTF-Binary/Box.glb",
|
|
462
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/BoxAnimated/glTF-Binary/BoxAnimated.glb",
|
|
463
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/BoxInterleaved/glTF-Binary/BoxInterleaved.glb",
|
|
464
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/BoxTextured/glTF-Binary/BoxTextured.glb",
|
|
465
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/BoxTexturedNonPowerOfTwo/glTF-Binary/BoxTexturedNonPowerOfTwo.glb",
|
|
466
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/BoxVertexColors/glTF-Binary/BoxVertexColors.glb",
|
|
467
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/BrainStem/glTF-Binary/BrainStem.glb",
|
|
468
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/Buggy/glTF-Binary/Buggy.glb",
|
|
469
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/CesiumMan/glTF-Binary/CesiumMan.glb",
|
|
470
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/CesiumMilkTruck/glTF-Binary/CesiumMilkTruck.glb",
|
|
471
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/ClearCoatCarPaint/glTF-Binary/ClearCoatCarPaint.glb",
|
|
472
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/ClearCoatTest/glTF-Binary/ClearCoatTest.glb",
|
|
473
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/ClearcoatWicker/glTF-Binary/ClearcoatWicker.glb",
|
|
474
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/Corset/glTF-Binary/Corset.glb",
|
|
475
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/DamagedHelmet/glTF-Binary/DamagedHelmet.glb",
|
|
476
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/DragonAttenuation/glTF-Binary/DragonAttenuation.glb",
|
|
477
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/Duck/glTF-Binary/Duck.glb",
|
|
478
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/EmissiveStrengthTest/glTF-Binary/EmissiveStrengthTest.glb",
|
|
479
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/Fox/glTF-Binary/Fox.glb",
|
|
480
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/GearboxAssy/glTF-Binary/GearboxAssy.glb",
|
|
481
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/GlamVelvetSofa/glTF-Binary/GlamVelvetSofa.glb",
|
|
482
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/InterpolationTest/glTF-Binary/InterpolationTest.glb",
|
|
483
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/IridescenceLamp/glTF-Binary/IridescenceLamp.glb",
|
|
484
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/IridescenceSuzanne/glTF-Binary/IridescenceSuzanne.glb",
|
|
485
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/IridescentDishWithOlives/glTF-Binary/IridescentDishWithOlives.glb",
|
|
486
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/Lantern/glTF-Binary/Lantern.glb",
|
|
487
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/LightsPunctualLamp/glTF-Binary/LightsPunctualLamp.glb",
|
|
488
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/MaterialsVariantsShoe/glTF-Binary/MaterialsVariantsShoe.glb",
|
|
489
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/MetalRoughSpheres/glTF-Binary/MetalRoughSpheres.glb",
|
|
490
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/MetalRoughSpheresNoTextures/glTF-Binary/MetalRoughSpheresNoTextures.glb",
|
|
491
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/MorphPrimitivesTest/glTF-Binary/MorphPrimitivesTest.glb",
|
|
492
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/MorphStressTest/glTF-Binary/MorphStressTest.glb",
|
|
493
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/MosquitoInAmber/glTF-Binary/MosquitoInAmber.glb",
|
|
494
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/MultiUVTest/glTF-Binary/MultiUVTest.glb",
|
|
495
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/NegativeScaleTest/glTF-Binary/NegativeScaleTest.glb",
|
|
496
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/NormalTangentMirrorTest/glTF-Binary/NormalTangentMirrorTest.glb",
|
|
497
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/NormalTangentTest/glTF-Binary/NormalTangentTest.glb",
|
|
498
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/OrientationTest/glTF-Binary/OrientationTest.glb",
|
|
499
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/ReciprocatingSaw/glTF-Binary/ReciprocatingSaw.glb",
|
|
500
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/RecursiveSkeletons/glTF-Binary/RecursiveSkeletons.glb",
|
|
501
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/RiggedFigure/glTF-Binary/RiggedFigure.glb",
|
|
502
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/RiggedSimple/glTF-Binary/RiggedSimple.glb",
|
|
503
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/SheenChair/glTF-Binary/SheenChair.glb",
|
|
504
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/SimpleInstancing/glTF-Binary/SimpleInstancing.glb",
|
|
505
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/SpecGlossVsMetalRough/glTF-Binary/SpecGlossVsMetalRough.glb",
|
|
506
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/SpecularTest/glTF-Binary/SpecularTest.glb",
|
|
507
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/TextureCoordinateTest/glTF-Binary/TextureCoordinateTest.glb",
|
|
508
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/TextureEncodingTest/glTF-Binary/TextureEncodingTest.glb",
|
|
509
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/TextureLinearInterpolationTest/glTF-Binary/TextureLinearInterpolationTest.glb",
|
|
510
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/TextureSettingsTest/glTF-Binary/TextureSettingsTest.glb",
|
|
511
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/TextureTransformMultiTest/glTF-Binary/TextureTransformMultiTest.glb",
|
|
512
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/ToyCar/glTF-Binary/ToyCar.glb",
|
|
513
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/TransmissionRoughnessTest/glTF-Binary/TransmissionRoughnessTest.glb",
|
|
514
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/TransmissionTest/glTF-Binary/TransmissionTest.glb",
|
|
515
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/Unicode❤♻Test/glTF-Binary/Unicode❤♻Test.glb",
|
|
516
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/UnlitTest/glTF-Binary/UnlitTest.glb",
|
|
517
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/VC/glTF-Binary/VC.glb",
|
|
518
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/VertexColorTest/glTF-Binary/VertexColorTest.glb",
|
|
519
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/WaterBottle/glTF-Binary/WaterBottle.glb",
|
|
520
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/AlphaBlendModeTest/glTF-Binary/AlphaBlendModeTest.glb",
|
|
521
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/AnimatedMorphCube/glTF-Binary/AnimatedMorphCube.glb",
|
|
522
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/AnimatedMorphSphere/glTF-Binary/AnimatedMorphSphere.glb",
|
|
523
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/AnisotropyBarnLamp/glTF-Binary/AnisotropyBarnLamp.glb",
|
|
524
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/AnisotropyRotationTest/glTF-Binary/AnisotropyRotationTest.glb",
|
|
525
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/AnisotropyStrengthTest/glTF-Binary/AnisotropyStrengthTest.glb",
|
|
526
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/AntiqueCamera/glTF-Binary/AntiqueCamera.glb",
|
|
527
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/AttenuationTest/glTF-Binary/AttenuationTest.glb",
|
|
528
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/Avocado/glTF-Binary/Avocado.glb",
|
|
529
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/BarramundiFish/glTF-Binary/BarramundiFish.glb",
|
|
530
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/BoomBox/glTF-Binary/BoomBox.glb",
|
|
531
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/Box/glTF-Binary/Box.glb",
|
|
532
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/BoxAnimated/glTF-Binary/BoxAnimated.glb",
|
|
533
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/BoxInterleaved/glTF-Binary/BoxInterleaved.glb",
|
|
534
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/BoxTextured/glTF-Binary/BoxTextured.glb",
|
|
535
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/BoxTexturedNonPowerOfTwo/glTF-Binary/BoxTexturedNonPowerOfTwo.glb",
|
|
536
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/BoxVertexColors/glTF-Binary/BoxVertexColors.glb",
|
|
537
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/BrainStem/glTF-Binary/BrainStem.glb",
|
|
538
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/CesiumMan/glTF-Binary/CesiumMan.glb",
|
|
539
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/CesiumMilkTruck/glTF-Binary/CesiumMilkTruck.glb",
|
|
540
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/ClearCoatCarPaint/glTF-Binary/ClearCoatCarPaint.glb",
|
|
541
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/ClearCoatTest/glTF-Binary/ClearCoatTest.glb",
|
|
542
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/ClearcoatWicker/glTF-Binary/ClearcoatWicker.glb",
|
|
543
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/Corset/glTF-Binary/Corset.glb",
|
|
544
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/DamagedHelmet/glTF-Binary/DamagedHelmet.glb",
|
|
545
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/DragonAttenuation/glTF-Binary/DragonAttenuation.glb",
|
|
546
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/Duck/glTF-Binary/Duck.glb",
|
|
547
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/EmissiveStrengthTest/glTF-Binary/EmissiveStrengthTest.glb",
|
|
548
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/Fox/glTF-Binary/Fox.glb",
|
|
549
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/GlamVelvetSofa/glTF-Binary/GlamVelvetSofa.glb",
|
|
550
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/GlassBrokenWindow/glTF-Binary/GlassBrokenWindow.glb",
|
|
551
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/GlassHurricaneCandleHolder/glTF-Binary/GlassHurricaneCandleHolder.glb",
|
|
552
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/GlassVaseFlowers/glTF-Binary/GlassVaseFlowers.glb",
|
|
553
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/InterpolationTest/glTF-Binary/InterpolationTest.glb",
|
|
554
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/IridescenceAbalone/glTF-Binary/IridescenceAbalone.glb",
|
|
555
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/IridescenceLamp/glTF-Binary/IridescenceLamp.glb",
|
|
556
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/IridescenceSuzanne/glTF-Binary/IridescenceSuzanne.glb",
|
|
557
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/IridescentDishWithOlives/glTF-Binary/IridescentDishWithOlives.glb",
|
|
558
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/Lantern/glTF-Binary/Lantern.glb",
|
|
559
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/LightsPunctualLamp/glTF-Binary/LightsPunctualLamp.glb",
|
|
560
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/MaterialsVariantsShoe/glTF-Binary/MaterialsVariantsShoe.glb",
|
|
561
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/MetalRoughSpheres/glTF-Binary/MetalRoughSpheres.glb",
|
|
562
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/MetalRoughSpheresNoTextures/glTF-Binary/MetalRoughSpheresNoTextures.glb",
|
|
563
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/MorphPrimitivesTest/glTF-Binary/MorphPrimitivesTest.glb",
|
|
564
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/MorphStressTest/glTF-Binary/MorphStressTest.glb",
|
|
565
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/MosquitoInAmber/glTF-Binary/MosquitoInAmber.glb",
|
|
566
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/MultiUVTest/glTF-Binary/MultiUVTest.glb",
|
|
567
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/NegativeScaleTest/glTF-Binary/NegativeScaleTest.glb",
|
|
568
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/NormalTangentMirrorTest/glTF-Binary/NormalTangentMirrorTest.glb",
|
|
569
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/NormalTangentTest/glTF-Binary/NormalTangentTest.glb",
|
|
570
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/OrientationTest/glTF-Binary/OrientationTest.glb",
|
|
571
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/RecursiveSkeletons/glTF-Binary/RecursiveSkeletons.glb",
|
|
572
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/RiggedFigure/glTF-Binary/RiggedFigure.glb",
|
|
573
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/RiggedSimple/glTF-Binary/RiggedSimple.glb",
|
|
574
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/SheenChair/glTF-Binary/SheenChair.glb",
|
|
575
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/SimpleInstancing/glTF-Binary/SimpleInstancing.glb",
|
|
576
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/SpecGlossVsMetalRough/glTF-Binary/SpecGlossVsMetalRough.glb",
|
|
577
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/SpecularTest/glTF-Binary/SpecularTest.glb",
|
|
578
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/TextureCoordinateTest/glTF-Binary/TextureCoordinateTest.glb",
|
|
579
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/TextureEncodingTest/glTF-Binary/TextureEncodingTest.glb",
|
|
580
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/TextureLinearInterpolationTest/glTF-Binary/TextureLinearInterpolationTest.glb",
|
|
581
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/TextureSettingsTest/glTF-Binary/TextureSettingsTest.glb",
|
|
582
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/TextureTransformMultiTest/glTF-Binary/TextureTransformMultiTest.glb",
|
|
583
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/ToyCar/glTF-Binary/ToyCar.glb",
|
|
584
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/TransmissionRoughnessTest/glTF-Binary/TransmissionRoughnessTest.glb",
|
|
585
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/TransmissionTest/glTF-Binary/TransmissionTest.glb",
|
|
586
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/Unicode❤♻Test/glTF-Binary/Unicode❤♻Test.glb",
|
|
587
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/UnlitTest/glTF-Binary/UnlitTest.glb",
|
|
588
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/VC/glTF-Binary/VC.glb",
|
|
589
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/VertexColorTest/glTF-Binary/VertexColorTest.glb",
|
|
590
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/WaterBottle/glTF-Binary/WaterBottle.glb",
|
|
282
591
|
];
|
|
283
592
|
|
|
284
|
-
glb .server = "https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/";
|
|
285
|
-
|
|
286
|
-
/* find . -type f -name "*.gltf" | grep "/glTF-Draco/" | sort */
|
|
287
593
|
const draco = [
|
|
288
|
-
"2CylinderEngine/glTF-Draco/2CylinderEngine.gltf",
|
|
289
|
-
"Avocado/glTF-Draco/Avocado.gltf",
|
|
290
|
-
"BarramundiFish/glTF-Draco/BarramundiFish.gltf",
|
|
291
|
-
"BoomBox/glTF-Draco/BoomBox.gltf",
|
|
292
|
-
"Box/glTF-Draco/Box.gltf",
|
|
293
|
-
"BrainStem/glTF-Draco/BrainStem.gltf",
|
|
294
|
-
"Buggy/glTF-Draco/Buggy.gltf",
|
|
295
|
-
"CesiumMan/glTF-Draco/CesiumMan.gltf",
|
|
296
|
-
"CesiumMilkTruck/glTF-Draco/CesiumMilkTruck.gltf",
|
|
297
|
-
"Corset/glTF-Draco/Corset.gltf",
|
|
298
|
-
"Duck/glTF-Draco/Duck.gltf",
|
|
299
|
-
"GearboxAssy/glTF-Draco/GearboxAssy.gltf",
|
|
300
|
-
"Lantern/glTF-Draco/Lantern.gltf",
|
|
301
|
-
"MorphPrimitivesTest/glTF-Draco/MorphPrimitivesTest.gltf",
|
|
302
|
-
"ReciprocatingSaw/glTF-Draco/ReciprocatingSaw.gltf",
|
|
303
|
-
"RiggedFigure/glTF-Draco/RiggedFigure.gltf",
|
|
304
|
-
"RiggedSimple/glTF-Draco/RiggedSimple.gltf",
|
|
305
|
-
"VC/glTF-Draco/VC.gltf",
|
|
306
|
-
"WaterBottle/glTF-Draco/WaterBottle.gltf",
|
|
594
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/2CylinderEngine/glTF-Draco/2CylinderEngine.gltf",
|
|
595
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/Avocado/glTF-Draco/Avocado.gltf",
|
|
596
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/BarramundiFish/glTF-Draco/BarramundiFish.gltf",
|
|
597
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/BoomBox/glTF-Draco/BoomBox.gltf",
|
|
598
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/Box/glTF-Draco/Box.gltf",
|
|
599
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/BrainStem/glTF-Draco/BrainStem.gltf",
|
|
600
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/Buggy/glTF-Draco/Buggy.gltf",
|
|
601
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/CesiumMan/glTF-Draco/CesiumMan.gltf",
|
|
602
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/CesiumMilkTruck/glTF-Draco/CesiumMilkTruck.gltf",
|
|
603
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/Corset/glTF-Draco/Corset.gltf",
|
|
604
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/Duck/glTF-Draco/Duck.gltf",
|
|
605
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/GearboxAssy/glTF-Draco/GearboxAssy.gltf",
|
|
606
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/Lantern/glTF-Draco/Lantern.gltf",
|
|
607
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/MorphPrimitivesTest/glTF-Draco/MorphPrimitivesTest.gltf",
|
|
608
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/ReciprocatingSaw/glTF-Draco/ReciprocatingSaw.gltf",
|
|
609
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/RiggedFigure/glTF-Draco/RiggedFigure.gltf",
|
|
610
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/RiggedSimple/glTF-Draco/RiggedSimple.gltf",
|
|
611
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/VC/glTF-Draco/VC.gltf",
|
|
612
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/WaterBottle/glTF-Draco/WaterBottle.gltf",
|
|
613
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/Avocado/glTF-Draco/Avocado.gltf",
|
|
614
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/BarramundiFish/glTF-Draco/BarramundiFish.gltf",
|
|
615
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/BoomBox/glTF-Draco/BoomBox.gltf",
|
|
616
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/Box/glTF-Draco/Box.gltf",
|
|
617
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/BrainStem/glTF-Draco/BrainStem.gltf",
|
|
618
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/CesiumMan/glTF-Draco/CesiumMan.gltf",
|
|
619
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/CesiumMilkTruck/glTF-Draco/CesiumMilkTruck.gltf",
|
|
620
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/Corset/glTF-Draco/Corset.gltf",
|
|
621
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/Duck/glTF-Draco/Duck.gltf",
|
|
622
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/Lantern/glTF-Draco/Lantern.gltf",
|
|
623
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/MorphPrimitivesTest/glTF-Draco/MorphPrimitivesTest.gltf",
|
|
624
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/RiggedFigure/glTF-Draco/RiggedFigure.gltf",
|
|
625
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/RiggedSimple/glTF-Draco/RiggedSimple.gltf",
|
|
626
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/VC/glTF-Draco/VC.gltf",
|
|
627
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/WaterBottle/glTF-Draco/WaterBottle.gltf",
|
|
307
628
|
];
|
|
308
629
|
|
|
309
|
-
draco .server = "https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/";
|
|
310
|
-
|
|
311
|
-
/* find . -type f -name "*.gltf" | grep "/glTF-Embedded//" | sort */
|
|
312
630
|
const embedded = [
|
|
313
|
-
"2CylinderEngine/glTF-Embedded/2CylinderEngine.gltf",
|
|
314
|
-
"AlphaBlendModeTest/glTF-Embedded/AlphaBlendModeTest.gltf",
|
|
315
|
-
"AnimatedTriangle/glTF-Embedded/AnimatedTriangle.gltf",
|
|
316
|
-
"Box/glTF-Embedded/Box.gltf",
|
|
317
|
-
"BoxAnimated/glTF-Embedded/BoxAnimated.gltf",
|
|
318
|
-
"BoxInterleaved/glTF-Embedded/BoxInterleaved.gltf",
|
|
319
|
-
"BoxTextured/glTF-Embedded/BoxTextured.gltf",
|
|
320
|
-
"BoxTexturedNonPowerOfTwo/glTF-Embedded/BoxTexturedNonPowerOfTwo.gltf",
|
|
321
|
-
"BoxVertexColors/glTF-Embedded/BoxVertexColors.gltf",
|
|
322
|
-
"BrainStem/glTF-Embedded/BrainStem.gltf",
|
|
323
|
-
"Buggy/glTF-Embedded/Buggy.gltf",
|
|
324
|
-
"Cameras/glTF-Embedded/Cameras.gltf",
|
|
325
|
-
"CesiumMan/glTF-Embedded/CesiumMan.gltf",
|
|
326
|
-
"CesiumMilkTruck/glTF-Embedded/CesiumMilkTruck.gltf",
|
|
327
|
-
"DamagedHelmet/glTF-Embedded/DamagedHelmet.gltf",
|
|
328
|
-
"Duck/glTF-Embedded/Duck.gltf",
|
|
329
|
-
"GearboxAssy/glTF-Embedded/GearboxAssy.gltf",
|
|
330
|
-
"
|
|
331
|
-
"
|
|
332
|
-
"
|
|
333
|
-
"
|
|
334
|
-
"
|
|
335
|
-
"
|
|
336
|
-
"
|
|
337
|
-
"
|
|
338
|
-
"
|
|
339
|
-
"
|
|
340
|
-
"
|
|
341
|
-
"
|
|
342
|
-
"
|
|
343
|
-
"
|
|
344
|
-
"
|
|
345
|
-
"
|
|
346
|
-
"
|
|
347
|
-
"
|
|
348
|
-
"
|
|
631
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/2CylinderEngine/glTF-Embedded/2CylinderEngine.gltf",
|
|
632
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/AlphaBlendModeTest/glTF-Embedded/AlphaBlendModeTest.gltf",
|
|
633
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/AnimatedTriangle/glTF-Embedded/AnimatedTriangle.gltf",
|
|
634
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/Box/glTF-Embedded/Box.gltf",
|
|
635
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/BoxAnimated/glTF-Embedded/BoxAnimated.gltf",
|
|
636
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/BoxInterleaved/glTF-Embedded/BoxInterleaved.gltf",
|
|
637
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/BoxTextured/glTF-Embedded/BoxTextured.gltf",
|
|
638
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/BoxTexturedNonPowerOfTwo/glTF-Embedded/BoxTexturedNonPowerOfTwo.gltf",
|
|
639
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/BoxVertexColors/glTF-Embedded/BoxVertexColors.gltf",
|
|
640
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/BrainStem/glTF-Embedded/BrainStem.gltf",
|
|
641
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/Buggy/glTF-Embedded/Buggy.gltf",
|
|
642
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/Cameras/glTF-Embedded/Cameras.gltf",
|
|
643
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/CesiumMan/glTF-Embedded/CesiumMan.gltf",
|
|
644
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/CesiumMilkTruck/glTF-Embedded/CesiumMilkTruck.gltf",
|
|
645
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/DamagedHelmet/glTF-Embedded/DamagedHelmet.gltf",
|
|
646
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/Duck/glTF-Embedded/Duck.gltf",
|
|
647
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/GearboxAssy/glTF-Embedded/GearboxAssy.gltf",
|
|
648
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/MeshPrimitiveModes/glTF-Embedded/MeshPrimitiveModes.gltf",
|
|
649
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/MetalRoughSpheres/glTF-Embedded/MetalRoughSpheres.gltf",
|
|
650
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/MultiUVTest/glTF-Embedded/MultiUVTest.gltf",
|
|
651
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/MultipleScenes/glTF-Embedded/MultipleScenes.gltf",
|
|
652
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/NormalTangentMirrorTest/glTF-Embedded/NormalTangentMirrorTest.gltf",
|
|
653
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/NormalTangentTest/glTF-Embedded/NormalTangentTest.gltf",
|
|
654
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/OrientationTest/glTF-Embedded/OrientationTest.gltf",
|
|
655
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/ReciprocatingSaw/glTF-Embedded/ReciprocatingSaw.gltf",
|
|
656
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/RiggedFigure/glTF-Embedded/RiggedFigure.gltf",
|
|
657
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/RiggedSimple/glTF-Embedded/RiggedSimple.gltf",
|
|
658
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/SimpleMeshes/glTF-Embedded/SimpleMeshes.gltf",
|
|
659
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/SimpleMorph/glTF-Embedded/SimpleMorph.gltf",
|
|
660
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/SimpleSkin/glTF-Embedded/SimpleSkin.gltf",
|
|
661
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/SimpleSparseAccessor/glTF-Embedded/SimpleSparseAccessor.gltf",
|
|
662
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/TextureCoordinateTest/glTF-Embedded/TextureCoordinateTest.gltf",
|
|
663
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/TextureSettingsTest/glTF-Embedded/TextureSettingsTest.gltf",
|
|
664
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/Triangle/glTF-Embedded/Triangle.gltf",
|
|
665
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/TriangleWithoutIndices/glTF-Embedded/TriangleWithoutIndices.gltf",
|
|
666
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/VC/glTF-Embedded/VC.gltf",
|
|
667
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/VertexColorTest/glTF-Embedded/VertexColorTest.gltf",
|
|
668
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/AlphaBlendModeTest/glTF-Embedded/AlphaBlendModeTest.gltf",
|
|
669
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/AnimatedTriangle/glTF-Embedded/AnimatedTriangle.gltf",
|
|
670
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/Box/glTF-Embedded/Box.gltf",
|
|
671
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/BoxAnimated/glTF-Embedded/BoxAnimated.gltf",
|
|
672
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/BoxInterleaved/glTF-Embedded/BoxInterleaved.gltf",
|
|
673
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/BoxTextured/glTF-Embedded/BoxTextured.gltf",
|
|
674
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/BoxTexturedNonPowerOfTwo/glTF-Embedded/BoxTexturedNonPowerOfTwo.gltf",
|
|
675
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/BoxVertexColors/glTF-Embedded/BoxVertexColors.gltf",
|
|
676
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/BrainStem/glTF-Embedded/BrainStem.gltf",
|
|
677
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/Cameras/glTF-Embedded/Cameras.gltf",
|
|
678
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/CesiumMan/glTF-Embedded/CesiumMan.gltf",
|
|
679
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/CesiumMilkTruck/glTF-Embedded/CesiumMilkTruck.gltf",
|
|
680
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/DamagedHelmet/glTF-Embedded/DamagedHelmet.gltf",
|
|
681
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/Duck/glTF-Embedded/Duck.gltf",
|
|
682
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/MeshPrimitiveModes/glTF-Embedded/MeshPrimitiveModes.gltf",
|
|
683
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/MetalRoughSpheres/glTF-Embedded/MetalRoughSpheres.gltf",
|
|
684
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/MultiUVTest/glTF-Embedded/MultiUVTest.gltf",
|
|
685
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/MultipleScenes/glTF-Embedded/MultipleScenes.gltf",
|
|
686
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/NormalTangentMirrorTest/glTF-Embedded/NormalTangentMirrorTest.gltf",
|
|
687
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/NormalTangentTest/glTF-Embedded/NormalTangentTest.gltf",
|
|
688
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/OrientationTest/glTF-Embedded/OrientationTest.gltf",
|
|
689
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/RiggedFigure/glTF-Embedded/RiggedFigure.gltf",
|
|
690
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/RiggedSimple/glTF-Embedded/RiggedSimple.gltf",
|
|
691
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/SimpleMeshes/glTF-Embedded/SimpleMeshes.gltf",
|
|
692
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/SimpleMorph/glTF-Embedded/SimpleMorph.gltf",
|
|
693
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/SimpleSkin/glTF-Embedded/SimpleSkin.gltf",
|
|
694
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/SimpleSparseAccessor/glTF-Embedded/SimpleSparseAccessor.gltf",
|
|
695
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/TextureCoordinateTest/glTF-Embedded/TextureCoordinateTest.gltf",
|
|
696
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/TextureSettingsTest/glTF-Embedded/TextureSettingsTest.gltf",
|
|
697
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/Triangle/glTF-Embedded/Triangle.gltf",
|
|
698
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/TriangleWithoutIndices/glTF-Embedded/TriangleWithoutIndices.gltf",
|
|
699
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/VC/glTF-Embedded/VC.gltf",
|
|
700
|
+
"https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Assets/master/Models/VertexColorTest/glTF-Embedded/VertexColorTest.gltf",
|
|
349
701
|
];
|
|
350
702
|
|
|
351
|
-
|
|
703
|
+
// TESTS_END
|
|
352
704
|
|
|
353
705
|
function createList (description, array)
|
|
354
706
|
{
|
|
@@ -356,23 +708,38 @@ function createList (description, array)
|
|
|
356
708
|
|
|
357
709
|
$("<div></div>") .append ($("<strong></strong>") .text (description)) .appendTo (column);
|
|
358
710
|
|
|
359
|
-
const
|
|
711
|
+
const
|
|
712
|
+
list = $("<ul></ul>") .appendTo (column),
|
|
713
|
+
map = new Map ();
|
|
360
714
|
|
|
361
715
|
for (const filename of array)
|
|
362
716
|
{
|
|
363
717
|
const
|
|
364
|
-
match = filename .match (
|
|
718
|
+
match = filename .match (/([^\/]+)\.\w+$/),
|
|
365
719
|
name = match [1] .replace (/([A-Z]+)/g, " $1") .replace (/\s+/g, " ") .trim ();
|
|
366
720
|
|
|
721
|
+
if (map .has (filename))
|
|
722
|
+
continue;
|
|
723
|
+
|
|
724
|
+
map .set (name, filename);
|
|
725
|
+
}
|
|
726
|
+
|
|
727
|
+
for (const [name, filename] of [... map] .sort ((a, b) => cmp (a [0], b [0])))
|
|
728
|
+
{
|
|
367
729
|
$("<a></a>")
|
|
368
730
|
.text (name)
|
|
369
|
-
.attr ("href",
|
|
731
|
+
.attr ("href", filename)
|
|
370
732
|
.appendTo ($("<li></li>") .appendTo (list))
|
|
371
|
-
.on ("click", loadURL .bind (null, filename
|
|
733
|
+
.on ("click", loadURL .bind (null, filename));
|
|
372
734
|
}
|
|
373
735
|
}
|
|
374
736
|
|
|
375
|
-
|
|
737
|
+
function cmp (a, b)
|
|
738
|
+
{
|
|
739
|
+
return a > b ? 1 : a < b ? -1 : 0;
|
|
740
|
+
}
|
|
741
|
+
|
|
742
|
+
async function loadURL (filename, event)
|
|
376
743
|
{
|
|
377
744
|
event .preventDefault ();
|
|
378
745
|
|
|
@@ -380,7 +747,7 @@ async function loadURL (filename, server, event)
|
|
|
380
747
|
|
|
381
748
|
const Browser = X3D .getBrowser ();
|
|
382
749
|
|
|
383
|
-
await Browser .loadURL (new X3D .MFString (
|
|
750
|
+
await Browser .loadURL (new X3D .MFString (filename));
|
|
384
751
|
|
|
385
752
|
try
|
|
386
753
|
{
|
|
@@ -441,3 +808,4 @@ createList ("glb Sample Models", glb);
|
|
|
441
808
|
createList ("glTF Draco Sample Models", draco);
|
|
442
809
|
createList ("glTF Embedded Sample Models", embedded);
|
|
443
810
|
</script>
|
|
811
|
+
</pre>
|