x_ite 8.10.0 → 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.
Files changed (138) hide show
  1. package/Makefile +3 -0
  2. package/build/bin/version.pl +28 -20
  3. package/build/docs/glTF-samples.pl +151 -0
  4. package/build/docs/nodes.pl +1 -1
  5. package/build/src/nodes.pl +41 -0
  6. package/dist/assets/components/Annotation.js +13 -13
  7. package/dist/assets/components/Annotation.min.js +1 -1
  8. package/dist/assets/components/CADGeometry.js +13 -13
  9. package/dist/assets/components/CADGeometry.min.js +1 -1
  10. package/dist/assets/components/CubeMapTexturing.js +30 -26
  11. package/dist/assets/components/CubeMapTexturing.min.js +1 -1
  12. package/dist/assets/components/DIS.js +14 -14
  13. package/dist/assets/components/DIS.min.js +1 -1
  14. package/dist/assets/components/EventUtilities.js +9 -9
  15. package/dist/assets/components/EventUtilities.min.js +1 -1
  16. package/dist/assets/components/Geometry2D.js +19 -19
  17. package/dist/assets/components/Geometry2D.min.js +1 -1
  18. package/dist/assets/components/Geospatial.js +33 -33
  19. package/dist/assets/components/Geospatial.min.js +1 -1
  20. package/dist/assets/components/HAnim.js +394 -30
  21. package/dist/assets/components/HAnim.min.js +1 -1
  22. package/dist/assets/components/KeyDeviceSensor.js +8 -8
  23. package/dist/assets/components/KeyDeviceSensor.min.js +1 -1
  24. package/dist/assets/components/Layout.js +26 -26
  25. package/dist/assets/components/Layout.min.js +1 -1
  26. package/dist/assets/components/NURBS.js +24 -24
  27. package/dist/assets/components/NURBS.min.js +1 -1
  28. package/dist/assets/components/ParticleSystems.js +73 -74
  29. package/dist/assets/components/ParticleSystems.min.js +1 -1
  30. package/dist/assets/components/Picking.js +18 -18
  31. package/dist/assets/components/Picking.min.js +1 -1
  32. package/dist/assets/components/RigidBodyPhysics.js +18 -18
  33. package/dist/assets/components/RigidBodyPhysics.min.js +1 -1
  34. package/dist/assets/components/Scripting.js +37 -37
  35. package/dist/assets/components/Scripting.min.js +1 -1
  36. package/dist/assets/components/Text.js +55 -63
  37. package/dist/assets/components/Text.min.js +1 -1
  38. package/dist/assets/components/TextureProjector.js +14 -14
  39. package/dist/assets/components/TextureProjector.min.js +1 -1
  40. package/dist/assets/components/Texturing3D.js +35 -31
  41. package/dist/assets/components/Texturing3D.min.js +1 -1
  42. package/dist/assets/components/VolumeRendering.js +20 -20
  43. package/dist/assets/components/VolumeRendering.min.js +1 -1
  44. package/dist/assets/components/X_ITE.js +9 -9
  45. package/dist/assets/components/X_ITE.min.js +1 -1
  46. package/dist/x_ite.css +1 -1
  47. package/dist/x_ite.js +1456 -844
  48. package/dist/x_ite.min.js +1 -1
  49. package/dist/x_ite.zip +0 -0
  50. package/docs/_config.yml +2 -2
  51. package/docs/_posts/components/Core/MetadataBoolean.md +6 -4
  52. package/docs/_posts/components/Core/MetadataDouble.md +6 -4
  53. package/docs/_posts/components/Core/MetadataFloat.md +6 -4
  54. package/docs/_posts/components/Core/MetadataInteger.md +6 -4
  55. package/docs/_posts/components/Core/MetadataSet.md +6 -4
  56. package/docs/_posts/components/Core/MetadataString.md +6 -4
  57. package/docs/_posts/components/DIS/DISEntityTypeMapping.md +1 -1
  58. package/docs/_posts/components/HAnim/HAnimMotion.md +48 -48
  59. package/docs/_posts/components/RigidBodyPhysics/Contact.md +1 -1
  60. package/docs/_posts/getting-started.md +45 -35
  61. package/docs/_posts/reference/browser-services.md +6 -0
  62. package/docs/_posts/what's-new.md +23 -0
  63. package/docs/_tabs/playground.html +215 -15
  64. package/docs/assets/css/style.scss +35 -2
  65. package/docs/assets/js/example.js +95 -3
  66. package/docs/laboratory/gltf-sample-viewer.html +617 -240
  67. package/package.json +2 -2
  68. package/src/assets/shaders/Types.glsl.js +4 -0
  69. package/src/assets/shaders/webgl1/include/Hatch.glsl.js +2 -3
  70. package/src/assets/shaders/webgl2/Compose.fs.js +29 -0
  71. package/src/assets/shaders/webgl2/Compose.vs.js +14 -0
  72. package/src/assets/shaders/webgl2/include/Fragment.glsl.js +24 -2
  73. package/src/assets/shaders/webgl2/include/Hatch.glsl.js +2 -3
  74. package/src/assets/shaders/webgl2/include/Stipple.glsl.js +5 -3
  75. package/src/bookmarks.js +92 -5
  76. package/src/examples.js +1 -0
  77. package/src/standard/Math/Numbers/Quaternion.js +191 -13
  78. package/src/standard/Math/Numbers/Rotation4.js +23 -0
  79. package/src/standard/Time/{MicroTime.js → Time.js} +21 -28
  80. package/src/x_ite/Base/X3DChildObject.js +5 -4
  81. package/src/x_ite/Browser/Core/BrowserOptions.js +71 -60
  82. package/src/x_ite/Browser/Core/Context.js +2 -2
  83. package/src/x_ite/Browser/Core/X3DCoreContext.js +6 -0
  84. package/src/x_ite/Browser/DOMIntegration.js +0 -17
  85. package/src/x_ite/Browser/Navigation/ExamineViewer.js +5 -4
  86. package/src/x_ite/Browser/Navigation/X3DFlyViewer.js +7 -4
  87. package/src/x_ite/Browser/Rendering/X3DRenderingContext.js +20 -15
  88. package/src/x_ite/Browser/Shaders/Shaders.js +19 -15
  89. package/src/x_ite/Browser/Text/X3DTextContext.js +16 -16
  90. package/src/x_ite/Browser/Time/X3DTimeContext.js +3 -2
  91. package/src/x_ite/Browser/VERSION.js +1 -1
  92. package/src/x_ite/Browser/VolumeRendering/VolumeMaterial.js +2 -2
  93. package/src/x_ite/Browser/X3DBrowser.js +1 -2
  94. package/src/x_ite/Browser/X3DBrowserContext.js +0 -5
  95. package/src/x_ite/Components/Core/MetadataBoolean.js +8 -1
  96. package/src/x_ite/Components/Core/MetadataDouble.js +8 -1
  97. package/src/x_ite/Components/Core/MetadataFloat.js +8 -1
  98. package/src/x_ite/Components/Core/MetadataInteger.js +8 -1
  99. package/src/x_ite/Components/Core/MetadataSet.js +8 -1
  100. package/src/x_ite/Components/Core/MetadataString.js +8 -1
  101. package/src/x_ite/Components/Core/X3DPrototypeInstance.js +9 -6
  102. package/src/x_ite/Components/CubeMapTexturing/ImageCubeMapTexture.js +2 -1
  103. package/src/x_ite/Components/DIS/DISEntityTypeMapping.js +1 -1
  104. package/src/x_ite/Components/EnvironmentalEffects/X3DBackgroundNode.js +5 -1
  105. package/src/x_ite/Components/Grouping/X3DGroupingNode.js +2 -0
  106. package/src/x_ite/Components/HAnim/HAnimHumanoid.js +34 -2
  107. package/src/x_ite/Components/HAnim/HAnimMotion.js +331 -15
  108. package/src/x_ite/Components/Lighting/DirectionalLight.js +1 -3
  109. package/src/x_ite/Components/Lighting/PointLight.js +1 -3
  110. package/src/x_ite/Components/Lighting/SpotLight.js +1 -3
  111. package/src/x_ite/Components/Networking/X3DUrlObject.js +5 -4
  112. package/src/x_ite/Components/ParticleSystems/ParticleSystem.js +47 -51
  113. package/src/x_ite/Components/Rendering/X3DGeometryNode.js +4 -2
  114. package/src/x_ite/Components/RigidBodyPhysics/Contact.js +1 -1
  115. package/src/x_ite/Components/Shaders/X3DProgrammableShaderObject.js +1 -1
  116. package/src/x_ite/Components/Shape/FillProperties.js +4 -0
  117. package/src/x_ite/Components/Shape/LineProperties.js +4 -0
  118. package/src/x_ite/Components/Shape/PointProperties.js +4 -0
  119. package/src/x_ite/Components/Shape/X3DMaterialNode.js +44 -20
  120. package/src/x_ite/Components/Sound/AudioClip.js +2 -1
  121. package/src/x_ite/Components/Text/X3DFontStyleNode.js +13 -23
  122. package/src/x_ite/Components/Texturing/ImageTexture.js +2 -1
  123. package/src/x_ite/Components/Texturing/MovieTexture.js +2 -1
  124. package/src/x_ite/Components/Texturing3D/ImageTextureAtlas.js +2 -1
  125. package/src/x_ite/Components/Time/TimeSensor.js +25 -24
  126. package/src/x_ite/Components/Time/X3DTimeDependentNode.js +5 -4
  127. package/src/x_ite/Execution/BindableList.js +3 -3
  128. package/src/x_ite/Execution/X3DScene.js +2 -0
  129. package/src/x_ite/Parser/XMLParser.js +12 -2
  130. package/src/x_ite/Rendering/MultiSampleFrameBuffer.js +264 -26
  131. package/src/x_ite/Rendering/PointingBuffer.js +5 -7
  132. package/src/x_ite/Rendering/TextureBuffer.js +6 -14
  133. package/src/x_ite/Rendering/X3DRenderObject.js +28 -28
  134. package/src/x_ite/X3D.js +0 -1
  135. package/src/x_ite/X3DCanvasElement.js +2 -0
  136. package/src/x_ite.html +23 -24
  137. package/x_ite.min.html +23 -24
  138. /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 - 180px);
55
+ height: calc(100vh - 128px);
42
56
  }
43
57
 
44
58
  .viewer-column1 {
@@ -105,248 +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
- /* find ./docs/glTF/ -type f -name "*.gltf" -o -name "*.glb" | sort */
124
+ // TESTS_BEGIN
125
+
110
126
  const models = [
111
- "Bonsai 1/Bonsai 1.gltf",
112
- "Bus Stop 1/Bus Stop 1.gltf",
113
- "NeilArmstrong/NeilArmstrong.glb",
114
- "YetiWarrior/scene.gltf",
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",
115
133
  ];
116
134
 
117
- models .server = "https://create3000.github.io/media/glTF/";
118
-
119
- /* find . -type f -name "*.gltf" | grep "/glTF/" | sort */
120
135
  const glTF = [
121
- "2CylinderEngine/glTF/2CylinderEngine.gltf",
122
- "ABeautifulGame/glTF/ABeautifulGame.gltf",
123
- "AlphaBlendModeTest/glTF/AlphaBlendModeTest.gltf",
124
- "AnimatedCube/glTF/AnimatedCube.gltf",
125
- "AnimatedMorphCube/glTF/AnimatedMorphCube.gltf",
126
- "AnimatedMorphSphere/glTF/AnimatedMorphSphere.gltf",
127
- "AnimatedTriangle/glTF/AnimatedTriangle.gltf",
128
- "AntiqueCamera/glTF/AntiqueCamera.gltf",
129
- "AttenuationTest/glTF/AttenuationTest.gltf",
130
- "Avocado/glTF/Avocado.gltf",
131
- "BarramundiFish/glTF/BarramundiFish.gltf",
132
- "BoomBox/glTF/BoomBox.gltf",
133
- "BoomBoxWithAxes/glTF/BoomBoxWithAxes.gltf",
134
- "Box With Spaces/glTF/Box With Spaces.gltf",
135
- "Box/glTF/Box.gltf",
136
- "BoxAnimated/glTF/BoxAnimated.gltf",
137
- "BoxInterleaved/glTF/BoxInterleaved.gltf",
138
- "BoxTextured/glTF/BoxTextured.gltf",
139
- "BoxTexturedNonPowerOfTwo/glTF/BoxTexturedNonPowerOfTwo.gltf",
140
- "BoxVertexColors/glTF/BoxVertexColors.gltf",
141
- "BrainStem/glTF/BrainStem.gltf",
142
- "Buggy/glTF/Buggy.gltf",
143
- "Cameras/glTF/Cameras.gltf",
144
- "CesiumMan/glTF/CesiumMan.gltf",
145
- "CesiumMilkTruck/glTF/CesiumMilkTruck.gltf",
146
- "ClearCoatTest/glTF/ClearCoatTest.gltf",
147
- "Corset/glTF/Corset.gltf",
148
- "Cube/glTF/Cube.gltf",
149
- "DamagedHelmet/glTF/DamagedHelmet.gltf",
150
- "DragonAttenuation/glTF/DragonAttenuation.gltf",
151
- "Duck/glTF/Duck.gltf",
152
- "EmissiveStrengthTest/glTF/EmissiveStrengthTest.gltf",
153
- "EnvironmentTest/glTF/EnvironmentTest.gltf",
154
- "FlightHelmet/glTF/FlightHelmet.gltf",
155
- "Fox/glTF/Fox.gltf",
156
- "GearboxAssy/glTF/GearboxAssy.gltf",
157
- "GlamVelvetSofa/glTF/GlamVelvetSofa.gltf",
158
- "InterpolationTest/glTF/InterpolationTest.gltf",
159
- "IridescenceDielectricSpheres/glTF/IridescenceDielectricSpheres.gltf",
160
- "IridescenceLamp/glTF/IridescenceLamp.gltf",
161
- "IridescenceMetallicSpheres/glTF/IridescenceMetallicSpheres.gltf",
162
- "IridescenceSuzanne/glTF/IridescenceSuzanne.gltf",
163
- "IridescentDishWithOlives/glTF/IridescentDishWithOlives.gltf",
164
- "Lantern/glTF/Lantern.gltf",
165
- "LightsPunctualLamp/glTF/LightsPunctualLamp.gltf",
166
- "MaterialsVariantsShoe/glTF/MaterialsVariantsShoe.gltf",
167
- "MetalRoughSpheres/glTF/MetalRoughSpheres.gltf",
168
- "MetalRoughSpheresNoTextures/glTF/MetalRoughSpheresNoTextures.gltf",
169
- "MorphPrimitivesTest/glTF/MorphPrimitivesTest.gltf",
170
- "MorphStressTest/glTF/MorphStressTest.gltf",
171
- "MosquitoInAmber/glTF/MosquitoInAmber.gltf",
172
- "MultiUVTest/glTF/MultiUVTest.gltf",
173
- "MultipleScenes/glTF/MultipleScenes.gltf",
174
- "NormalTangentMirrorTest/glTF/NormalTangentMirrorTest.gltf",
175
- "NormalTangentTest/glTF/NormalTangentTest.gltf",
176
- "OrientationTest/glTF/OrientationTest.gltf",
177
- "ReciprocatingSaw/glTF/ReciprocatingSaw.gltf",
178
- "RecursiveSkeletons/glTF/RecursiveSkeletons.gltf",
179
- "RiggedFigure/glTF/RiggedFigure.gltf",
180
- "RiggedSimple/glTF/RiggedSimple.gltf",
181
- "SciFiHelmet/glTF/SciFiHelmet.gltf",
182
- "SheenChair/glTF/SheenChair.gltf",
183
- "SheenCloth/glTF/SheenCloth.gltf",
184
- "SimpleMeshes/glTF/SimpleMeshes.gltf",
185
- "SimpleMorph/glTF/SimpleMorph.gltf",
186
- "SimpleSkin/glTF/SimpleSkin.gltf",
187
- "SimpleSparseAccessor/glTF/SimpleSparseAccessor.gltf",
188
- "SpecGlossVsMetalRough/glTF/SpecGlossVsMetalRough.gltf",
189
- "SpecularTest/glTF/SpecularTest.gltf",
190
- "Sponza/glTF/Sponza.gltf",
191
- "StainedGlassLamp/glTF/StainedGlassLamp.gltf",
192
- "Suzanne/glTF/Suzanne.gltf",
193
- "TextureCoordinateTest/glTF/TextureCoordinateTest.gltf",
194
- "TextureEncodingTest/glTF/TextureEncodingTest.gltf",
195
- "TextureLinearInterpolationTest/glTF/TextureLinearInterpolationTest.gltf",
196
- "TextureSettingsTest/glTF/TextureSettingsTest.gltf",
197
- "TextureTransformMultiTest/glTF/TextureTransformMultiTest.gltf",
198
- "TextureTransformTest/glTF/TextureTransformTest.gltf",
199
- "ToyCar/glTF/ToyCar.gltf",
200
- "TransmissionRoughnessTest/glTF/TransmissionRoughnessTest.gltf",
201
- "TransmissionTest/glTF/TransmissionTest.gltf",
202
- "Triangle/glTF/Triangle.gltf",
203
- "TriangleWithoutIndices/glTF/TriangleWithoutIndices.gltf",
204
- "TwoSidedPlane/glTF/TwoSidedPlane.gltf",
205
- "Unicode❤♻Test/glTF/Unicode❤♻Test.gltf",
206
- "UnlitTest/glTF/UnlitTest.gltf",
207
- "VC/glTF/VC.gltf",
208
- "VertexColorTest/glTF/VertexColorTest.gltf",
209
- "WaterBottle/glTF/WaterBottle.gltf",
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",
210
449
  ];
211
450
 
212
- glTF .server = "https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/";
213
-
214
- /* find . -type f -name "*.glb" | grep "/glTF-Binary/" | sort */
215
451
  const glb = [
216
- "2CylinderEngine/glTF-Binary/2CylinderEngine.glb",
217
- "AlphaBlendModeTest/glTF-Binary/AlphaBlendModeTest.glb",
218
- "AnimatedMorphCube/glTF-Binary/AnimatedMorphCube.glb",
219
- "AnimatedMorphSphere/glTF-Binary/AnimatedMorphSphere.glb",
220
- "AntiqueCamera/glTF-Binary/AntiqueCamera.glb",
221
- "AttenuationTest/glTF-Binary/AttenuationTest.glb",
222
- "Avocado/glTF-Binary/Avocado.glb",
223
- "BarramundiFish/glTF-Binary/BarramundiFish.glb",
224
- "BoomBox/glTF-Binary/BoomBox.glb",
225
- "Box/glTF-Binary/Box.glb",
226
- "BoxAnimated/glTF-Binary/BoxAnimated.glb",
227
- "BoxInterleaved/glTF-Binary/BoxInterleaved.glb",
228
- "BoxTextured/glTF-Binary/BoxTextured.glb",
229
- "BoxTexturedNonPowerOfTwo/glTF-Binary/BoxTexturedNonPowerOfTwo.glb",
230
- "BoxVertexColors/glTF-Binary/BoxVertexColors.glb",
231
- "BrainStem/glTF-Binary/BrainStem.glb",
232
- "Buggy/glTF-Binary/Buggy.glb",
233
- "CesiumMan/glTF-Binary/CesiumMan.glb",
234
- "CesiumMilkTruck/glTF-Binary/CesiumMilkTruck.glb",
235
- "ClearCoatTest/glTF-Binary/ClearCoatTest.glb",
236
- "Corset/glTF-Binary/Corset.glb",
237
- "DamagedHelmet/glTF-Binary/DamagedHelmet.glb",
238
- "DragonAttenuation/glTF-Binary/DragonAttenuation.glb",
239
- "Duck/glTF-Binary/Duck.glb",
240
- "EmissiveStrengthTest/glTF-Binary/EmissiveStrengthTest.glb",
241
- "Fox/glTF-Binary/Fox.glb",
242
- "GearboxAssy/glTF-Binary/GearboxAssy.glb",
243
- "GlamVelvetSofa/glTF-Binary/GlamVelvetSofa.glb",
244
- "InterpolationTest/glTF-Binary/InterpolationTest.glb",
245
- "IridescenceLamp/glTF-Binary/IridescenceLamp.glb",
246
- "IridescenceSuzanne/glTF-Binary/IridescenceSuzanne.glb",
247
- "IridescentDishWithOlives/glTF-Binary/IridescentDishWithOlives.glb",
248
- "Lantern/glTF-Binary/Lantern.glb",
249
- "LightsPunctualLamp/glTF-Binary/LightsPunctualLamp.glb",
250
- "MaterialsVariantsShoe/glTF-Binary/MaterialsVariantsShoe.glb",
251
- "MetalRoughSpheres/glTF-Binary/MetalRoughSpheres.glb",
252
- "MetalRoughSpheresNoTextures/glTF-Binary/MetalRoughSpheresNoTextures.glb",
253
- "MorphPrimitivesTest/glTF-Binary/MorphPrimitivesTest.glb",
254
- "MorphStressTest/glTF-Binary/MorphStressTest.glb",
255
- "MosquitoInAmber/glTF-Binary/MosquitoInAmber.glb",
256
- "MultiUVTest/glTF-Binary/MultiUVTest.glb",
257
- "NormalTangentMirrorTest/glTF-Binary/NormalTangentMirrorTest.glb",
258
- "NormalTangentTest/glTF-Binary/NormalTangentTest.glb",
259
- "OrientationTest/glTF-Binary/OrientationTest.glb",
260
- "ReciprocatingSaw/glTF-Binary/ReciprocatingSaw.glb",
261
- "RecursiveSkeletons/glTF-Binary/RecursiveSkeletons.glb",
262
- "RiggedFigure/glTF-Binary/RiggedFigure.glb",
263
- "RiggedSimple/glTF-Binary/RiggedSimple.glb",
264
- "SheenChair/glTF-Binary/SheenChair.glb",
265
- "SpecGlossVsMetalRough/glTF-Binary/SpecGlossVsMetalRough.glb",
266
- "SpecularTest/glTF-Binary/SpecularTest.glb",
267
- "TextureCoordinateTest/glTF-Binary/TextureCoordinateTest.glb",
268
- "TextureEncodingTest/glTF-Binary/TextureEncodingTest.glb",
269
- "TextureLinearInterpolationTest/glTF-Binary/TextureLinearInterpolationTest.glb",
270
- "TextureSettingsTest/glTF-Binary/TextureSettingsTest.glb",
271
- "TextureTransformMultiTest/glTF-Binary/TextureTransformMultiTest.glb",
272
- "ToyCar/glTF-Binary/ToyCar.glb",
273
- "TransmissionRoughnessTest/glTF-Binary/TransmissionRoughnessTest.glb",
274
- "TransmissionTest/glTF-Binary/TransmissionTest.glb",
275
- "Unicode❤♻Test/glTF-Binary/Unicode❤♻Test.glb",
276
- "UnlitTest/glTF-Binary/UnlitTest.glb",
277
- "VC/glTF-Binary/VC.glb",
278
- "VertexColorTest/glTF-Binary/VertexColorTest.glb",
279
- "WaterBottle/glTF-Binary/WaterBottle.glb",
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",
280
591
  ];
281
592
 
282
- glb .server = "https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/";
283
-
284
- /* find . -type f -name "*.gltf" | grep "/glTF-Draco/" | sort */
285
593
  const draco = [
286
- "2CylinderEngine/glTF-Draco/2CylinderEngine.gltf",
287
- "Avocado/glTF-Draco/Avocado.gltf",
288
- "BarramundiFish/glTF-Draco/BarramundiFish.gltf",
289
- "BoomBox/glTF-Draco/BoomBox.gltf",
290
- "Box/glTF-Draco/Box.gltf",
291
- "BrainStem/glTF-Draco/BrainStem.gltf",
292
- "Buggy/glTF-Draco/Buggy.gltf",
293
- "CesiumMan/glTF-Draco/CesiumMan.gltf",
294
- "CesiumMilkTruck/glTF-Draco/CesiumMilkTruck.gltf",
295
- "Corset/glTF-Draco/Corset.gltf",
296
- "Duck/glTF-Draco/Duck.gltf",
297
- "GearboxAssy/glTF-Draco/GearboxAssy.gltf",
298
- "Lantern/glTF-Draco/Lantern.gltf",
299
- "MorphPrimitivesTest/glTF-Draco/MorphPrimitivesTest.gltf",
300
- "ReciprocatingSaw/glTF-Draco/ReciprocatingSaw.gltf",
301
- "RiggedFigure/glTF-Draco/RiggedFigure.gltf",
302
- "RiggedSimple/glTF-Draco/RiggedSimple.gltf",
303
- "VC/glTF-Draco/VC.gltf",
304
- "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",
305
628
  ];
306
629
 
307
- draco .server = "https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/";
308
-
309
- /* find . -type f -name "*.gltf" | grep "/glTF-Embedded//" | sort */
310
630
  const embedded = [
311
- "2CylinderEngine/glTF-Embedded/2CylinderEngine.gltf",
312
- "AlphaBlendModeTest/glTF-Embedded/AlphaBlendModeTest.gltf",
313
- "AnimatedTriangle/glTF-Embedded/AnimatedTriangle.gltf",
314
- "Box/glTF-Embedded/Box.gltf",
315
- "BoxAnimated/glTF-Embedded/BoxAnimated.gltf",
316
- "BoxInterleaved/glTF-Embedded/BoxInterleaved.gltf",
317
- "BoxTextured/glTF-Embedded/BoxTextured.gltf",
318
- "BoxTexturedNonPowerOfTwo/glTF-Embedded/BoxTexturedNonPowerOfTwo.gltf",
319
- "BoxVertexColors/glTF-Embedded/BoxVertexColors.gltf",
320
- "BrainStem/glTF-Embedded/BrainStem.gltf",
321
- "Buggy/glTF-Embedded/Buggy.gltf",
322
- "Cameras/glTF-Embedded/Cameras.gltf",
323
- "CesiumMan/glTF-Embedded/CesiumMan.gltf",
324
- "CesiumMilkTruck/glTF-Embedded/CesiumMilkTruck.gltf",
325
- "DamagedHelmet/glTF-Embedded/DamagedHelmet.gltf",
326
- "Duck/glTF-Embedded/Duck.gltf",
327
- "GearboxAssy/glTF-Embedded/GearboxAssy.gltf",
328
- "MetalRoughSpheres/glTF-Embedded/MetalRoughSpheres.gltf",
329
- "MultiUVTest/glTF-Embedded/MultiUVTest.gltf",
330
- "MultipleScenes/glTF-Embedded/MultipleScenes.gltf",
331
- "NormalTangentMirrorTest/glTF-Embedded/NormalTangentMirrorTest.gltf",
332
- "NormalTangentTest/glTF-Embedded/NormalTangentTest.gltf",
333
- "OrientationTest/glTF-Embedded/OrientationTest.gltf",
334
- "ReciprocatingSaw/glTF-Embedded/ReciprocatingSaw.gltf",
335
- "RiggedFigure/glTF-Embedded/RiggedFigure.gltf",
336
- "RiggedSimple/glTF-Embedded/RiggedSimple.gltf",
337
- "SimpleMeshes/glTF-Embedded/SimpleMeshes.gltf",
338
- "SimpleMorph/glTF-Embedded/SimpleMorph.gltf",
339
- "SimpleSkin/glTF-Embedded/SimpleSkin.gltf",
340
- "SimpleSparseAccessor/glTF-Embedded/SimpleSparseAccessor.gltf",
341
- "TextureCoordinateTest/glTF-Embedded/TextureCoordinateTest.gltf",
342
- "TextureSettingsTest/glTF-Embedded/TextureSettingsTest.gltf",
343
- "Triangle/glTF-Embedded/Triangle.gltf",
344
- "TriangleWithoutIndices/glTF-Embedded/TriangleWithoutIndices.gltf",
345
- "VC/glTF-Embedded/VC.gltf",
346
- "VertexColorTest/glTF-Embedded/VertexColorTest.gltf",
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",
347
701
  ];
348
702
 
349
- embedded .server = "https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/";
703
+ // TESTS_END
350
704
 
351
705
  function createList (description, array)
352
706
  {
@@ -354,23 +708,38 @@ function createList (description, array)
354
708
 
355
709
  $("<div></div>") .append ($("<strong></strong>") .text (description)) .appendTo (column);
356
710
 
357
- const list = $("<ul></ul>") .appendTo (column);
711
+ const
712
+ list = $("<ul></ul>") .appendTo (column),
713
+ map = new Map ();
358
714
 
359
715
  for (const filename of array)
360
716
  {
361
717
  const
362
- match = filename .match (/^([^\/]+)/),
718
+ match = filename .match (/([^\/]+)\.\w+$/),
363
719
  name = match [1] .replace (/([A-Z]+)/g, " $1") .replace (/\s+/g, " ") .trim ();
364
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
+ {
365
729
  $("<a></a>")
366
730
  .text (name)
367
- .attr ("href", array .server + filename)
731
+ .attr ("href", filename)
368
732
  .appendTo ($("<li></li>") .appendTo (list))
369
- .on ("click", loadURL .bind (null, filename, array .server));
733
+ .on ("click", loadURL .bind (null, filename));
370
734
  }
371
735
  }
372
736
 
373
- async function loadURL (filename, server, event)
737
+ function cmp (a, b)
738
+ {
739
+ return a > b ? 1 : a < b ? -1 : 0;
740
+ }
741
+
742
+ async function loadURL (filename, event)
374
743
  {
375
744
  event .preventDefault ();
376
745
 
@@ -378,7 +747,7 @@ async function loadURL (filename, server, event)
378
747
 
379
748
  const Browser = X3D .getBrowser ();
380
749
 
381
- await Browser .loadURL (new X3D .MFString (server + filename));
750
+ await Browser .loadURL (new X3D .MFString (filename));
382
751
 
383
752
  try
384
753
  {
@@ -392,18 +761,25 @@ async function loadURL (filename, server, event)
392
761
  {
393
762
  const timeSensor = group .children [0];
394
763
 
395
- timeSensor .loop = true;
396
- timeSensor .stopTime = Date .now () / 1000;
397
-
398
764
  $("<input></input>")
399
765
  .attr ("id", "animation" + i)
400
766
  .attr ("type", "checkbox")
401
767
  .on ("change", event =>
402
768
  {
403
- if ($(event .target) .is (":checked"))
404
- timeSensor .startTime = Date .now () / 1000;
405
- else
406
- timeSensor .stopTime = Date .now () / 1000;
769
+ for (const group of animations .children)
770
+ group .children [0] .stopTime = Date .now () / 1000;
771
+
772
+ if (!event .target .checked)
773
+ return;
774
+
775
+ $("#animations") .children () .each ((i, element) =>
776
+ {
777
+ if (element !== event .target)
778
+ element .checked = false;
779
+ });
780
+
781
+ timeSensor .loop = true;
782
+ timeSensor .startTime = Date .now () / 1000;
407
783
  })
408
784
  .appendTo ($("#animations"));
409
785
 
@@ -432,3 +808,4 @@ createList ("glb Sample Models", glb);
432
808
  createList ("glTF Draco Sample Models", draco);
433
809
  createList ("glTF Embedded Sample Models", embedded);
434
810
  </script>
811
+ </pre>