├── .github └── workflows │ ├── CI.yml │ └── reuse.yml ├── .gitignore ├── .reuse └── dep5 ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.adoc ├── COPYING.adoc ├── LICENSE.adoc ├── LICENSES ├── Apache-2.0.txt ├── CC-BY-4.0.txt ├── LicenseRef-KhronosSpecCopyright.txt └── LicenseRef-TBD.txt ├── README.md ├── extensions ├── 0.8 │ ├── Khronos │ │ └── .gitkeep │ └── Vendor │ │ └── CESIUM_binary_glTF │ │ ├── BenchData │ │ ├── 100kTris │ │ │ └── 100kTris.dae │ │ ├── BinaryTree │ │ │ └── BinaryTree.dae │ │ ├── Cesium_Air │ │ │ ├── 0_Cesium_Air.png │ │ │ ├── 1_Cesium_Air_Prop.png │ │ │ └── Cesium_Air.dae │ │ ├── LargeTex │ │ │ ├── LargeTex.dae │ │ │ └── lightmap.png │ │ ├── README.md │ │ ├── SpinningTree │ │ │ └── SpinningTree.dae │ │ ├── TenTex │ │ │ ├── TenTex.dae │ │ │ ├── lightmap.001.png │ │ │ ├── lightmap.002.png │ │ │ ├── lightmap.003.png │ │ │ ├── lightmap.004.png │ │ │ ├── lightmap.005.png │ │ │ ├── lightmap.006.png │ │ │ ├── lightmap.007.png │ │ │ ├── lightmap.008.png │ │ │ ├── lightmap.009.png │ │ │ └── lightmap.png │ │ └── thumb │ │ │ ├── 100kTris.jpg │ │ │ ├── 1200_12th.jpg │ │ │ ├── BinaryTree.jpg │ │ │ ├── Cesium_Air.jpg │ │ │ ├── EauClaire.jpg │ │ │ ├── LargeTex.jpg │ │ │ ├── SpinningTree.jpg │ │ │ └── TenTex.jpg │ │ ├── Figures.pptx │ │ ├── README.md │ │ └── layout.png ├── 1.0 │ ├── Khronos │ │ ├── KHR_binary_glTF │ │ │ ├── BenchData │ │ │ │ ├── 100kTris │ │ │ │ │ └── 100kTris.dae │ │ │ │ ├── BinaryTree │ │ │ │ │ └── BinaryTree.dae │ │ │ │ ├── Cesium_Air │ │ │ │ │ ├── 0_Cesium_Air.png │ │ │ │ │ ├── 1_Cesium_Air_Prop.png │ │ │ │ │ └── Cesium_Air.dae │ │ │ │ ├── LargeTex │ │ │ │ │ ├── LargeTex.dae │ │ │ │ │ └── lightmap.png │ │ │ │ ├── README.md │ │ │ │ ├── SpinningTree │ │ │ │ │ └── SpinningTree.dae │ │ │ │ ├── TenTex │ │ │ │ │ ├── TenTex.dae │ │ │ │ │ ├── lightmap.001.png │ │ │ │ │ ├── lightmap.002.png │ │ │ │ │ ├── lightmap.003.png │ │ │ │ │ ├── lightmap.004.png │ │ │ │ │ ├── lightmap.005.png │ │ │ │ │ ├── lightmap.006.png │ │ │ │ │ ├── lightmap.007.png │ │ │ │ │ ├── lightmap.008.png │ │ │ │ │ ├── lightmap.009.png │ │ │ │ │ └── lightmap.png │ │ │ │ └── thumb │ │ │ │ │ ├── 100kTris.jpg │ │ │ │ │ ├── 1200_12th.jpg │ │ │ │ │ ├── BinaryTree.jpg │ │ │ │ │ ├── Cesium_Air.jpg │ │ │ │ │ ├── EauClaire.jpg │ │ │ │ │ ├── LargeTex.jpg │ │ │ │ │ ├── SpinningTree.jpg │ │ │ │ │ └── TenTex.jpg │ │ │ ├── README.md │ │ │ ├── figures │ │ │ │ ├── Figures.pptx │ │ │ │ └── layout.png │ │ │ └── schema │ │ │ │ ├── image.KHR_binary_glTF.schema.json │ │ │ │ └── shader.KHR_binary_glTF.schema.json │ │ └── KHR_materials_common │ │ │ ├── README.md │ │ │ └── schema │ │ │ ├── examples │ │ │ └── lights.json │ │ │ ├── glTF.KHR_materials_common.schema.json │ │ │ ├── light.ambient.schema.json │ │ │ ├── light.directional.schema.json │ │ │ ├── light.point.schema.json │ │ │ ├── light.schema.json │ │ │ ├── light.spot.schema.json │ │ │ └── node.KHR_materials_common.schema.json │ └── Vendor │ │ ├── CESIUM_RTC │ │ ├── CESIUM_RTC.schema.json │ │ └── README.md │ │ └── WEB3D_quantized_attributes │ │ ├── README.md │ │ └── schema │ │ └── WEB3D_quantized_attributes.accessor.schema.json ├── 2.0 │ ├── Archived │ │ ├── KHR_materials_pbrSpecularGlossiness │ │ │ ├── README.md │ │ │ ├── examples │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── convert-between-workflows-bjs │ │ │ │ │ ├── images │ │ │ │ │ │ └── countrySpecularHDR.dds │ │ │ │ │ ├── index.html │ │ │ │ │ └── js │ │ │ │ │ │ ├── babylon.colorExtensions.js │ │ │ │ │ │ ├── babylon.pbrUtilities.js │ │ │ │ │ │ └── dat.gui.min.js │ │ │ │ └── convert-between-workflows │ │ │ │ │ ├── images │ │ │ │ │ ├── Uffizi_Gallery_Irradiance_NX.png │ │ │ │ │ ├── Uffizi_Gallery_Irradiance_NY.png │ │ │ │ │ ├── Uffizi_Gallery_Irradiance_NZ.png │ │ │ │ │ ├── Uffizi_Gallery_Irradiance_PX.png │ │ │ │ │ ├── Uffizi_Gallery_Irradiance_PY.png │ │ │ │ │ ├── Uffizi_Gallery_Irradiance_PZ.png │ │ │ │ │ ├── Uffizi_Gallery_Radiance_NX.png │ │ │ │ │ ├── Uffizi_Gallery_Radiance_NY.png │ │ │ │ │ ├── Uffizi_Gallery_Radiance_NZ.png │ │ │ │ │ ├── Uffizi_Gallery_Radiance_PX.png │ │ │ │ │ ├── Uffizi_Gallery_Radiance_PY.png │ │ │ │ │ └── Uffizi_Gallery_Radiance_PZ.png │ │ │ │ │ ├── index.html │ │ │ │ │ └── js │ │ │ │ │ ├── dat.gui.min.js │ │ │ │ │ ├── three.colorExtensions.js │ │ │ │ │ ├── three.min.js │ │ │ │ │ └── three.pbrUtilities.js │ │ │ ├── figures │ │ │ │ └── specular-glossiness material.png │ │ │ └── schema │ │ │ │ └── glTF.KHR_materials_pbrSpecularGlossiness.schema.json │ │ ├── KHR_techniques_webgl │ │ │ ├── README.md │ │ │ ├── examples │ │ │ │ └── sample_techniques.gltf │ │ │ └── schema │ │ │ │ ├── glTF.KHR_techniques_webgl.schema.json │ │ │ │ ├── material.KHR_techniques_webgl.schema.json │ │ │ │ ├── program.schema.json │ │ │ │ ├── shader.schema.json │ │ │ │ ├── technique.attribute.schema.json │ │ │ │ ├── technique.schema.json │ │ │ │ ├── technique.uniform.schema.json │ │ │ │ └── uniform.value.schema.json │ │ └── KHR_xmp │ │ │ ├── README.md │ │ │ └── schema │ │ │ ├── examples │ │ │ ├── MODEL_ROUNDED_CUBE_PART_1 │ │ │ │ ├── indices.bin │ │ │ │ ├── normals.bin │ │ │ │ └── positions.bin │ │ │ └── xmp.gltf │ │ │ ├── glTF.KHR_xmp.schema.json │ │ │ └── node.KHR_xmp.schema.json │ ├── Khronos │ │ ├── KHR_animation_pointer │ │ │ ├── README.md │ │ │ └── schema │ │ │ │ └── animation.channel.target.KHR_animation_pointer.schema.json │ │ ├── KHR_draco_mesh_compression │ │ │ ├── README.md │ │ │ ├── figures │ │ │ │ └── structure.png │ │ │ └── schema │ │ │ │ └── mesh.primitive.KHR_draco_mesh_compression.schema.json │ │ ├── KHR_lights_punctual │ │ │ ├── README.md │ │ │ └── schema │ │ │ │ ├── examples │ │ │ │ ├── MODEL_ROUNDED_CUBE_PART_1 │ │ │ │ │ ├── indices.bin │ │ │ │ │ ├── normals.bin │ │ │ │ │ └── positions.bin │ │ │ │ └── lights.gltf │ │ │ │ ├── glTF.KHR_lights_punctual.schema.json │ │ │ │ ├── light.schema.json │ │ │ │ ├── light.spot.schema.json │ │ │ │ └── node.KHR_lights_punctual.schema.json │ │ ├── KHR_materials_anisotropy │ │ │ ├── README.md │ │ │ └── schema │ │ │ │ └── material.KHR_materials_anisotropy.schema.json │ │ ├── KHR_materials_clearcoat │ │ │ ├── README.md │ │ │ └── schema │ │ │ │ └── material.KHR_materials_clearcoat.schema.json │ │ ├── KHR_materials_diffuse_transmission │ │ │ ├── README.md │ │ │ ├── figures │ │ │ │ ├── attenuation_dt_0.0.jpg │ │ │ │ ├── attenuation_dt_0.5.jpg │ │ │ │ ├── attenuation_dt_1.0.jpg │ │ │ │ ├── bsdf.jpg │ │ │ │ ├── bsdf.svg │ │ │ │ ├── candle_0.0.jpg │ │ │ │ ├── candle_0.25.jpg │ │ │ │ ├── candle_0.5.jpg │ │ │ │ ├── color_0.0.jpg │ │ │ │ ├── color_0.25.jpg │ │ │ │ ├── color_0.5.jpg │ │ │ │ ├── color_0.75.jpg │ │ │ │ ├── color_1.0.jpg │ │ │ │ ├── color_tex_0.0.jpg │ │ │ │ ├── color_tex_0.25.jpg │ │ │ │ ├── color_tex_0.5.jpg │ │ │ │ ├── color_tex_0.75.jpg │ │ │ │ ├── color_tex_1.0.jpg │ │ │ │ ├── dt_transmission_0.0.jpg │ │ │ │ ├── dt_transmission_0.25.jpg │ │ │ │ ├── dt_transmission_0.5.jpg │ │ │ │ ├── dt_transmission_0.75.jpg │ │ │ │ ├── dt_transmission_1.0.jpg │ │ │ │ ├── factor_0.0.jpg │ │ │ │ ├── factor_0.25.jpg │ │ │ │ ├── factor_0.5.jpg │ │ │ │ ├── factor_0.75.jpg │ │ │ │ ├── factor_1.0.jpg │ │ │ │ ├── factor_tex.jpg │ │ │ │ ├── factor_tex_inlay.jpg │ │ │ │ ├── leaves.jpg │ │ │ │ ├── translucent-roughness.png │ │ │ │ ├── transmission-translucency_thin.jpg │ │ │ │ ├── transmission-translucency_thin_angle.jpg │ │ │ │ └── transmissive-roughness.png │ │ │ └── schema │ │ │ │ └── material.KHR_materials_diffuse_transmission.schema.json │ │ ├── KHR_materials_dispersion │ │ │ ├── README.md │ │ │ ├── figures │ │ │ │ ├── Dispersion.jpg │ │ │ │ ├── Dispersion_AdobeStager.jpg │ │ │ │ └── Dispersion_BabylonJS.jpg │ │ │ └── schema │ │ │ │ └── material.KHR_materials_dispersion.schema.json │ │ ├── KHR_materials_emissive_strength │ │ │ ├── README.md │ │ │ └── schema │ │ │ │ └── material.KHR_materials_emissive_strength.schema.json │ │ ├── KHR_materials_ior │ │ │ ├── README.md │ │ │ └── schema │ │ │ │ └── material.KHR_materials_ior.schema.json │ │ ├── KHR_materials_iridescence │ │ │ ├── README.md │ │ │ ├── figures │ │ │ │ ├── interference.png │ │ │ │ ├── ior-comparison.png │ │ │ │ └── thickness-comparison.png │ │ │ └── schema │ │ │ │ └── material.KHR_materials_iridescence.schema.json │ │ ├── KHR_materials_sheen │ │ │ ├── README.md │ │ │ ├── figures │ │ │ │ └── cushion.png │ │ │ └── schema │ │ │ │ └── material.KHR_materials_sheen.schema.json │ │ ├── KHR_materials_specular │ │ │ ├── README.md │ │ │ ├── figures │ │ │ │ ├── specular-color-2.png │ │ │ │ ├── specular-color-refraction-2.png │ │ │ │ ├── specular-color-refraction.png │ │ │ │ ├── specular-color-thin-2.png │ │ │ │ ├── specular-color-thin.png │ │ │ │ ├── specular-color.png │ │ │ │ ├── specular-refraction.png │ │ │ │ ├── specular-thin.png │ │ │ │ └── specular.png │ │ │ └── schema │ │ │ │ └── material.KHR_materials_specular.schema.json │ │ ├── KHR_materials_transmission │ │ │ ├── README.md │ │ │ ├── figures │ │ │ │ ├── ConstantTransmission.png │ │ │ │ ├── Multi-layer Transparency.png │ │ │ │ ├── Nodes.dot │ │ │ │ ├── Nodes.png │ │ │ │ ├── OpacityComparison.png │ │ │ │ ├── Roughness.png │ │ │ │ ├── Screen Shot 2019-10-25 at 3.40.21 PM.png │ │ │ │ ├── TransmissionTexture.png │ │ │ │ └── TransmissionWithMask.png │ │ │ └── schema │ │ │ │ └── material.KHR_materials_transmission.schema.json │ │ ├── KHR_materials_unlit │ │ │ ├── README.md │ │ │ └── schema │ │ │ │ └── material.KHR_materials_unlit.schema.json │ │ ├── KHR_materials_variants │ │ │ ├── README.md │ │ │ ├── schema │ │ │ │ ├── glTF.KHR_materials_variants.schema.json │ │ │ │ └── mesh.primitive.KHR_materials_variants.schema.json │ │ │ └── sneakers.png │ │ ├── KHR_materials_volume │ │ │ ├── README.md │ │ │ ├── figures │ │ │ │ ├── base-color-absorption.png │ │ │ │ ├── ior.png │ │ │ │ ├── refraction-absorption.svg │ │ │ │ ├── thin-thick-rendering.png │ │ │ │ ├── thin-thick.svg │ │ │ │ └── transmissive-roughness.png │ │ │ └── schema │ │ │ │ └── material.KHR_materials_volume.schema.json │ │ ├── KHR_mesh_quantization │ │ │ └── README.md │ │ ├── KHR_node_visibility │ │ │ ├── README.md │ │ │ └── schema │ │ │ │ └── node.KHR_node_visibility.schema.json │ │ ├── KHR_texture_basisu │ │ │ ├── README.md │ │ │ └── schema │ │ │ │ └── texture.KHR_texture_basisu.schema.json │ │ ├── KHR_texture_transform │ │ │ ├── README.md │ │ │ └── schema │ │ │ │ └── textureInfo.KHR_texture_transform.schema.json │ │ └── KHR_xmp_json_ld │ │ │ ├── README.md │ │ │ └── schema │ │ │ ├── KHR_xmp_json_ld.schema.json │ │ │ └── glTF.KHR_xmp_json_ld.schema.json │ └── Vendor │ │ ├── .gitkeep │ │ ├── ADOBE_materials_clearcoat_specular │ │ ├── README.md │ │ └── schema │ │ │ └── glTF.ADOBE_materials_clearcoat_specular.schema.json │ │ ├── ADOBE_materials_clearcoat_tint │ │ ├── README.md │ │ └── schema │ │ │ └── material.ADOBE_materials_clearcoat_tint.schema.json │ │ ├── ADOBE_materials_thin_transparency │ │ ├── README.md │ │ ├── figures │ │ │ ├── coverage_and_transparency.png │ │ │ ├── coverage_vs_transparency.png │ │ │ ├── ior.png │ │ │ ├── surface_roughness_babylon.png │ │ │ ├── surface_roughness_dimension.png │ │ │ └── surface_tint.png │ │ └── schema │ │ │ └── glTF.ADOBE_materials_thin_transparency.schema.json │ │ ├── AGI_articulations │ │ ├── README.md │ │ └── schema │ │ │ ├── articulation.schema.json │ │ │ ├── articulation.stage.schema.json │ │ │ ├── gltf.AGI_articulations.schema.json │ │ │ └── node.AGI_articulations.schema.json │ │ ├── AGI_stk_metadata │ │ ├── README.md │ │ └── schema │ │ │ ├── gltf.AGI_stk_metadata.schema.json │ │ │ ├── node.AGI_stk_metadata.schema.json │ │ │ └── solarPanelGroup.schema.json │ │ ├── CESIUM_primitive_outline │ │ ├── README.md │ │ ├── figures │ │ │ ├── depth-fighting.png │ │ │ └── with-extension.png │ │ └── schema │ │ │ └── primitive.CESIUM_primitive_outline.schema.json │ │ ├── EXT_lights_ies │ │ ├── README.md │ │ └── schema │ │ │ ├── glTF.EXT_lights_ies.schema.json │ │ │ ├── lightProfile.schema.json │ │ │ └── node.EXT_lights_ies.schema.json │ │ ├── EXT_lights_image_based │ │ ├── README.md │ │ ├── figures │ │ │ └── Cube_map.svg │ │ └── schema │ │ │ ├── glTF.EXT_lights_image_based.schema.json │ │ │ ├── light.schema.json │ │ │ └── scene.EXT_lights_image_based.schema.json │ │ ├── EXT_mesh_gpu_instancing │ │ ├── README.md │ │ ├── samples │ │ │ ├── teapots_galore │ │ │ │ ├── mesh.bin │ │ │ │ ├── mesh_2.bin │ │ │ │ ├── teapots_galore.gltf │ │ │ │ └── transforms.bin │ │ │ └── teapots_galore_id │ │ │ │ ├── mesh.bin │ │ │ │ ├── mesh_2.bin │ │ │ │ ├── teapots_galore_id.gltf │ │ │ │ └── transforms.bin │ │ └── schema │ │ │ └── glTF.EXT_mesh_gpu_instancing.schema.json │ │ ├── EXT_mesh_manifold │ │ ├── README.md │ │ ├── samples │ │ │ └── manifold │ │ │ │ ├── manifold.bin │ │ │ │ ├── manifold.gltf │ │ │ │ ├── moon.jpg │ │ │ │ └── space.jpg │ │ └── schema │ │ │ └── mesh.EXT_mesh_manifold.schema.json │ │ ├── EXT_mesh_primitive_restart │ │ ├── README.md │ │ └── schema │ │ │ ├── EXT_mesh_primitive_restart.schema.json │ │ │ └── primitiveGroup.schema.json │ │ ├── EXT_meshopt_compression │ │ ├── README.md │ │ └── schema │ │ │ ├── buffer.EXT_meshopt_compression.schema.json │ │ │ └── bufferView.EXT_meshopt_compression.schema.json │ │ ├── EXT_texture_astc │ │ ├── README.md │ │ └── schema │ │ │ └── texture.EXT_texture_astc.schema.json │ │ ├── EXT_texture_webp │ │ ├── README.md │ │ └── schema │ │ │ └── glTF.EXT_texture_webp.schema.json │ │ ├── FB_geometry_metadata │ │ ├── README.md │ │ └── schema │ │ │ ├── scene.FB_geometry_metadata.schema.json │ │ │ └── sceneBounds.schema.json │ │ ├── GODOT_single_root │ │ └── README.md │ │ ├── GRIFFEL_bim_data │ │ ├── README.md │ │ └── schema │ │ │ ├── GRIFFEL_bim_data.schema.json │ │ │ ├── glTF.GRIFFEL_bim_data.schema.json │ │ │ └── node.GRIFFEL_bim_data.schema.json │ │ ├── MPEG_accessor_timed │ │ ├── README.md │ │ └── schema │ │ │ └── MPEG_accessor_timed.schema.json │ │ ├── MPEG_animation_timing │ │ ├── README.md │ │ └── schema │ │ │ └── MPEG_animation_timing.schema.json │ │ ├── MPEG_audio_spatial │ │ ├── README.md │ │ └── schema │ │ │ ├── MPEG_audio_spatial.listener.schema.json │ │ │ ├── MPEG_audio_spatial.reverb.property.schema.json │ │ │ ├── MPEG_audio_spatial.reverb.schema.json │ │ │ ├── MPEG_audio_spatial.schema.json │ │ │ └── MPEG_audio_spatial.source.schema.json │ │ ├── MPEG_buffer_circular │ │ ├── README.md │ │ └── schema │ │ │ └── MPEG_buffer_circular.schema.json │ │ ├── MPEG_media │ │ ├── README.md │ │ └── schema │ │ │ ├── MPEG_media.media.alternative.schema.json │ │ │ ├── MPEG_media.media.alternative.track.schema.json │ │ │ ├── MPEG_media.media.schema.json │ │ │ └── MPEG_media.schema.json │ │ ├── MPEG_mesh_linking │ │ ├── README.md │ │ └── schema │ │ │ └── MPEG_mesh_linking.schema.json │ │ ├── MPEG_scene_dynamic │ │ ├── README.md │ │ └── schema │ │ │ └── MPEG_scene_dynamic.schema.json │ │ ├── MPEG_texture_video │ │ ├── README.md │ │ └── schema │ │ │ └── MPEG_texture_video.schema.json │ │ ├── MPEG_viewport_recommended │ │ ├── README.md │ │ └── schema │ │ │ ├── MPEG_viewport_recommended.schema.json │ │ │ └── MPEG_viewport_recommended.viewport.schema.json │ │ ├── MSFT_lod │ │ ├── README.md │ │ └── schema │ │ │ └── glTF.MSFT_lod.schema.json │ │ ├── MSFT_packing_normalRoughnessMetallic │ │ ├── README.md │ │ └── schema │ │ │ └── glTF.MSFT_packing_normalRoughnessMetallic.schema.json │ │ ├── MSFT_packing_occlusionRoughnessMetallic │ │ ├── README.md │ │ └── schema │ │ │ └── glTF.MSFT_packing_occlusionRoughnessMetallic.schema.json │ │ ├── MSFT_texture_dds │ │ ├── README.md │ │ └── schema │ │ │ └── glTF.MSFT_texture_dds.schema.json │ │ └── NV_materials_mdl │ │ ├── README.md │ │ └── schema │ │ ├── bsdfMeasurement.schema.json │ │ ├── functionCall.argument.schema.json │ │ ├── functionCall.schema.json │ │ ├── functionCall.type.schema.json │ │ ├── glTF.NV_materials_mdl.schema.json │ │ ├── material.NV_materials_mdl.schema.json │ │ └── module.schema.json ├── Prefixes.md ├── README.md └── Template.md └── specification ├── 1.0 ├── README.md ├── figures │ ├── dictionary-objects.png │ ├── files.png │ ├── gltfOverview-0.2.0-small.png │ ├── gltfOverview-0.2.0.png │ └── pptx │ │ └── figures.pptx └── schema │ ├── accessor.schema.json │ ├── animation.channel.schema.json │ ├── animation.channel.target.schema.json │ ├── animation.parameter.schema.json │ ├── animation.sampler.schema.json │ ├── animation.schema.json │ ├── arrayValues.schema.json │ ├── asset.profile.schema.json │ ├── asset.schema.json │ ├── buffer.schema.json │ ├── bufferView.schema.json │ ├── camera.orthographic.schema.json │ ├── camera.perspective.schema.json │ ├── camera.schema.json │ ├── examples │ ├── accessors.json │ ├── animations.json │ ├── asset.json │ ├── bufferViews.json │ ├── buffers.json │ ├── cameras.json │ ├── extensions.json │ ├── images.json │ ├── materials.json │ ├── meshes.json │ ├── nodes.json │ ├── programs.json │ ├── samplers.json │ ├── scenes.json │ ├── shaders.json │ ├── skins.json │ ├── techniques.json │ └── textures.json │ ├── extension.schema.json │ ├── extras.schema.json │ ├── glTF.schema.json │ ├── glTFChildOfRootProperty.schema.json │ ├── glTFProperty.schema.json │ ├── glTFid.schema.json │ ├── image.schema.json │ ├── material.schema.json │ ├── material.values.schema.json │ ├── mesh.primitive.attribute.schema.json │ ├── mesh.primitive.schema.json │ ├── mesh.schema.json │ ├── node.schema.json │ ├── program.schema.json │ ├── sampler.schema.json │ ├── scene.schema.json │ ├── shader.schema.json │ ├── skin.schema.json │ ├── technique.attribute.schema.json │ ├── technique.parameters.schema.json │ ├── technique.schema.json │ ├── technique.states.functions.schema.json │ ├── technique.states.schema.json │ ├── technique.uniform.schema.json │ └── texture.schema.json ├── 2.0 ├── Makefile ├── ObjectModel.adoc ├── README.md ├── Specification.adoc ├── docinfo.html ├── figures │ ├── coordinate-system.png │ ├── figures.pptx │ ├── glb2.svg │ ├── gltfOverview-2.0.0d-small.png │ ├── gltfOverview-2.0.0d.png │ ├── materials.svg │ ├── objects.svg │ ├── padding-mat2-1byte.svg │ ├── padding-mat3-1byte.svg │ ├── padding-mat3-2byte.svg │ ├── pbr.dot │ ├── pbr.svg │ └── texcoords.svg ├── khronos.css └── schema │ ├── accessor.schema.json │ ├── accessor.sparse.indices.schema.json │ ├── accessor.sparse.schema.json │ ├── accessor.sparse.values.schema.json │ ├── animation.channel.schema.json │ ├── animation.channel.target.schema.json │ ├── animation.sampler.schema.json │ ├── animation.schema.json │ ├── asset.schema.json │ ├── buffer.schema.json │ ├── bufferView.schema.json │ ├── camera.orthographic.schema.json │ ├── camera.perspective.schema.json │ ├── camera.schema.json │ ├── extension.schema.json │ ├── extras.schema.json │ ├── glTF.schema.json │ ├── glTFChildOfRootProperty.schema.json │ ├── glTFProperty.schema.json │ ├── glTFid.schema.json │ ├── image.schema.json │ ├── material.normalTextureInfo.schema.json │ ├── material.occlusionTextureInfo.schema.json │ ├── material.pbrMetallicRoughness.schema.json │ ├── material.schema.json │ ├── mesh.primitive.schema.json │ ├── mesh.schema.json │ ├── node.schema.json │ ├── sampler.schema.json │ ├── scene.schema.json │ ├── skin.schema.json │ ├── texture.schema.json │ └── textureInfo.schema.json ├── README.md └── figures └── glTF_RGB_June16.svg /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.github/workflows/reuse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/.github/workflows/reuse.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/.gitignore -------------------------------------------------------------------------------- /.reuse/dep5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/.reuse/dep5 -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/CONTRIBUTING.adoc -------------------------------------------------------------------------------- /COPYING.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/COPYING.adoc -------------------------------------------------------------------------------- /LICENSE.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/LICENSE.adoc -------------------------------------------------------------------------------- /LICENSES/Apache-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/LICENSES/Apache-2.0.txt -------------------------------------------------------------------------------- /LICENSES/CC-BY-4.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/LICENSES/CC-BY-4.0.txt -------------------------------------------------------------------------------- /LICENSES/LicenseRef-KhronosSpecCopyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/LICENSES/LicenseRef-KhronosSpecCopyright.txt -------------------------------------------------------------------------------- /LICENSES/LicenseRef-TBD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/LICENSES/LicenseRef-TBD.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/README.md -------------------------------------------------------------------------------- /extensions/0.8/Khronos/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extensions/0.8/Vendor/CESIUM_binary_glTF/BenchData/100kTris/100kTris.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/0.8/Vendor/CESIUM_binary_glTF/BenchData/100kTris/100kTris.dae -------------------------------------------------------------------------------- /extensions/0.8/Vendor/CESIUM_binary_glTF/BenchData/BinaryTree/BinaryTree.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/0.8/Vendor/CESIUM_binary_glTF/BenchData/BinaryTree/BinaryTree.dae -------------------------------------------------------------------------------- /extensions/0.8/Vendor/CESIUM_binary_glTF/BenchData/Cesium_Air/0_Cesium_Air.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/0.8/Vendor/CESIUM_binary_glTF/BenchData/Cesium_Air/0_Cesium_Air.png -------------------------------------------------------------------------------- /extensions/0.8/Vendor/CESIUM_binary_glTF/BenchData/Cesium_Air/1_Cesium_Air_Prop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/0.8/Vendor/CESIUM_binary_glTF/BenchData/Cesium_Air/1_Cesium_Air_Prop.png -------------------------------------------------------------------------------- /extensions/0.8/Vendor/CESIUM_binary_glTF/BenchData/Cesium_Air/Cesium_Air.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/0.8/Vendor/CESIUM_binary_glTF/BenchData/Cesium_Air/Cesium_Air.dae -------------------------------------------------------------------------------- /extensions/0.8/Vendor/CESIUM_binary_glTF/BenchData/LargeTex/LargeTex.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/0.8/Vendor/CESIUM_binary_glTF/BenchData/LargeTex/LargeTex.dae -------------------------------------------------------------------------------- /extensions/0.8/Vendor/CESIUM_binary_glTF/BenchData/LargeTex/lightmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/0.8/Vendor/CESIUM_binary_glTF/BenchData/LargeTex/lightmap.png -------------------------------------------------------------------------------- /extensions/0.8/Vendor/CESIUM_binary_glTF/BenchData/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/0.8/Vendor/CESIUM_binary_glTF/BenchData/README.md -------------------------------------------------------------------------------- /extensions/0.8/Vendor/CESIUM_binary_glTF/BenchData/SpinningTree/SpinningTree.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/0.8/Vendor/CESIUM_binary_glTF/BenchData/SpinningTree/SpinningTree.dae -------------------------------------------------------------------------------- /extensions/0.8/Vendor/CESIUM_binary_glTF/BenchData/TenTex/TenTex.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/0.8/Vendor/CESIUM_binary_glTF/BenchData/TenTex/TenTex.dae -------------------------------------------------------------------------------- /extensions/0.8/Vendor/CESIUM_binary_glTF/BenchData/TenTex/lightmap.001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/0.8/Vendor/CESIUM_binary_glTF/BenchData/TenTex/lightmap.001.png -------------------------------------------------------------------------------- /extensions/0.8/Vendor/CESIUM_binary_glTF/BenchData/TenTex/lightmap.002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/0.8/Vendor/CESIUM_binary_glTF/BenchData/TenTex/lightmap.002.png -------------------------------------------------------------------------------- /extensions/0.8/Vendor/CESIUM_binary_glTF/BenchData/TenTex/lightmap.003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/0.8/Vendor/CESIUM_binary_glTF/BenchData/TenTex/lightmap.003.png -------------------------------------------------------------------------------- /extensions/0.8/Vendor/CESIUM_binary_glTF/BenchData/TenTex/lightmap.004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/0.8/Vendor/CESIUM_binary_glTF/BenchData/TenTex/lightmap.004.png -------------------------------------------------------------------------------- /extensions/0.8/Vendor/CESIUM_binary_glTF/BenchData/TenTex/lightmap.005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/0.8/Vendor/CESIUM_binary_glTF/BenchData/TenTex/lightmap.005.png -------------------------------------------------------------------------------- /extensions/0.8/Vendor/CESIUM_binary_glTF/BenchData/TenTex/lightmap.006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/0.8/Vendor/CESIUM_binary_glTF/BenchData/TenTex/lightmap.006.png -------------------------------------------------------------------------------- /extensions/0.8/Vendor/CESIUM_binary_glTF/BenchData/TenTex/lightmap.007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/0.8/Vendor/CESIUM_binary_glTF/BenchData/TenTex/lightmap.007.png -------------------------------------------------------------------------------- /extensions/0.8/Vendor/CESIUM_binary_glTF/BenchData/TenTex/lightmap.008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/0.8/Vendor/CESIUM_binary_glTF/BenchData/TenTex/lightmap.008.png -------------------------------------------------------------------------------- /extensions/0.8/Vendor/CESIUM_binary_glTF/BenchData/TenTex/lightmap.009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/0.8/Vendor/CESIUM_binary_glTF/BenchData/TenTex/lightmap.009.png -------------------------------------------------------------------------------- /extensions/0.8/Vendor/CESIUM_binary_glTF/BenchData/TenTex/lightmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/0.8/Vendor/CESIUM_binary_glTF/BenchData/TenTex/lightmap.png -------------------------------------------------------------------------------- /extensions/0.8/Vendor/CESIUM_binary_glTF/BenchData/thumb/100kTris.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/0.8/Vendor/CESIUM_binary_glTF/BenchData/thumb/100kTris.jpg -------------------------------------------------------------------------------- /extensions/0.8/Vendor/CESIUM_binary_glTF/BenchData/thumb/1200_12th.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/0.8/Vendor/CESIUM_binary_glTF/BenchData/thumb/1200_12th.jpg -------------------------------------------------------------------------------- /extensions/0.8/Vendor/CESIUM_binary_glTF/BenchData/thumb/BinaryTree.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/0.8/Vendor/CESIUM_binary_glTF/BenchData/thumb/BinaryTree.jpg -------------------------------------------------------------------------------- /extensions/0.8/Vendor/CESIUM_binary_glTF/BenchData/thumb/Cesium_Air.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/0.8/Vendor/CESIUM_binary_glTF/BenchData/thumb/Cesium_Air.jpg -------------------------------------------------------------------------------- /extensions/0.8/Vendor/CESIUM_binary_glTF/BenchData/thumb/EauClaire.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/0.8/Vendor/CESIUM_binary_glTF/BenchData/thumb/EauClaire.jpg -------------------------------------------------------------------------------- /extensions/0.8/Vendor/CESIUM_binary_glTF/BenchData/thumb/LargeTex.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/0.8/Vendor/CESIUM_binary_glTF/BenchData/thumb/LargeTex.jpg -------------------------------------------------------------------------------- /extensions/0.8/Vendor/CESIUM_binary_glTF/BenchData/thumb/SpinningTree.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/0.8/Vendor/CESIUM_binary_glTF/BenchData/thumb/SpinningTree.jpg -------------------------------------------------------------------------------- /extensions/0.8/Vendor/CESIUM_binary_glTF/BenchData/thumb/TenTex.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/0.8/Vendor/CESIUM_binary_glTF/BenchData/thumb/TenTex.jpg -------------------------------------------------------------------------------- /extensions/0.8/Vendor/CESIUM_binary_glTF/Figures.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/0.8/Vendor/CESIUM_binary_glTF/Figures.pptx -------------------------------------------------------------------------------- /extensions/0.8/Vendor/CESIUM_binary_glTF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/0.8/Vendor/CESIUM_binary_glTF/README.md -------------------------------------------------------------------------------- /extensions/0.8/Vendor/CESIUM_binary_glTF/layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/0.8/Vendor/CESIUM_binary_glTF/layout.png -------------------------------------------------------------------------------- /extensions/1.0/Khronos/KHR_binary_glTF/BenchData/100kTris/100kTris.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/1.0/Khronos/KHR_binary_glTF/BenchData/100kTris/100kTris.dae -------------------------------------------------------------------------------- /extensions/1.0/Khronos/KHR_binary_glTF/BenchData/BinaryTree/BinaryTree.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/1.0/Khronos/KHR_binary_glTF/BenchData/BinaryTree/BinaryTree.dae -------------------------------------------------------------------------------- /extensions/1.0/Khronos/KHR_binary_glTF/BenchData/Cesium_Air/0_Cesium_Air.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/1.0/Khronos/KHR_binary_glTF/BenchData/Cesium_Air/0_Cesium_Air.png -------------------------------------------------------------------------------- /extensions/1.0/Khronos/KHR_binary_glTF/BenchData/Cesium_Air/1_Cesium_Air_Prop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/1.0/Khronos/KHR_binary_glTF/BenchData/Cesium_Air/1_Cesium_Air_Prop.png -------------------------------------------------------------------------------- /extensions/1.0/Khronos/KHR_binary_glTF/BenchData/Cesium_Air/Cesium_Air.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/1.0/Khronos/KHR_binary_glTF/BenchData/Cesium_Air/Cesium_Air.dae -------------------------------------------------------------------------------- /extensions/1.0/Khronos/KHR_binary_glTF/BenchData/LargeTex/LargeTex.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/1.0/Khronos/KHR_binary_glTF/BenchData/LargeTex/LargeTex.dae -------------------------------------------------------------------------------- /extensions/1.0/Khronos/KHR_binary_glTF/BenchData/LargeTex/lightmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/1.0/Khronos/KHR_binary_glTF/BenchData/LargeTex/lightmap.png -------------------------------------------------------------------------------- /extensions/1.0/Khronos/KHR_binary_glTF/BenchData/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/1.0/Khronos/KHR_binary_glTF/BenchData/README.md -------------------------------------------------------------------------------- /extensions/1.0/Khronos/KHR_binary_glTF/BenchData/SpinningTree/SpinningTree.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/1.0/Khronos/KHR_binary_glTF/BenchData/SpinningTree/SpinningTree.dae -------------------------------------------------------------------------------- /extensions/1.0/Khronos/KHR_binary_glTF/BenchData/TenTex/TenTex.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/1.0/Khronos/KHR_binary_glTF/BenchData/TenTex/TenTex.dae -------------------------------------------------------------------------------- /extensions/1.0/Khronos/KHR_binary_glTF/BenchData/TenTex/lightmap.001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/1.0/Khronos/KHR_binary_glTF/BenchData/TenTex/lightmap.001.png -------------------------------------------------------------------------------- /extensions/1.0/Khronos/KHR_binary_glTF/BenchData/TenTex/lightmap.002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/1.0/Khronos/KHR_binary_glTF/BenchData/TenTex/lightmap.002.png -------------------------------------------------------------------------------- /extensions/1.0/Khronos/KHR_binary_glTF/BenchData/TenTex/lightmap.003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/1.0/Khronos/KHR_binary_glTF/BenchData/TenTex/lightmap.003.png -------------------------------------------------------------------------------- /extensions/1.0/Khronos/KHR_binary_glTF/BenchData/TenTex/lightmap.004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/1.0/Khronos/KHR_binary_glTF/BenchData/TenTex/lightmap.004.png -------------------------------------------------------------------------------- /extensions/1.0/Khronos/KHR_binary_glTF/BenchData/TenTex/lightmap.005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/1.0/Khronos/KHR_binary_glTF/BenchData/TenTex/lightmap.005.png -------------------------------------------------------------------------------- /extensions/1.0/Khronos/KHR_binary_glTF/BenchData/TenTex/lightmap.006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/1.0/Khronos/KHR_binary_glTF/BenchData/TenTex/lightmap.006.png -------------------------------------------------------------------------------- /extensions/1.0/Khronos/KHR_binary_glTF/BenchData/TenTex/lightmap.007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/1.0/Khronos/KHR_binary_glTF/BenchData/TenTex/lightmap.007.png -------------------------------------------------------------------------------- /extensions/1.0/Khronos/KHR_binary_glTF/BenchData/TenTex/lightmap.008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/1.0/Khronos/KHR_binary_glTF/BenchData/TenTex/lightmap.008.png -------------------------------------------------------------------------------- /extensions/1.0/Khronos/KHR_binary_glTF/BenchData/TenTex/lightmap.009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/1.0/Khronos/KHR_binary_glTF/BenchData/TenTex/lightmap.009.png -------------------------------------------------------------------------------- /extensions/1.0/Khronos/KHR_binary_glTF/BenchData/TenTex/lightmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/1.0/Khronos/KHR_binary_glTF/BenchData/TenTex/lightmap.png -------------------------------------------------------------------------------- /extensions/1.0/Khronos/KHR_binary_glTF/BenchData/thumb/100kTris.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/1.0/Khronos/KHR_binary_glTF/BenchData/thumb/100kTris.jpg -------------------------------------------------------------------------------- /extensions/1.0/Khronos/KHR_binary_glTF/BenchData/thumb/1200_12th.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/1.0/Khronos/KHR_binary_glTF/BenchData/thumb/1200_12th.jpg -------------------------------------------------------------------------------- /extensions/1.0/Khronos/KHR_binary_glTF/BenchData/thumb/BinaryTree.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/1.0/Khronos/KHR_binary_glTF/BenchData/thumb/BinaryTree.jpg -------------------------------------------------------------------------------- /extensions/1.0/Khronos/KHR_binary_glTF/BenchData/thumb/Cesium_Air.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/1.0/Khronos/KHR_binary_glTF/BenchData/thumb/Cesium_Air.jpg -------------------------------------------------------------------------------- /extensions/1.0/Khronos/KHR_binary_glTF/BenchData/thumb/EauClaire.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/1.0/Khronos/KHR_binary_glTF/BenchData/thumb/EauClaire.jpg -------------------------------------------------------------------------------- /extensions/1.0/Khronos/KHR_binary_glTF/BenchData/thumb/LargeTex.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/1.0/Khronos/KHR_binary_glTF/BenchData/thumb/LargeTex.jpg -------------------------------------------------------------------------------- /extensions/1.0/Khronos/KHR_binary_glTF/BenchData/thumb/SpinningTree.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/1.0/Khronos/KHR_binary_glTF/BenchData/thumb/SpinningTree.jpg -------------------------------------------------------------------------------- /extensions/1.0/Khronos/KHR_binary_glTF/BenchData/thumb/TenTex.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/1.0/Khronos/KHR_binary_glTF/BenchData/thumb/TenTex.jpg -------------------------------------------------------------------------------- /extensions/1.0/Khronos/KHR_binary_glTF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/1.0/Khronos/KHR_binary_glTF/README.md -------------------------------------------------------------------------------- /extensions/1.0/Khronos/KHR_binary_glTF/figures/Figures.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/1.0/Khronos/KHR_binary_glTF/figures/Figures.pptx -------------------------------------------------------------------------------- /extensions/1.0/Khronos/KHR_binary_glTF/figures/layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/1.0/Khronos/KHR_binary_glTF/figures/layout.png -------------------------------------------------------------------------------- /extensions/1.0/Khronos/KHR_binary_glTF/schema/image.KHR_binary_glTF.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/1.0/Khronos/KHR_binary_glTF/schema/image.KHR_binary_glTF.schema.json -------------------------------------------------------------------------------- /extensions/1.0/Khronos/KHR_binary_glTF/schema/shader.KHR_binary_glTF.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/1.0/Khronos/KHR_binary_glTF/schema/shader.KHR_binary_glTF.schema.json -------------------------------------------------------------------------------- /extensions/1.0/Khronos/KHR_materials_common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/1.0/Khronos/KHR_materials_common/README.md -------------------------------------------------------------------------------- /extensions/1.0/Khronos/KHR_materials_common/schema/examples/lights.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/1.0/Khronos/KHR_materials_common/schema/examples/lights.json -------------------------------------------------------------------------------- /extensions/1.0/Khronos/KHR_materials_common/schema/glTF.KHR_materials_common.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/1.0/Khronos/KHR_materials_common/schema/glTF.KHR_materials_common.schema.json -------------------------------------------------------------------------------- /extensions/1.0/Khronos/KHR_materials_common/schema/light.ambient.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/1.0/Khronos/KHR_materials_common/schema/light.ambient.schema.json -------------------------------------------------------------------------------- /extensions/1.0/Khronos/KHR_materials_common/schema/light.directional.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/1.0/Khronos/KHR_materials_common/schema/light.directional.schema.json -------------------------------------------------------------------------------- /extensions/1.0/Khronos/KHR_materials_common/schema/light.point.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/1.0/Khronos/KHR_materials_common/schema/light.point.schema.json -------------------------------------------------------------------------------- /extensions/1.0/Khronos/KHR_materials_common/schema/light.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/1.0/Khronos/KHR_materials_common/schema/light.schema.json -------------------------------------------------------------------------------- /extensions/1.0/Khronos/KHR_materials_common/schema/light.spot.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/1.0/Khronos/KHR_materials_common/schema/light.spot.schema.json -------------------------------------------------------------------------------- /extensions/1.0/Khronos/KHR_materials_common/schema/node.KHR_materials_common.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/1.0/Khronos/KHR_materials_common/schema/node.KHR_materials_common.schema.json -------------------------------------------------------------------------------- /extensions/1.0/Vendor/CESIUM_RTC/CESIUM_RTC.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/1.0/Vendor/CESIUM_RTC/CESIUM_RTC.schema.json -------------------------------------------------------------------------------- /extensions/1.0/Vendor/CESIUM_RTC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/1.0/Vendor/CESIUM_RTC/README.md -------------------------------------------------------------------------------- /extensions/1.0/Vendor/WEB3D_quantized_attributes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/1.0/Vendor/WEB3D_quantized_attributes/README.md -------------------------------------------------------------------------------- /extensions/1.0/Vendor/WEB3D_quantized_attributes/schema/WEB3D_quantized_attributes.accessor.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/1.0/Vendor/WEB3D_quantized_attributes/schema/WEB3D_quantized_attributes.accessor.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Archived/KHR_materials_pbrSpecularGlossiness/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Archived/KHR_materials_pbrSpecularGlossiness/README.md -------------------------------------------------------------------------------- /extensions/2.0/Archived/KHR_materials_pbrSpecularGlossiness/examples/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Archived/KHR_materials_pbrSpecularGlossiness/examples/LICENSE.md -------------------------------------------------------------------------------- /extensions/2.0/Archived/KHR_materials_pbrSpecularGlossiness/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Archived/KHR_materials_pbrSpecularGlossiness/examples/README.md -------------------------------------------------------------------------------- /extensions/2.0/Archived/KHR_materials_pbrSpecularGlossiness/examples/convert-between-workflows-bjs/images/countrySpecularHDR.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Archived/KHR_materials_pbrSpecularGlossiness/examples/convert-between-workflows-bjs/images/countrySpecularHDR.dds -------------------------------------------------------------------------------- /extensions/2.0/Archived/KHR_materials_pbrSpecularGlossiness/examples/convert-between-workflows-bjs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Archived/KHR_materials_pbrSpecularGlossiness/examples/convert-between-workflows-bjs/index.html -------------------------------------------------------------------------------- /extensions/2.0/Archived/KHR_materials_pbrSpecularGlossiness/examples/convert-between-workflows-bjs/js/babylon.colorExtensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Archived/KHR_materials_pbrSpecularGlossiness/examples/convert-between-workflows-bjs/js/babylon.colorExtensions.js -------------------------------------------------------------------------------- /extensions/2.0/Archived/KHR_materials_pbrSpecularGlossiness/examples/convert-between-workflows-bjs/js/babylon.pbrUtilities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Archived/KHR_materials_pbrSpecularGlossiness/examples/convert-between-workflows-bjs/js/babylon.pbrUtilities.js -------------------------------------------------------------------------------- /extensions/2.0/Archived/KHR_materials_pbrSpecularGlossiness/examples/convert-between-workflows-bjs/js/dat.gui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Archived/KHR_materials_pbrSpecularGlossiness/examples/convert-between-workflows-bjs/js/dat.gui.min.js -------------------------------------------------------------------------------- /extensions/2.0/Archived/KHR_materials_pbrSpecularGlossiness/examples/convert-between-workflows/images/Uffizi_Gallery_Irradiance_NX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Archived/KHR_materials_pbrSpecularGlossiness/examples/convert-between-workflows/images/Uffizi_Gallery_Irradiance_NX.png -------------------------------------------------------------------------------- /extensions/2.0/Archived/KHR_materials_pbrSpecularGlossiness/examples/convert-between-workflows/images/Uffizi_Gallery_Irradiance_NY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Archived/KHR_materials_pbrSpecularGlossiness/examples/convert-between-workflows/images/Uffizi_Gallery_Irradiance_NY.png -------------------------------------------------------------------------------- /extensions/2.0/Archived/KHR_materials_pbrSpecularGlossiness/examples/convert-between-workflows/images/Uffizi_Gallery_Irradiance_NZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Archived/KHR_materials_pbrSpecularGlossiness/examples/convert-between-workflows/images/Uffizi_Gallery_Irradiance_NZ.png -------------------------------------------------------------------------------- /extensions/2.0/Archived/KHR_materials_pbrSpecularGlossiness/examples/convert-between-workflows/images/Uffizi_Gallery_Irradiance_PX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Archived/KHR_materials_pbrSpecularGlossiness/examples/convert-between-workflows/images/Uffizi_Gallery_Irradiance_PX.png -------------------------------------------------------------------------------- /extensions/2.0/Archived/KHR_materials_pbrSpecularGlossiness/examples/convert-between-workflows/images/Uffizi_Gallery_Irradiance_PY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Archived/KHR_materials_pbrSpecularGlossiness/examples/convert-between-workflows/images/Uffizi_Gallery_Irradiance_PY.png -------------------------------------------------------------------------------- /extensions/2.0/Archived/KHR_materials_pbrSpecularGlossiness/examples/convert-between-workflows/images/Uffizi_Gallery_Irradiance_PZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Archived/KHR_materials_pbrSpecularGlossiness/examples/convert-between-workflows/images/Uffizi_Gallery_Irradiance_PZ.png -------------------------------------------------------------------------------- /extensions/2.0/Archived/KHR_materials_pbrSpecularGlossiness/examples/convert-between-workflows/images/Uffizi_Gallery_Radiance_NX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Archived/KHR_materials_pbrSpecularGlossiness/examples/convert-between-workflows/images/Uffizi_Gallery_Radiance_NX.png -------------------------------------------------------------------------------- /extensions/2.0/Archived/KHR_materials_pbrSpecularGlossiness/examples/convert-between-workflows/images/Uffizi_Gallery_Radiance_NY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Archived/KHR_materials_pbrSpecularGlossiness/examples/convert-between-workflows/images/Uffizi_Gallery_Radiance_NY.png -------------------------------------------------------------------------------- /extensions/2.0/Archived/KHR_materials_pbrSpecularGlossiness/examples/convert-between-workflows/images/Uffizi_Gallery_Radiance_NZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Archived/KHR_materials_pbrSpecularGlossiness/examples/convert-between-workflows/images/Uffizi_Gallery_Radiance_NZ.png -------------------------------------------------------------------------------- /extensions/2.0/Archived/KHR_materials_pbrSpecularGlossiness/examples/convert-between-workflows/images/Uffizi_Gallery_Radiance_PX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Archived/KHR_materials_pbrSpecularGlossiness/examples/convert-between-workflows/images/Uffizi_Gallery_Radiance_PX.png -------------------------------------------------------------------------------- /extensions/2.0/Archived/KHR_materials_pbrSpecularGlossiness/examples/convert-between-workflows/images/Uffizi_Gallery_Radiance_PY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Archived/KHR_materials_pbrSpecularGlossiness/examples/convert-between-workflows/images/Uffizi_Gallery_Radiance_PY.png -------------------------------------------------------------------------------- /extensions/2.0/Archived/KHR_materials_pbrSpecularGlossiness/examples/convert-between-workflows/images/Uffizi_Gallery_Radiance_PZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Archived/KHR_materials_pbrSpecularGlossiness/examples/convert-between-workflows/images/Uffizi_Gallery_Radiance_PZ.png -------------------------------------------------------------------------------- /extensions/2.0/Archived/KHR_materials_pbrSpecularGlossiness/examples/convert-between-workflows/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Archived/KHR_materials_pbrSpecularGlossiness/examples/convert-between-workflows/index.html -------------------------------------------------------------------------------- /extensions/2.0/Archived/KHR_materials_pbrSpecularGlossiness/examples/convert-between-workflows/js/dat.gui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Archived/KHR_materials_pbrSpecularGlossiness/examples/convert-between-workflows/js/dat.gui.min.js -------------------------------------------------------------------------------- /extensions/2.0/Archived/KHR_materials_pbrSpecularGlossiness/examples/convert-between-workflows/js/three.colorExtensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Archived/KHR_materials_pbrSpecularGlossiness/examples/convert-between-workflows/js/three.colorExtensions.js -------------------------------------------------------------------------------- /extensions/2.0/Archived/KHR_materials_pbrSpecularGlossiness/examples/convert-between-workflows/js/three.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Archived/KHR_materials_pbrSpecularGlossiness/examples/convert-between-workflows/js/three.min.js -------------------------------------------------------------------------------- /extensions/2.0/Archived/KHR_materials_pbrSpecularGlossiness/examples/convert-between-workflows/js/three.pbrUtilities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Archived/KHR_materials_pbrSpecularGlossiness/examples/convert-between-workflows/js/three.pbrUtilities.js -------------------------------------------------------------------------------- /extensions/2.0/Archived/KHR_materials_pbrSpecularGlossiness/figures/specular-glossiness material.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Archived/KHR_materials_pbrSpecularGlossiness/figures/specular-glossiness material.png -------------------------------------------------------------------------------- /extensions/2.0/Archived/KHR_materials_pbrSpecularGlossiness/schema/glTF.KHR_materials_pbrSpecularGlossiness.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Archived/KHR_materials_pbrSpecularGlossiness/schema/glTF.KHR_materials_pbrSpecularGlossiness.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Archived/KHR_techniques_webgl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Archived/KHR_techniques_webgl/README.md -------------------------------------------------------------------------------- /extensions/2.0/Archived/KHR_techniques_webgl/examples/sample_techniques.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Archived/KHR_techniques_webgl/examples/sample_techniques.gltf -------------------------------------------------------------------------------- /extensions/2.0/Archived/KHR_techniques_webgl/schema/glTF.KHR_techniques_webgl.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Archived/KHR_techniques_webgl/schema/glTF.KHR_techniques_webgl.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Archived/KHR_techniques_webgl/schema/material.KHR_techniques_webgl.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Archived/KHR_techniques_webgl/schema/material.KHR_techniques_webgl.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Archived/KHR_techniques_webgl/schema/program.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Archived/KHR_techniques_webgl/schema/program.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Archived/KHR_techniques_webgl/schema/shader.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Archived/KHR_techniques_webgl/schema/shader.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Archived/KHR_techniques_webgl/schema/technique.attribute.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Archived/KHR_techniques_webgl/schema/technique.attribute.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Archived/KHR_techniques_webgl/schema/technique.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Archived/KHR_techniques_webgl/schema/technique.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Archived/KHR_techniques_webgl/schema/technique.uniform.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Archived/KHR_techniques_webgl/schema/technique.uniform.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Archived/KHR_techniques_webgl/schema/uniform.value.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Archived/KHR_techniques_webgl/schema/uniform.value.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Archived/KHR_xmp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Archived/KHR_xmp/README.md -------------------------------------------------------------------------------- /extensions/2.0/Archived/KHR_xmp/schema/examples/MODEL_ROUNDED_CUBE_PART_1/indices.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Archived/KHR_xmp/schema/examples/MODEL_ROUNDED_CUBE_PART_1/indices.bin -------------------------------------------------------------------------------- /extensions/2.0/Archived/KHR_xmp/schema/examples/MODEL_ROUNDED_CUBE_PART_1/normals.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Archived/KHR_xmp/schema/examples/MODEL_ROUNDED_CUBE_PART_1/normals.bin -------------------------------------------------------------------------------- /extensions/2.0/Archived/KHR_xmp/schema/examples/MODEL_ROUNDED_CUBE_PART_1/positions.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Archived/KHR_xmp/schema/examples/MODEL_ROUNDED_CUBE_PART_1/positions.bin -------------------------------------------------------------------------------- /extensions/2.0/Archived/KHR_xmp/schema/examples/xmp.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Archived/KHR_xmp/schema/examples/xmp.gltf -------------------------------------------------------------------------------- /extensions/2.0/Archived/KHR_xmp/schema/glTF.KHR_xmp.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Archived/KHR_xmp/schema/glTF.KHR_xmp.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Archived/KHR_xmp/schema/node.KHR_xmp.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Archived/KHR_xmp/schema/node.KHR_xmp.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_animation_pointer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_animation_pointer/README.md -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_animation_pointer/schema/animation.channel.target.KHR_animation_pointer.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_animation_pointer/schema/animation.channel.target.KHR_animation_pointer.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_draco_mesh_compression/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_draco_mesh_compression/README.md -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_draco_mesh_compression/figures/structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_draco_mesh_compression/figures/structure.png -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_draco_mesh_compression/schema/mesh.primitive.KHR_draco_mesh_compression.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_draco_mesh_compression/schema/mesh.primitive.KHR_draco_mesh_compression.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_lights_punctual/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_lights_punctual/README.md -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_lights_punctual/schema/examples/MODEL_ROUNDED_CUBE_PART_1/indices.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_lights_punctual/schema/examples/MODEL_ROUNDED_CUBE_PART_1/indices.bin -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_lights_punctual/schema/examples/MODEL_ROUNDED_CUBE_PART_1/normals.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_lights_punctual/schema/examples/MODEL_ROUNDED_CUBE_PART_1/normals.bin -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_lights_punctual/schema/examples/MODEL_ROUNDED_CUBE_PART_1/positions.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_lights_punctual/schema/examples/MODEL_ROUNDED_CUBE_PART_1/positions.bin -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_lights_punctual/schema/examples/lights.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_lights_punctual/schema/examples/lights.gltf -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_lights_punctual/schema/glTF.KHR_lights_punctual.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_lights_punctual/schema/glTF.KHR_lights_punctual.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_lights_punctual/schema/light.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_lights_punctual/schema/light.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_lights_punctual/schema/light.spot.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_lights_punctual/schema/light.spot.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_lights_punctual/schema/node.KHR_lights_punctual.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_lights_punctual/schema/node.KHR_lights_punctual.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_anisotropy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_anisotropy/README.md -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_anisotropy/schema/material.KHR_materials_anisotropy.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_anisotropy/schema/material.KHR_materials_anisotropy.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_clearcoat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_clearcoat/README.md -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_clearcoat/schema/material.KHR_materials_clearcoat.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_clearcoat/schema/material.KHR_materials_clearcoat.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_diffuse_transmission/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_diffuse_transmission/README.md -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/attenuation_dt_0.0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/attenuation_dt_0.0.jpg -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/attenuation_dt_0.5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/attenuation_dt_0.5.jpg -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/attenuation_dt_1.0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/attenuation_dt_1.0.jpg -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/bsdf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/bsdf.jpg -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/bsdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/bsdf.svg -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/candle_0.0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/candle_0.0.jpg -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/candle_0.25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/candle_0.25.jpg -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/candle_0.5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/candle_0.5.jpg -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/color_0.0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/color_0.0.jpg -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/color_0.25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/color_0.25.jpg -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/color_0.5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/color_0.5.jpg -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/color_0.75.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/color_0.75.jpg -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/color_1.0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/color_1.0.jpg -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/color_tex_0.0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/color_tex_0.0.jpg -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/color_tex_0.25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/color_tex_0.25.jpg -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/color_tex_0.5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/color_tex_0.5.jpg -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/color_tex_0.75.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/color_tex_0.75.jpg -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/color_tex_1.0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/color_tex_1.0.jpg -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/dt_transmission_0.0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/dt_transmission_0.0.jpg -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/dt_transmission_0.25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/dt_transmission_0.25.jpg -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/dt_transmission_0.5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/dt_transmission_0.5.jpg -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/dt_transmission_0.75.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/dt_transmission_0.75.jpg -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/dt_transmission_1.0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/dt_transmission_1.0.jpg -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/factor_0.0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/factor_0.0.jpg -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/factor_0.25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/factor_0.25.jpg -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/factor_0.5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/factor_0.5.jpg -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/factor_0.75.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/factor_0.75.jpg -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/factor_1.0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/factor_1.0.jpg -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/factor_tex.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/factor_tex.jpg -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/factor_tex_inlay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/factor_tex_inlay.jpg -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/leaves.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/leaves.jpg -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/translucent-roughness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/translucent-roughness.png -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/transmission-translucency_thin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/transmission-translucency_thin.jpg -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/transmission-translucency_thin_angle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/transmission-translucency_thin_angle.jpg -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/transmissive-roughness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_diffuse_transmission/figures/transmissive-roughness.png -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_diffuse_transmission/schema/material.KHR_materials_diffuse_transmission.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_diffuse_transmission/schema/material.KHR_materials_diffuse_transmission.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_dispersion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_dispersion/README.md -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_dispersion/figures/Dispersion.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_dispersion/figures/Dispersion.jpg -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_dispersion/figures/Dispersion_AdobeStager.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_dispersion/figures/Dispersion_AdobeStager.jpg -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_dispersion/figures/Dispersion_BabylonJS.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_dispersion/figures/Dispersion_BabylonJS.jpg -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_dispersion/schema/material.KHR_materials_dispersion.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_dispersion/schema/material.KHR_materials_dispersion.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_emissive_strength/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_emissive_strength/README.md -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_emissive_strength/schema/material.KHR_materials_emissive_strength.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_emissive_strength/schema/material.KHR_materials_emissive_strength.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_ior/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_ior/README.md -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_ior/schema/material.KHR_materials_ior.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_ior/schema/material.KHR_materials_ior.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_iridescence/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_iridescence/README.md -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_iridescence/figures/interference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_iridescence/figures/interference.png -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_iridescence/figures/ior-comparison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_iridescence/figures/ior-comparison.png -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_iridescence/figures/thickness-comparison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_iridescence/figures/thickness-comparison.png -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_iridescence/schema/material.KHR_materials_iridescence.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_iridescence/schema/material.KHR_materials_iridescence.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_sheen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_sheen/README.md -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_sheen/figures/cushion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_sheen/figures/cushion.png -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_sheen/schema/material.KHR_materials_sheen.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_sheen/schema/material.KHR_materials_sheen.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_specular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_specular/README.md -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_specular/figures/specular-color-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_specular/figures/specular-color-2.png -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_specular/figures/specular-color-refraction-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_specular/figures/specular-color-refraction-2.png -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_specular/figures/specular-color-refraction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_specular/figures/specular-color-refraction.png -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_specular/figures/specular-color-thin-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_specular/figures/specular-color-thin-2.png -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_specular/figures/specular-color-thin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_specular/figures/specular-color-thin.png -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_specular/figures/specular-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_specular/figures/specular-color.png -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_specular/figures/specular-refraction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_specular/figures/specular-refraction.png -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_specular/figures/specular-thin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_specular/figures/specular-thin.png -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_specular/figures/specular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_specular/figures/specular.png -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_specular/schema/material.KHR_materials_specular.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_specular/schema/material.KHR_materials_specular.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_transmission/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_transmission/README.md -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_transmission/figures/ConstantTransmission.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_transmission/figures/ConstantTransmission.png -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_transmission/figures/Multi-layer Transparency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_transmission/figures/Multi-layer Transparency.png -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_transmission/figures/Nodes.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_transmission/figures/Nodes.dot -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_transmission/figures/Nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_transmission/figures/Nodes.png -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_transmission/figures/OpacityComparison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_transmission/figures/OpacityComparison.png -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_transmission/figures/Roughness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_transmission/figures/Roughness.png -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_transmission/figures/Screen Shot 2019-10-25 at 3.40.21 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_transmission/figures/Screen Shot 2019-10-25 at 3.40.21 PM.png -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_transmission/figures/TransmissionTexture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_transmission/figures/TransmissionTexture.png -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_transmission/figures/TransmissionWithMask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_transmission/figures/TransmissionWithMask.png -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_transmission/schema/material.KHR_materials_transmission.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_transmission/schema/material.KHR_materials_transmission.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_unlit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_unlit/README.md -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_unlit/schema/material.KHR_materials_unlit.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_unlit/schema/material.KHR_materials_unlit.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_variants/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_variants/README.md -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_variants/schema/glTF.KHR_materials_variants.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_variants/schema/glTF.KHR_materials_variants.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_variants/schema/mesh.primitive.KHR_materials_variants.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_variants/schema/mesh.primitive.KHR_materials_variants.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_variants/sneakers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_variants/sneakers.png -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_volume/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_volume/README.md -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_volume/figures/base-color-absorption.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_volume/figures/base-color-absorption.png -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_volume/figures/ior.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_volume/figures/ior.png -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_volume/figures/refraction-absorption.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_volume/figures/refraction-absorption.svg -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_volume/figures/thin-thick-rendering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_volume/figures/thin-thick-rendering.png -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_volume/figures/thin-thick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_volume/figures/thin-thick.svg -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_volume/figures/transmissive-roughness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_volume/figures/transmissive-roughness.png -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_materials_volume/schema/material.KHR_materials_volume.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_materials_volume/schema/material.KHR_materials_volume.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_mesh_quantization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_mesh_quantization/README.md -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_node_visibility/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_node_visibility/README.md -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_node_visibility/schema/node.KHR_node_visibility.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_node_visibility/schema/node.KHR_node_visibility.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_texture_basisu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_texture_basisu/README.md -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_texture_basisu/schema/texture.KHR_texture_basisu.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_texture_basisu/schema/texture.KHR_texture_basisu.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_texture_transform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_texture_transform/README.md -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_texture_transform/schema/textureInfo.KHR_texture_transform.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_texture_transform/schema/textureInfo.KHR_texture_transform.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_xmp_json_ld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_xmp_json_ld/README.md -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_xmp_json_ld/schema/KHR_xmp_json_ld.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_xmp_json_ld/schema/KHR_xmp_json_ld.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Khronos/KHR_xmp_json_ld/schema/glTF.KHR_xmp_json_ld.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Khronos/KHR_xmp_json_ld/schema/glTF.KHR_xmp_json_ld.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Vendor/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extensions/2.0/Vendor/ADOBE_materials_clearcoat_specular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/ADOBE_materials_clearcoat_specular/README.md -------------------------------------------------------------------------------- /extensions/2.0/Vendor/ADOBE_materials_clearcoat_specular/schema/glTF.ADOBE_materials_clearcoat_specular.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/ADOBE_materials_clearcoat_specular/schema/glTF.ADOBE_materials_clearcoat_specular.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Vendor/ADOBE_materials_clearcoat_tint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/ADOBE_materials_clearcoat_tint/README.md -------------------------------------------------------------------------------- /extensions/2.0/Vendor/ADOBE_materials_clearcoat_tint/schema/material.ADOBE_materials_clearcoat_tint.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/ADOBE_materials_clearcoat_tint/schema/material.ADOBE_materials_clearcoat_tint.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Vendor/ADOBE_materials_thin_transparency/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/ADOBE_materials_thin_transparency/README.md -------------------------------------------------------------------------------- /extensions/2.0/Vendor/ADOBE_materials_thin_transparency/figures/coverage_and_transparency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/ADOBE_materials_thin_transparency/figures/coverage_and_transparency.png -------------------------------------------------------------------------------- /extensions/2.0/Vendor/ADOBE_materials_thin_transparency/figures/coverage_vs_transparency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/ADOBE_materials_thin_transparency/figures/coverage_vs_transparency.png -------------------------------------------------------------------------------- /extensions/2.0/Vendor/ADOBE_materials_thin_transparency/figures/ior.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/ADOBE_materials_thin_transparency/figures/ior.png -------------------------------------------------------------------------------- /extensions/2.0/Vendor/ADOBE_materials_thin_transparency/figures/surface_roughness_babylon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/ADOBE_materials_thin_transparency/figures/surface_roughness_babylon.png -------------------------------------------------------------------------------- /extensions/2.0/Vendor/ADOBE_materials_thin_transparency/figures/surface_roughness_dimension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/ADOBE_materials_thin_transparency/figures/surface_roughness_dimension.png -------------------------------------------------------------------------------- /extensions/2.0/Vendor/ADOBE_materials_thin_transparency/figures/surface_tint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/ADOBE_materials_thin_transparency/figures/surface_tint.png -------------------------------------------------------------------------------- /extensions/2.0/Vendor/ADOBE_materials_thin_transparency/schema/glTF.ADOBE_materials_thin_transparency.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/ADOBE_materials_thin_transparency/schema/glTF.ADOBE_materials_thin_transparency.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Vendor/AGI_articulations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/AGI_articulations/README.md -------------------------------------------------------------------------------- /extensions/2.0/Vendor/AGI_articulations/schema/articulation.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/AGI_articulations/schema/articulation.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Vendor/AGI_articulations/schema/articulation.stage.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/AGI_articulations/schema/articulation.stage.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Vendor/AGI_articulations/schema/gltf.AGI_articulations.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/AGI_articulations/schema/gltf.AGI_articulations.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Vendor/AGI_articulations/schema/node.AGI_articulations.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/AGI_articulations/schema/node.AGI_articulations.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Vendor/AGI_stk_metadata/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/AGI_stk_metadata/README.md -------------------------------------------------------------------------------- /extensions/2.0/Vendor/AGI_stk_metadata/schema/gltf.AGI_stk_metadata.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/AGI_stk_metadata/schema/gltf.AGI_stk_metadata.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Vendor/AGI_stk_metadata/schema/node.AGI_stk_metadata.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/AGI_stk_metadata/schema/node.AGI_stk_metadata.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Vendor/AGI_stk_metadata/schema/solarPanelGroup.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/AGI_stk_metadata/schema/solarPanelGroup.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Vendor/CESIUM_primitive_outline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/CESIUM_primitive_outline/README.md -------------------------------------------------------------------------------- /extensions/2.0/Vendor/CESIUM_primitive_outline/figures/depth-fighting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/CESIUM_primitive_outline/figures/depth-fighting.png -------------------------------------------------------------------------------- /extensions/2.0/Vendor/CESIUM_primitive_outline/figures/with-extension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/CESIUM_primitive_outline/figures/with-extension.png -------------------------------------------------------------------------------- /extensions/2.0/Vendor/CESIUM_primitive_outline/schema/primitive.CESIUM_primitive_outline.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/CESIUM_primitive_outline/schema/primitive.CESIUM_primitive_outline.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Vendor/EXT_lights_ies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/EXT_lights_ies/README.md -------------------------------------------------------------------------------- /extensions/2.0/Vendor/EXT_lights_ies/schema/glTF.EXT_lights_ies.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/EXT_lights_ies/schema/glTF.EXT_lights_ies.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Vendor/EXT_lights_ies/schema/lightProfile.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/EXT_lights_ies/schema/lightProfile.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Vendor/EXT_lights_ies/schema/node.EXT_lights_ies.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/EXT_lights_ies/schema/node.EXT_lights_ies.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Vendor/EXT_lights_image_based/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/EXT_lights_image_based/README.md -------------------------------------------------------------------------------- /extensions/2.0/Vendor/EXT_lights_image_based/figures/Cube_map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/EXT_lights_image_based/figures/Cube_map.svg -------------------------------------------------------------------------------- /extensions/2.0/Vendor/EXT_lights_image_based/schema/glTF.EXT_lights_image_based.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/EXT_lights_image_based/schema/glTF.EXT_lights_image_based.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Vendor/EXT_lights_image_based/schema/light.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/EXT_lights_image_based/schema/light.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Vendor/EXT_lights_image_based/schema/scene.EXT_lights_image_based.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/EXT_lights_image_based/schema/scene.EXT_lights_image_based.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Vendor/EXT_mesh_gpu_instancing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/EXT_mesh_gpu_instancing/README.md -------------------------------------------------------------------------------- /extensions/2.0/Vendor/EXT_mesh_gpu_instancing/samples/teapots_galore/mesh.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/EXT_mesh_gpu_instancing/samples/teapots_galore/mesh.bin -------------------------------------------------------------------------------- /extensions/2.0/Vendor/EXT_mesh_gpu_instancing/samples/teapots_galore/mesh_2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/EXT_mesh_gpu_instancing/samples/teapots_galore/mesh_2.bin -------------------------------------------------------------------------------- /extensions/2.0/Vendor/EXT_mesh_gpu_instancing/samples/teapots_galore/teapots_galore.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/EXT_mesh_gpu_instancing/samples/teapots_galore/teapots_galore.gltf -------------------------------------------------------------------------------- /extensions/2.0/Vendor/EXT_mesh_gpu_instancing/samples/teapots_galore/transforms.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/EXT_mesh_gpu_instancing/samples/teapots_galore/transforms.bin -------------------------------------------------------------------------------- /extensions/2.0/Vendor/EXT_mesh_gpu_instancing/samples/teapots_galore_id/mesh.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/EXT_mesh_gpu_instancing/samples/teapots_galore_id/mesh.bin -------------------------------------------------------------------------------- /extensions/2.0/Vendor/EXT_mesh_gpu_instancing/samples/teapots_galore_id/mesh_2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/EXT_mesh_gpu_instancing/samples/teapots_galore_id/mesh_2.bin -------------------------------------------------------------------------------- /extensions/2.0/Vendor/EXT_mesh_gpu_instancing/samples/teapots_galore_id/teapots_galore_id.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/EXT_mesh_gpu_instancing/samples/teapots_galore_id/teapots_galore_id.gltf -------------------------------------------------------------------------------- /extensions/2.0/Vendor/EXT_mesh_gpu_instancing/samples/teapots_galore_id/transforms.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/EXT_mesh_gpu_instancing/samples/teapots_galore_id/transforms.bin -------------------------------------------------------------------------------- /extensions/2.0/Vendor/EXT_mesh_gpu_instancing/schema/glTF.EXT_mesh_gpu_instancing.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/EXT_mesh_gpu_instancing/schema/glTF.EXT_mesh_gpu_instancing.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Vendor/EXT_mesh_manifold/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/EXT_mesh_manifold/README.md -------------------------------------------------------------------------------- /extensions/2.0/Vendor/EXT_mesh_manifold/samples/manifold/manifold.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/EXT_mesh_manifold/samples/manifold/manifold.bin -------------------------------------------------------------------------------- /extensions/2.0/Vendor/EXT_mesh_manifold/samples/manifold/manifold.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/EXT_mesh_manifold/samples/manifold/manifold.gltf -------------------------------------------------------------------------------- /extensions/2.0/Vendor/EXT_mesh_manifold/samples/manifold/moon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/EXT_mesh_manifold/samples/manifold/moon.jpg -------------------------------------------------------------------------------- /extensions/2.0/Vendor/EXT_mesh_manifold/samples/manifold/space.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/EXT_mesh_manifold/samples/manifold/space.jpg -------------------------------------------------------------------------------- /extensions/2.0/Vendor/EXT_mesh_manifold/schema/mesh.EXT_mesh_manifold.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/EXT_mesh_manifold/schema/mesh.EXT_mesh_manifold.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Vendor/EXT_mesh_primitive_restart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/EXT_mesh_primitive_restart/README.md -------------------------------------------------------------------------------- /extensions/2.0/Vendor/EXT_mesh_primitive_restart/schema/EXT_mesh_primitive_restart.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/EXT_mesh_primitive_restart/schema/EXT_mesh_primitive_restart.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Vendor/EXT_mesh_primitive_restart/schema/primitiveGroup.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/EXT_mesh_primitive_restart/schema/primitiveGroup.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Vendor/EXT_meshopt_compression/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/EXT_meshopt_compression/README.md -------------------------------------------------------------------------------- /extensions/2.0/Vendor/EXT_meshopt_compression/schema/buffer.EXT_meshopt_compression.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/EXT_meshopt_compression/schema/buffer.EXT_meshopt_compression.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Vendor/EXT_meshopt_compression/schema/bufferView.EXT_meshopt_compression.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/EXT_meshopt_compression/schema/bufferView.EXT_meshopt_compression.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Vendor/EXT_texture_astc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/EXT_texture_astc/README.md -------------------------------------------------------------------------------- /extensions/2.0/Vendor/EXT_texture_astc/schema/texture.EXT_texture_astc.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/EXT_texture_astc/schema/texture.EXT_texture_astc.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Vendor/EXT_texture_webp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/EXT_texture_webp/README.md -------------------------------------------------------------------------------- /extensions/2.0/Vendor/EXT_texture_webp/schema/glTF.EXT_texture_webp.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/EXT_texture_webp/schema/glTF.EXT_texture_webp.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Vendor/FB_geometry_metadata/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/FB_geometry_metadata/README.md -------------------------------------------------------------------------------- /extensions/2.0/Vendor/FB_geometry_metadata/schema/scene.FB_geometry_metadata.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/FB_geometry_metadata/schema/scene.FB_geometry_metadata.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Vendor/FB_geometry_metadata/schema/sceneBounds.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/FB_geometry_metadata/schema/sceneBounds.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Vendor/GODOT_single_root/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/GODOT_single_root/README.md -------------------------------------------------------------------------------- /extensions/2.0/Vendor/GRIFFEL_bim_data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/GRIFFEL_bim_data/README.md -------------------------------------------------------------------------------- /extensions/2.0/Vendor/GRIFFEL_bim_data/schema/GRIFFEL_bim_data.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/GRIFFEL_bim_data/schema/GRIFFEL_bim_data.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Vendor/GRIFFEL_bim_data/schema/glTF.GRIFFEL_bim_data.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/GRIFFEL_bim_data/schema/glTF.GRIFFEL_bim_data.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Vendor/GRIFFEL_bim_data/schema/node.GRIFFEL_bim_data.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/GRIFFEL_bim_data/schema/node.GRIFFEL_bim_data.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Vendor/MPEG_accessor_timed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/MPEG_accessor_timed/README.md -------------------------------------------------------------------------------- /extensions/2.0/Vendor/MPEG_accessor_timed/schema/MPEG_accessor_timed.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/MPEG_accessor_timed/schema/MPEG_accessor_timed.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Vendor/MPEG_animation_timing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/MPEG_animation_timing/README.md -------------------------------------------------------------------------------- /extensions/2.0/Vendor/MPEG_animation_timing/schema/MPEG_animation_timing.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/MPEG_animation_timing/schema/MPEG_animation_timing.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Vendor/MPEG_audio_spatial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/MPEG_audio_spatial/README.md -------------------------------------------------------------------------------- /extensions/2.0/Vendor/MPEG_audio_spatial/schema/MPEG_audio_spatial.listener.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/MPEG_audio_spatial/schema/MPEG_audio_spatial.listener.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Vendor/MPEG_audio_spatial/schema/MPEG_audio_spatial.reverb.property.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/MPEG_audio_spatial/schema/MPEG_audio_spatial.reverb.property.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Vendor/MPEG_audio_spatial/schema/MPEG_audio_spatial.reverb.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/MPEG_audio_spatial/schema/MPEG_audio_spatial.reverb.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Vendor/MPEG_audio_spatial/schema/MPEG_audio_spatial.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/MPEG_audio_spatial/schema/MPEG_audio_spatial.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Vendor/MPEG_audio_spatial/schema/MPEG_audio_spatial.source.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/MPEG_audio_spatial/schema/MPEG_audio_spatial.source.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Vendor/MPEG_buffer_circular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/MPEG_buffer_circular/README.md -------------------------------------------------------------------------------- /extensions/2.0/Vendor/MPEG_buffer_circular/schema/MPEG_buffer_circular.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/MPEG_buffer_circular/schema/MPEG_buffer_circular.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Vendor/MPEG_media/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/MPEG_media/README.md -------------------------------------------------------------------------------- /extensions/2.0/Vendor/MPEG_media/schema/MPEG_media.media.alternative.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/MPEG_media/schema/MPEG_media.media.alternative.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Vendor/MPEG_media/schema/MPEG_media.media.alternative.track.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/MPEG_media/schema/MPEG_media.media.alternative.track.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Vendor/MPEG_media/schema/MPEG_media.media.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/MPEG_media/schema/MPEG_media.media.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Vendor/MPEG_media/schema/MPEG_media.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/MPEG_media/schema/MPEG_media.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Vendor/MPEG_mesh_linking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/MPEG_mesh_linking/README.md -------------------------------------------------------------------------------- /extensions/2.0/Vendor/MPEG_mesh_linking/schema/MPEG_mesh_linking.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/MPEG_mesh_linking/schema/MPEG_mesh_linking.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Vendor/MPEG_scene_dynamic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/MPEG_scene_dynamic/README.md -------------------------------------------------------------------------------- /extensions/2.0/Vendor/MPEG_scene_dynamic/schema/MPEG_scene_dynamic.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/MPEG_scene_dynamic/schema/MPEG_scene_dynamic.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Vendor/MPEG_texture_video/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/MPEG_texture_video/README.md -------------------------------------------------------------------------------- /extensions/2.0/Vendor/MPEG_texture_video/schema/MPEG_texture_video.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/MPEG_texture_video/schema/MPEG_texture_video.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Vendor/MPEG_viewport_recommended/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/MPEG_viewport_recommended/README.md -------------------------------------------------------------------------------- /extensions/2.0/Vendor/MPEG_viewport_recommended/schema/MPEG_viewport_recommended.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/MPEG_viewport_recommended/schema/MPEG_viewport_recommended.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Vendor/MPEG_viewport_recommended/schema/MPEG_viewport_recommended.viewport.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/MPEG_viewport_recommended/schema/MPEG_viewport_recommended.viewport.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Vendor/MSFT_lod/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/MSFT_lod/README.md -------------------------------------------------------------------------------- /extensions/2.0/Vendor/MSFT_lod/schema/glTF.MSFT_lod.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/MSFT_lod/schema/glTF.MSFT_lod.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Vendor/MSFT_packing_normalRoughnessMetallic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/MSFT_packing_normalRoughnessMetallic/README.md -------------------------------------------------------------------------------- /extensions/2.0/Vendor/MSFT_packing_normalRoughnessMetallic/schema/glTF.MSFT_packing_normalRoughnessMetallic.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/MSFT_packing_normalRoughnessMetallic/schema/glTF.MSFT_packing_normalRoughnessMetallic.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Vendor/MSFT_packing_occlusionRoughnessMetallic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/MSFT_packing_occlusionRoughnessMetallic/README.md -------------------------------------------------------------------------------- /extensions/2.0/Vendor/MSFT_packing_occlusionRoughnessMetallic/schema/glTF.MSFT_packing_occlusionRoughnessMetallic.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/MSFT_packing_occlusionRoughnessMetallic/schema/glTF.MSFT_packing_occlusionRoughnessMetallic.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Vendor/MSFT_texture_dds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/MSFT_texture_dds/README.md -------------------------------------------------------------------------------- /extensions/2.0/Vendor/MSFT_texture_dds/schema/glTF.MSFT_texture_dds.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/MSFT_texture_dds/schema/glTF.MSFT_texture_dds.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Vendor/NV_materials_mdl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/NV_materials_mdl/README.md -------------------------------------------------------------------------------- /extensions/2.0/Vendor/NV_materials_mdl/schema/bsdfMeasurement.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/NV_materials_mdl/schema/bsdfMeasurement.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Vendor/NV_materials_mdl/schema/functionCall.argument.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/NV_materials_mdl/schema/functionCall.argument.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Vendor/NV_materials_mdl/schema/functionCall.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/NV_materials_mdl/schema/functionCall.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Vendor/NV_materials_mdl/schema/functionCall.type.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/NV_materials_mdl/schema/functionCall.type.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Vendor/NV_materials_mdl/schema/glTF.NV_materials_mdl.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/NV_materials_mdl/schema/glTF.NV_materials_mdl.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Vendor/NV_materials_mdl/schema/material.NV_materials_mdl.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/NV_materials_mdl/schema/material.NV_materials_mdl.schema.json -------------------------------------------------------------------------------- /extensions/2.0/Vendor/NV_materials_mdl/schema/module.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/2.0/Vendor/NV_materials_mdl/schema/module.schema.json -------------------------------------------------------------------------------- /extensions/Prefixes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/Prefixes.md -------------------------------------------------------------------------------- /extensions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/README.md -------------------------------------------------------------------------------- /extensions/Template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/extensions/Template.md -------------------------------------------------------------------------------- /specification/1.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/1.0/README.md -------------------------------------------------------------------------------- /specification/1.0/figures/dictionary-objects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/1.0/figures/dictionary-objects.png -------------------------------------------------------------------------------- /specification/1.0/figures/files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/1.0/figures/files.png -------------------------------------------------------------------------------- /specification/1.0/figures/gltfOverview-0.2.0-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/1.0/figures/gltfOverview-0.2.0-small.png -------------------------------------------------------------------------------- /specification/1.0/figures/gltfOverview-0.2.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/1.0/figures/gltfOverview-0.2.0.png -------------------------------------------------------------------------------- /specification/1.0/figures/pptx/figures.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/1.0/figures/pptx/figures.pptx -------------------------------------------------------------------------------- /specification/1.0/schema/accessor.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/1.0/schema/accessor.schema.json -------------------------------------------------------------------------------- /specification/1.0/schema/animation.channel.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/1.0/schema/animation.channel.schema.json -------------------------------------------------------------------------------- /specification/1.0/schema/animation.channel.target.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/1.0/schema/animation.channel.target.schema.json -------------------------------------------------------------------------------- /specification/1.0/schema/animation.parameter.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/1.0/schema/animation.parameter.schema.json -------------------------------------------------------------------------------- /specification/1.0/schema/animation.sampler.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/1.0/schema/animation.sampler.schema.json -------------------------------------------------------------------------------- /specification/1.0/schema/animation.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/1.0/schema/animation.schema.json -------------------------------------------------------------------------------- /specification/1.0/schema/arrayValues.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/1.0/schema/arrayValues.schema.json -------------------------------------------------------------------------------- /specification/1.0/schema/asset.profile.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/1.0/schema/asset.profile.schema.json -------------------------------------------------------------------------------- /specification/1.0/schema/asset.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/1.0/schema/asset.schema.json -------------------------------------------------------------------------------- /specification/1.0/schema/buffer.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/1.0/schema/buffer.schema.json -------------------------------------------------------------------------------- /specification/1.0/schema/bufferView.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/1.0/schema/bufferView.schema.json -------------------------------------------------------------------------------- /specification/1.0/schema/camera.orthographic.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/1.0/schema/camera.orthographic.schema.json -------------------------------------------------------------------------------- /specification/1.0/schema/camera.perspective.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/1.0/schema/camera.perspective.schema.json -------------------------------------------------------------------------------- /specification/1.0/schema/camera.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/1.0/schema/camera.schema.json -------------------------------------------------------------------------------- /specification/1.0/schema/examples/accessors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/1.0/schema/examples/accessors.json -------------------------------------------------------------------------------- /specification/1.0/schema/examples/animations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/1.0/schema/examples/animations.json -------------------------------------------------------------------------------- /specification/1.0/schema/examples/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/1.0/schema/examples/asset.json -------------------------------------------------------------------------------- /specification/1.0/schema/examples/bufferViews.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/1.0/schema/examples/bufferViews.json -------------------------------------------------------------------------------- /specification/1.0/schema/examples/buffers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/1.0/schema/examples/buffers.json -------------------------------------------------------------------------------- /specification/1.0/schema/examples/cameras.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/1.0/schema/examples/cameras.json -------------------------------------------------------------------------------- /specification/1.0/schema/examples/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/1.0/schema/examples/extensions.json -------------------------------------------------------------------------------- /specification/1.0/schema/examples/images.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/1.0/schema/examples/images.json -------------------------------------------------------------------------------- /specification/1.0/schema/examples/materials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/1.0/schema/examples/materials.json -------------------------------------------------------------------------------- /specification/1.0/schema/examples/meshes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/1.0/schema/examples/meshes.json -------------------------------------------------------------------------------- /specification/1.0/schema/examples/nodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/1.0/schema/examples/nodes.json -------------------------------------------------------------------------------- /specification/1.0/schema/examples/programs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/1.0/schema/examples/programs.json -------------------------------------------------------------------------------- /specification/1.0/schema/examples/samplers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/1.0/schema/examples/samplers.json -------------------------------------------------------------------------------- /specification/1.0/schema/examples/scenes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/1.0/schema/examples/scenes.json -------------------------------------------------------------------------------- /specification/1.0/schema/examples/shaders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/1.0/schema/examples/shaders.json -------------------------------------------------------------------------------- /specification/1.0/schema/examples/skins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/1.0/schema/examples/skins.json -------------------------------------------------------------------------------- /specification/1.0/schema/examples/techniques.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/1.0/schema/examples/techniques.json -------------------------------------------------------------------------------- /specification/1.0/schema/examples/textures.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/1.0/schema/examples/textures.json -------------------------------------------------------------------------------- /specification/1.0/schema/extension.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/1.0/schema/extension.schema.json -------------------------------------------------------------------------------- /specification/1.0/schema/extras.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/1.0/schema/extras.schema.json -------------------------------------------------------------------------------- /specification/1.0/schema/glTF.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/1.0/schema/glTF.schema.json -------------------------------------------------------------------------------- /specification/1.0/schema/glTFChildOfRootProperty.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/1.0/schema/glTFChildOfRootProperty.schema.json -------------------------------------------------------------------------------- /specification/1.0/schema/glTFProperty.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/1.0/schema/glTFProperty.schema.json -------------------------------------------------------------------------------- /specification/1.0/schema/glTFid.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/1.0/schema/glTFid.schema.json -------------------------------------------------------------------------------- /specification/1.0/schema/image.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/1.0/schema/image.schema.json -------------------------------------------------------------------------------- /specification/1.0/schema/material.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/1.0/schema/material.schema.json -------------------------------------------------------------------------------- /specification/1.0/schema/material.values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/1.0/schema/material.values.schema.json -------------------------------------------------------------------------------- /specification/1.0/schema/mesh.primitive.attribute.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/1.0/schema/mesh.primitive.attribute.schema.json -------------------------------------------------------------------------------- /specification/1.0/schema/mesh.primitive.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/1.0/schema/mesh.primitive.schema.json -------------------------------------------------------------------------------- /specification/1.0/schema/mesh.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/1.0/schema/mesh.schema.json -------------------------------------------------------------------------------- /specification/1.0/schema/node.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/1.0/schema/node.schema.json -------------------------------------------------------------------------------- /specification/1.0/schema/program.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/1.0/schema/program.schema.json -------------------------------------------------------------------------------- /specification/1.0/schema/sampler.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/1.0/schema/sampler.schema.json -------------------------------------------------------------------------------- /specification/1.0/schema/scene.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/1.0/schema/scene.schema.json -------------------------------------------------------------------------------- /specification/1.0/schema/shader.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/1.0/schema/shader.schema.json -------------------------------------------------------------------------------- /specification/1.0/schema/skin.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/1.0/schema/skin.schema.json -------------------------------------------------------------------------------- /specification/1.0/schema/technique.attribute.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/1.0/schema/technique.attribute.schema.json -------------------------------------------------------------------------------- /specification/1.0/schema/technique.parameters.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/1.0/schema/technique.parameters.schema.json -------------------------------------------------------------------------------- /specification/1.0/schema/technique.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/1.0/schema/technique.schema.json -------------------------------------------------------------------------------- /specification/1.0/schema/technique.states.functions.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/1.0/schema/technique.states.functions.schema.json -------------------------------------------------------------------------------- /specification/1.0/schema/technique.states.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/1.0/schema/technique.states.schema.json -------------------------------------------------------------------------------- /specification/1.0/schema/technique.uniform.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/1.0/schema/technique.uniform.schema.json -------------------------------------------------------------------------------- /specification/1.0/schema/texture.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/1.0/schema/texture.schema.json -------------------------------------------------------------------------------- /specification/2.0/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/2.0/Makefile -------------------------------------------------------------------------------- /specification/2.0/ObjectModel.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/2.0/ObjectModel.adoc -------------------------------------------------------------------------------- /specification/2.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/2.0/README.md -------------------------------------------------------------------------------- /specification/2.0/Specification.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/2.0/Specification.adoc -------------------------------------------------------------------------------- /specification/2.0/docinfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/2.0/docinfo.html -------------------------------------------------------------------------------- /specification/2.0/figures/coordinate-system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/2.0/figures/coordinate-system.png -------------------------------------------------------------------------------- /specification/2.0/figures/figures.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/2.0/figures/figures.pptx -------------------------------------------------------------------------------- /specification/2.0/figures/glb2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/2.0/figures/glb2.svg -------------------------------------------------------------------------------- /specification/2.0/figures/gltfOverview-2.0.0d-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/2.0/figures/gltfOverview-2.0.0d-small.png -------------------------------------------------------------------------------- /specification/2.0/figures/gltfOverview-2.0.0d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/2.0/figures/gltfOverview-2.0.0d.png -------------------------------------------------------------------------------- /specification/2.0/figures/materials.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/2.0/figures/materials.svg -------------------------------------------------------------------------------- /specification/2.0/figures/objects.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/2.0/figures/objects.svg -------------------------------------------------------------------------------- /specification/2.0/figures/padding-mat2-1byte.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/2.0/figures/padding-mat2-1byte.svg -------------------------------------------------------------------------------- /specification/2.0/figures/padding-mat3-1byte.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/2.0/figures/padding-mat3-1byte.svg -------------------------------------------------------------------------------- /specification/2.0/figures/padding-mat3-2byte.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/2.0/figures/padding-mat3-2byte.svg -------------------------------------------------------------------------------- /specification/2.0/figures/pbr.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/2.0/figures/pbr.dot -------------------------------------------------------------------------------- /specification/2.0/figures/pbr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/2.0/figures/pbr.svg -------------------------------------------------------------------------------- /specification/2.0/figures/texcoords.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/2.0/figures/texcoords.svg -------------------------------------------------------------------------------- /specification/2.0/khronos.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/2.0/khronos.css -------------------------------------------------------------------------------- /specification/2.0/schema/accessor.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/2.0/schema/accessor.schema.json -------------------------------------------------------------------------------- /specification/2.0/schema/accessor.sparse.indices.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/2.0/schema/accessor.sparse.indices.schema.json -------------------------------------------------------------------------------- /specification/2.0/schema/accessor.sparse.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/2.0/schema/accessor.sparse.schema.json -------------------------------------------------------------------------------- /specification/2.0/schema/accessor.sparse.values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/2.0/schema/accessor.sparse.values.schema.json -------------------------------------------------------------------------------- /specification/2.0/schema/animation.channel.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/2.0/schema/animation.channel.schema.json -------------------------------------------------------------------------------- /specification/2.0/schema/animation.channel.target.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/2.0/schema/animation.channel.target.schema.json -------------------------------------------------------------------------------- /specification/2.0/schema/animation.sampler.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/2.0/schema/animation.sampler.schema.json -------------------------------------------------------------------------------- /specification/2.0/schema/animation.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/2.0/schema/animation.schema.json -------------------------------------------------------------------------------- /specification/2.0/schema/asset.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/2.0/schema/asset.schema.json -------------------------------------------------------------------------------- /specification/2.0/schema/buffer.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/2.0/schema/buffer.schema.json -------------------------------------------------------------------------------- /specification/2.0/schema/bufferView.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/2.0/schema/bufferView.schema.json -------------------------------------------------------------------------------- /specification/2.0/schema/camera.orthographic.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/2.0/schema/camera.orthographic.schema.json -------------------------------------------------------------------------------- /specification/2.0/schema/camera.perspective.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/2.0/schema/camera.perspective.schema.json -------------------------------------------------------------------------------- /specification/2.0/schema/camera.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/2.0/schema/camera.schema.json -------------------------------------------------------------------------------- /specification/2.0/schema/extension.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/2.0/schema/extension.schema.json -------------------------------------------------------------------------------- /specification/2.0/schema/extras.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/2.0/schema/extras.schema.json -------------------------------------------------------------------------------- /specification/2.0/schema/glTF.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/2.0/schema/glTF.schema.json -------------------------------------------------------------------------------- /specification/2.0/schema/glTFChildOfRootProperty.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/2.0/schema/glTFChildOfRootProperty.schema.json -------------------------------------------------------------------------------- /specification/2.0/schema/glTFProperty.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/2.0/schema/glTFProperty.schema.json -------------------------------------------------------------------------------- /specification/2.0/schema/glTFid.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/2.0/schema/glTFid.schema.json -------------------------------------------------------------------------------- /specification/2.0/schema/image.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/2.0/schema/image.schema.json -------------------------------------------------------------------------------- /specification/2.0/schema/material.normalTextureInfo.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/2.0/schema/material.normalTextureInfo.schema.json -------------------------------------------------------------------------------- /specification/2.0/schema/material.occlusionTextureInfo.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/2.0/schema/material.occlusionTextureInfo.schema.json -------------------------------------------------------------------------------- /specification/2.0/schema/material.pbrMetallicRoughness.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/2.0/schema/material.pbrMetallicRoughness.schema.json -------------------------------------------------------------------------------- /specification/2.0/schema/material.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/2.0/schema/material.schema.json -------------------------------------------------------------------------------- /specification/2.0/schema/mesh.primitive.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/2.0/schema/mesh.primitive.schema.json -------------------------------------------------------------------------------- /specification/2.0/schema/mesh.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/2.0/schema/mesh.schema.json -------------------------------------------------------------------------------- /specification/2.0/schema/node.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/2.0/schema/node.schema.json -------------------------------------------------------------------------------- /specification/2.0/schema/sampler.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/2.0/schema/sampler.schema.json -------------------------------------------------------------------------------- /specification/2.0/schema/scene.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/2.0/schema/scene.schema.json -------------------------------------------------------------------------------- /specification/2.0/schema/skin.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/2.0/schema/skin.schema.json -------------------------------------------------------------------------------- /specification/2.0/schema/texture.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/2.0/schema/texture.schema.json -------------------------------------------------------------------------------- /specification/2.0/schema/textureInfo.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/2.0/schema/textureInfo.schema.json -------------------------------------------------------------------------------- /specification/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/README.md -------------------------------------------------------------------------------- /specification/figures/glTF_RGB_June16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF/HEAD/specification/figures/glTF_RGB_June16.svg --------------------------------------------------------------------------------