├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md └── workflows │ └── ci.yml ├── .gitignore ├── .project ├── .pydevproject ├── .vscode ├── extensions.json └── launch.json ├── AUTHORS.txt ├── CODE_OF_CONDUCT.md ├── DEBUGGING.md ├── LICENSE.txt ├── README.md ├── Technical.md ├── addons └── io_scene_gltf2 │ ├── __init__.py │ ├── blender │ ├── __init__.py │ ├── com │ │ ├── README.md │ │ ├── blender_default.py │ │ ├── conversion.py │ │ ├── data_path.py │ │ ├── extras.py │ │ ├── gltf2_blender_math.py │ │ ├── gltf2_blender_ui.py │ │ ├── gltf2_blender_utils.py │ │ ├── json_util.py │ │ └── material_helpers.py │ ├── exp │ │ ├── README.md │ │ ├── accessors.py │ │ ├── animation │ │ │ ├── action.py │ │ │ ├── anim_utils.py │ │ │ ├── animations.py │ │ │ ├── drivers.py │ │ │ ├── fcurves │ │ │ │ ├── animation.py │ │ │ │ ├── channel_target.py │ │ │ │ ├── channels.py │ │ │ │ ├── keyframes.py │ │ │ │ └── sampler.py │ │ │ ├── keyframes.py │ │ │ ├── sampled │ │ │ │ ├── armature │ │ │ │ │ ├── action_sampled.py │ │ │ │ │ ├── channel_target.py │ │ │ │ │ ├── channels.py │ │ │ │ │ ├── keyframes.py │ │ │ │ │ └── sampler.py │ │ │ │ ├── data │ │ │ │ │ ├── channel_target.py │ │ │ │ │ ├── channels.py │ │ │ │ │ ├── keyframes.py │ │ │ │ │ └── sampler.py │ │ │ │ ├── object │ │ │ │ │ ├── action_sampled.py │ │ │ │ │ ├── channel_target.py │ │ │ │ │ ├── channels.py │ │ │ │ │ ├── keyframes.py │ │ │ │ │ └── sampler.py │ │ │ │ ├── sampling_cache.py │ │ │ │ └── shapekeys │ │ │ │ │ ├── action_sampled.py │ │ │ │ │ ├── channel_target.py │ │ │ │ │ ├── channels.py │ │ │ │ │ ├── keyframes.py │ │ │ │ │ └── sampler.py │ │ │ ├── scene_animation.py │ │ │ └── tracks.py │ │ ├── cache.py │ │ ├── cameras.py │ │ ├── export.py │ │ ├── exporter.py │ │ ├── gather.py │ │ ├── joints.py │ │ ├── light_spots.py │ │ ├── lights.py │ │ ├── material │ │ │ ├── encode_image.py │ │ │ ├── extensions │ │ │ │ ├── anisotropy.py │ │ │ │ ├── clearcoat.py │ │ │ │ ├── emission.py │ │ │ │ ├── ior.py │ │ │ │ ├── sheen.py │ │ │ │ ├── specular.py │ │ │ │ ├── transmission.py │ │ │ │ ├── variants.py │ │ │ │ └── volume.py │ │ │ ├── image.py │ │ │ ├── material_utils.py │ │ │ ├── material_viewport.py │ │ │ ├── materials.py │ │ │ ├── pbr_metallic_roughness.py │ │ │ ├── search_node_tree.py │ │ │ ├── texture.py │ │ │ ├── texture_info.py │ │ │ └── unlit.py │ │ ├── mesh.py │ │ ├── nodes.py │ │ ├── primitive_attributes.py │ │ ├── primitive_extract.py │ │ ├── primitives.py │ │ ├── sampler.py │ │ ├── skins.py │ │ └── tree.py │ └── imp │ │ ├── KHR_materials_anisotropy.py │ │ ├── KHR_materials_pbrSpecularGlossiness.py │ │ ├── KHR_materials_unlit.py │ │ ├── README.md │ │ ├── animation.py │ │ ├── animation_node.py │ │ ├── animation_pointer.py │ │ ├── animation_utils.py │ │ ├── animation_weight.py │ │ ├── blender_gltf.py │ │ ├── camera.py │ │ ├── draco_compression_extension.py │ │ ├── image.py │ │ ├── light.py │ │ ├── material.py │ │ ├── material_utils.py │ │ ├── mesh.py │ │ ├── node.py │ │ ├── pbrMetallicRoughness.py │ │ ├── scene.py │ │ ├── texture.py │ │ └── vnode.py │ └── io │ ├── __init__.py │ ├── com │ ├── README.md │ ├── constants.py │ ├── debug.py │ ├── draco.py │ ├── gltf2_io.py │ ├── gltf2_io_extensions.py │ ├── lights_punctual.py │ ├── path.py │ └── variants.py │ ├── exp │ ├── README.md │ ├── binary_data.py │ ├── buffer.py │ ├── draco.py │ ├── export.py │ ├── image_data.py │ └── user_extensions.py │ └── imp │ ├── README.md │ ├── __init__.py │ ├── gltf2_io_binary.py │ ├── gltf2_io_gltf.py │ └── user_extensions.py ├── docs ├── README.md ├── blender_docs │ └── scene_gltf2.rst ├── io_process.png ├── io_process.pptx ├── packages.png └── packages.uxf ├── example-addons ├── example_gltf_exporter_extension │ ├── __init__.py │ ├── blender_manifest.toml │ └── readme.md └── example_gltf_importer_extension │ ├── __init__.py │ ├── blender_manifest.toml │ └── readme.md ├── images ├── addons_import-export_scene-gltf2_addon-preferences-animation.png ├── addons_import-export_scene-gltf2_addon-preferences-shader.png ├── addons_import-export_scene-gltf2_addon-preferences-variant.png ├── addons_import-export_scene-gltf2_material-backface-culling.png ├── addons_import-export_scene-gltf2_material-base-color-image-hookup.png ├── addons_import-export_scene-gltf2_material-base-color-solid-green.png ├── addons_import-export_scene-gltf2_material-base-color.png ├── addons_import-export_scene-gltf2_material-channels.jpg ├── addons_import-export_scene-gltf2_material-clearcoat.png ├── addons_import-export_scene-gltf2_material-emissive.png ├── addons_import-export_scene-gltf2_material-factors.png ├── addons_import-export_scene-gltf2_material-mapping.png ├── addons_import-export_scene-gltf2_material-metal-rough.png ├── addons_import-export_scene-gltf2_material-normal.png ├── addons_import-export_scene-gltf2_material-occlusion-only.png ├── addons_import-export_scene-gltf2_material-opaque.png ├── addons_import-export_scene-gltf2_material-orm-hookup.png ├── addons_import-export_scene-gltf2_material-principled.png ├── addons_import-export_scene-gltf2_material-rgb.png ├── addons_import-export_scene-gltf2_material-round-alpha.png ├── addons_import-export_scene-gltf2_material-sheen.png ├── addons_import-export_scene-gltf2_material-unlit.png ├── addons_import-export_scene-gltf2_material-volume.png ├── addons_import-export_scene-gltf2_material_anisotropy-grayscale-texture.png ├── addons_import-export_scene-gltf2_material_anisotropy.png ├── addons_import-export_scene-gltf2_material_variants-detail.png └── addons_import-export_scene-gltf2_material_variants-switch.png ├── misc ├── Blender_logo.png ├── Debug_settings.png └── glTF_logo.png ├── tests ├── .eslintrc.json ├── .npmrc ├── export_gltf.py ├── gltf │ ├── Box.glb │ ├── Box.gltf │ └── Box0.bin ├── package.json ├── pbr_node │ ├── .gitignore │ ├── README.md │ ├── glTF2.blend │ └── glTF2_Principled.blend ├── roundtrip │ ├── 00_empty_scene │ │ └── 00_empty_scene.gltf │ ├── 00_no_nodes │ │ └── 00_no_nodes.gltf │ ├── 00_no_scene │ │ ├── 00_no_scene.bin │ │ └── 00_no_scene.gltf │ ├── 00_no_scenes │ │ ├── 00_no_scenes.bin │ │ └── 00_no_scenes.gltf │ ├── 01_alpha_blend │ │ ├── 01_alpha_blend.bin │ │ ├── 01_alpha_blend.gltf │ │ └── 01_alpha_blend.png │ ├── 01_alpha_mask │ │ ├── 01_alpha_mask.bin │ │ ├── 01_alpha_mask.gltf │ │ └── 01_alpha_mask.png │ ├── 01_color_attribute │ │ ├── 01_color_attribute.bin │ │ └── 01_color_attribute.gltf │ ├── 01_cs_morph │ │ ├── 01_cs_morph.bin │ │ └── 01_cs_morph.gltf │ ├── 01_cs_rotate │ │ ├── 01_cs_rotate.bin │ │ └── 01_cs_rotate.gltf │ ├── 01_cs_scale │ │ ├── 01_cs_scale.bin │ │ └── 01_cs_scale.gltf │ ├── 01_cs_translate │ │ ├── 01_cs_translate.bin │ │ └── 01_cs_translate.gltf │ ├── 01_cube │ │ ├── 01_cube.bin │ │ └── 01_cube.gltf │ ├── 01_cube_no_material │ │ ├── 01_cube_no_material.bin │ │ └── 01_cube_no_material.gltf │ ├── 01_metallic_sphere │ │ ├── 01_metallic_sphere.bin │ │ └── 01_metallic_sphere.gltf │ ├── 01_morphed_cube │ │ ├── 01_morphed_cube.bin │ │ ├── 01_morphed_cube.gltf │ │ └── 01_morphed_cube_options.txt │ ├── 01_morphed_cube_no_uv │ │ ├── 01_morphed_cube_no_uv.bin │ │ └── 01_morphed_cube_no_uv.gltf │ ├── 01_morphed_triangle │ │ ├── 01_morphed_triangle.bin │ │ └── 01_morphed_triangle.gltf │ ├── 01_plane │ │ ├── 01_plane.bin │ │ └── 01_plane.gltf │ ├── 01_principled_material │ │ ├── 01_principled_baseColor.png │ │ ├── 01_principled_emissive.png │ │ ├── 01_principled_material.bin │ │ ├── 01_principled_material.gltf │ │ ├── 01_principled_normal.png │ │ └── 01_principled_occlusionRoughnessMetallic.png │ ├── 01_single_vs_double_sided │ │ ├── 01_single_vs_double_sided.bin │ │ └── 01_single_vs_double_sided.gltf │ ├── 01_sphere │ │ ├── 01_sphere.bin │ │ └── 01_sphere.gltf │ ├── 01_textured_sphere │ │ ├── 01_Textured_Sphere_BaseColor.png │ │ ├── 01_Textured_Sphere_Normal.png │ │ ├── 01_Textured_Sphere_OcclusionRoughnessMetallic.png │ │ ├── 01_textured_sphere.bin │ │ └── 01_textured_sphere.gltf │ ├── 01_textured_sphere_principled_bsdf │ │ ├── 01_Textured_Sphere_BaseColor.png │ │ ├── 01_Textured_Sphere_Normal.png │ │ ├── 01_Textured_Sphere_OcclusionRoughnessMetallic.png │ │ ├── 01_textured_sphere_principled_bsdf.bin │ │ └── 01_textured_sphere_principled_bsdf.gltf │ ├── 01_triangle │ │ ├── 01_triangle.bin │ │ └── 01_triangle.gltf │ ├── 01_unlit │ │ ├── 01_unlit.bin │ │ └── 01_unlit.gltf │ ├── 01_vertex_count_16bit │ │ ├── 01_vertex_count_16bit.bin │ │ └── 01_vertex_count_16bit.gltf │ ├── 01_vertex_count_32bit │ │ ├── 01_vertex_count_32bit.bin │ │ └── 01_vertex_count_32bit.gltf │ ├── 02_node_hierarchy │ │ ├── 02_node_hierarchy.bin │ │ └── 02_node_hierarchy.gltf │ ├── 02_shared_mesh │ │ ├── 02_shared_mesh.bin │ │ └── 02_shared_mesh.gltf │ ├── 02_suzanne │ │ ├── 02_Suzanne_BaseColor.png │ │ ├── 02_Suzanne_OcclusionRoughnessMetallic.png │ │ ├── 02_suzanne.bin │ │ ├── 02_suzanne.gltf │ │ └── 02_suzanne_Normal.png │ ├── 03_all_animations │ │ ├── 03_all_animations.bin │ │ └── 03_all_animations.gltf │ ├── 03_animated_cube │ │ ├── 03_animated_cube.bin │ │ └── 03_animated_cube.gltf │ ├── 03_skinned_cylinder │ │ ├── 03_skinned_cylinder.bin │ │ └── 03_skinned_cylinder.gltf │ ├── 04_common_materials │ │ ├── 04_common_materials.bin │ │ ├── 04_common_materials.gltf │ │ └── 04_crate.png │ ├── 04_lenna │ │ ├── 04_crate.png │ │ ├── 04_lenna.bin │ │ └── 04_lenna.gltf │ ├── 04_lights │ │ ├── 04_lights.bin │ │ └── 04_lights.gltf │ ├── 04_sphere_specular_glossiness │ │ ├── 04_sphere_specular_glossiness.bin │ │ └── 04_sphere_specular_glossiness.gltf │ ├── 05_metallic_sphere_light │ │ ├── 05_metallic_sphere_light.bin │ │ └── 05_metallic_sphere_light.gltf │ ├── 05_node_material │ │ ├── 05_node_material.bin │ │ └── 05_node_material.gltf │ ├── 06_parent-inverse-anim │ │ ├── 06_parent-inverse-anim.bin │ │ └── 06_parent-inverse-anim.gltf │ ├── 07_nla-anim │ │ ├── 07_nla-anim.bin │ │ └── 07_nla-anim.gltf │ ├── 08_combine_orm │ │ ├── 08_combine_orm.bin │ │ ├── 08_combine_orm.gltf │ │ └── 08_tiny-box-rgb.png │ ├── 09_texture_transform │ │ ├── 09_texture_transform.bin │ │ ├── 09_texture_transform.gltf │ │ └── 09_tiny_grid.png │ ├── 10_custom_normals │ │ ├── 10_custom_normals.bin │ │ └── 10_custom_normals.gltf │ ├── 11_factors_and_textures │ │ ├── 11_factors_and_textures.bin │ │ ├── 11_factors_and_textures.gltf │ │ └── Blank.png │ ├── 12_orm_two_uvmaps │ │ ├── 12_orm_two_uvmaps.bin │ │ ├── 12_orm_two_uvmaps.gltf │ │ └── ORM.png │ ├── 13_occlusion_strength │ │ ├── 13_occlusion_strength.bin │ │ ├── 13_occlusion_strength.gltf │ │ └── White.png │ ├── 13_texture_wrapping │ │ ├── 13_texture_wrapping.bin │ │ ├── 13_texture_wrapping.gltf │ │ └── Black.png │ ├── 14_emission_strength │ │ ├── 14_emission_strength.bin │ │ ├── 14_emission_strength.gltf │ │ └── 14_emission_strength.png │ ├── 15_transmission │ │ ├── 15_transmission.bin │ │ ├── 15_transmission.gltf │ │ └── 15_transmission.png │ ├── 16_volume │ │ ├── 16_volume.gltf │ │ ├── AttenuationLabels.png │ │ ├── AttenuationTest.bin │ │ ├── PlainGrid.png │ │ └── ThicknessTexture.png │ ├── 17_ior │ │ ├── 17_ior.bin │ │ └── 17_ior.gltf │ ├── 18_variants │ │ ├── 18_variants.bin │ │ ├── 18_variants.gltf │ │ └── 18_variants_options.txt │ ├── 19_sheen │ │ ├── 19_sheen.bin │ │ ├── 19_sheen.gltf │ │ └── Untitled.png │ ├── 20_specular │ │ ├── 20_specular.bin │ │ ├── 20_specular.gltf │ │ ├── 20_specular_noval.txt │ │ ├── Untitled.png │ │ └── source.blend │ ├── 20_specular_original │ │ ├── 20_specular_original.bin │ │ ├── 20_specular_original.gltf │ │ ├── Untitled.png │ │ └── source.blend │ ├── 22_factors │ │ ├── 22_factors.bin │ │ ├── 22_factors.gltf │ │ └── Untitled.png │ ├── 22_material_slot_merge │ │ ├── 22_material_slot_merge.bin │ │ └── 22_material_slot_merge.gltf │ ├── 22_material_slot_not_merge │ │ ├── 22_material_slot_not_merge.bin │ │ ├── 22_material_slot_not_merge.gltf │ │ └── 22_material_slot_not_merge_options.txt │ ├── 22_vertex_color │ │ ├── 22_vertex_color.bin │ │ └── 22_vertex_color.gltf │ ├── 23_multi_prim_vertex_attribute │ │ ├── 23_multi_prim_vertex_attribute.bin │ │ ├── 23_multi_prim_vertex_attribute.gltf │ │ └── 23_multi_prim_vertex_attribute_options.txt │ ├── 24_animation_pointer │ │ ├── 24_animation_pointer.gltf │ │ ├── 6.png │ │ ├── AnimateAllTheThings.bin │ │ ├── Default-Checker.jpg │ │ ├── EmissionPattern.jpg │ │ ├── NoisePattern.png │ │ ├── Normal_map_example.jpg │ │ ├── Occlusion_map_example.jpg │ │ ├── cat_03_repeat.jpg │ │ └── meshes_weights_pointer.bin │ ├── 24_gpu_instancing │ │ ├── 24_gpu_instancing.bin │ │ ├── 24_gpu_instancing.gltf │ │ └── 24_gpu_instancing_options.txt │ ├── 25_anisotropy │ │ ├── 25_anisotropy.gltf │ │ ├── 25_anisotropy_options.txt │ │ ├── AnisoDonutLabels.png │ │ ├── AnisoRotation10_Linear.png │ │ ├── AnisoRotation30_Linear.png │ │ ├── AnisotropyDiscs.png │ │ ├── AnisotropyNodeTest.bin │ │ ├── GridWithMarkers.png │ │ ├── GridWithMarkers_30deg.png │ │ └── Heights_1d_Normals_v2.png │ └── Box │ │ ├── Box.gltf │ │ ├── Box0.bin │ │ └── README.md ├── roundtrip_gltf.py ├── scenes │ ├── .gitignore │ ├── 00_all_negative_crop.blend │ ├── 00_bake_sk.blend │ ├── 00_drivers_multiple_actions.blend │ ├── 00_looping_animation.blend │ ├── 00_parented_to_bone_and_animated.blend │ ├── 00_scene_export.blend │ ├── 00_slide_negative_frames.blend │ ├── 00_slide_negative_frames_active_actions.blend │ ├── 00_slide_with_driver.blend │ ├── 01_Textured_Sphere_BaseColor.png │ ├── 01_Textured_Sphere_Normal.png │ ├── 01_Textured_Sphere_OcclusionRoughnessMetallic.png │ ├── 01_alpha_animation.blend │ ├── 01_alpha_blend.blend │ ├── 01_alpha_blend.png │ ├── 01_alpha_mask.blend │ ├── 01_alpha_mask.png │ ├── 01_base_color.blend │ ├── 01_color_attribute.blend │ ├── 01_cs_morph.blend │ ├── 01_cs_rotate.blend │ ├── 01_cs_scale.blend │ ├── 01_cs_translate.blend │ ├── 01_cube.blend │ ├── 01_cube_no_material.blend │ ├── 01_factors.blend │ ├── 01_metallic_sphere.blend │ ├── 01_missing_textures.blend │ ├── 01_morphed_cube.blend │ ├── 01_morphed_cube_no_uv.blend │ ├── 01_morphed_triangle.blend │ ├── 01_plane.blend │ ├── 01_principled_baseColor.png │ ├── 01_principled_emissive.png │ ├── 01_principled_material.blend │ ├── 01_principled_material_280.blend │ ├── 01_principled_normal.png │ ├── 01_principled_occlusionRoughnessMetallic.png │ ├── 01_sphere.blend │ ├── 01_textured_sphere.blend │ ├── 01_triangle.blend │ ├── 01_two_sided_plane.blend │ ├── 01_vertex_count_16bit.blend │ ├── 01_vertex_count_32bit.blend │ ├── 02_Suzanne_BaseColor.png │ ├── 02_Suzanne_OcclusionRoughnessMetallic.png │ ├── 02_material_instancing.blend │ ├── 02_node_hierarchy.blend │ ├── 02_shared_mesh.blend │ ├── 02_suzanne.blend │ ├── 02_suzanne_Normal.png │ ├── 03_all_animations.blend │ ├── 03_animated_cube.blend │ ├── 03_skinned_cylinder.blend │ ├── 04_common_materials.blend │ ├── 04_crate.png │ ├── 04_lenna.blend │ ├── 04_lights.blend │ ├── 04_sphere_specular_glossiness.blend │ ├── 05_metallic_sphere_light.blend │ ├── 05_node_material.blend │ ├── 06_parent-inverse-anim.blend │ ├── 07_nla-anim.blend │ ├── 08_clearcoat.blend │ ├── 08_combine_clearcoat.blend │ ├── 08_combine_occlusionMetal.blend │ ├── 08_combine_occlusionRough.blend │ ├── 08_combine_orm.blend │ ├── 08_combine_roughMetal.blend │ ├── 08_img_metal.png │ ├── 08_img_occlusion.png │ ├── 08_img_rough.png │ ├── 08_normal_ribs.png │ ├── 08_only_metal.blend │ ├── 08_only_occlusion.blend │ ├── 08_only_rough.blend │ ├── 08_tiny-box-__b.png │ ├── 08_tiny-box-_g_.png │ ├── 08_tiny-box-_gb.png │ ├── 08_tiny-box-r_b.png │ ├── 08_tiny-box-rg_.png │ ├── 08_tiny-box-rgb.png │ ├── 09_tex_transform_from_point.blend │ ├── 09_tex_transform_from_texture.blend │ ├── 09_tex_transform_from_vector.blend │ ├── 09_tex_wrapping_mirror.blend │ ├── 09_tiny_grid.png │ ├── 10_custom_normals.blend │ ├── 10_custom_normals_with_modifier.blend │ ├── 11_loose_geometry.blend │ ├── 12_anim_range_driver.blend │ ├── 12_anim_range_not_sampled.blend │ ├── 12_anim_range_sampled.blend │ ├── 14_transmission.blend │ ├── 16_volume.blend │ ├── 17_ior.blend │ ├── 18_variants.blend │ ├── 19_sheen.blend │ ├── 20_specular.blend │ ├── 21_scene.blend │ ├── 22_node_groups.blend │ ├── 22_simple_GN.blend │ ├── 22_vertex_colors_and_attributes.blend │ ├── 23_use_active_collection_all.blend │ ├── 23_use_active_collection_nested.blend │ ├── 23_use_active_collection_without_nested.blend │ ├── 24_vertex_color_and_factor.blend │ ├── 24_vertex_color_and_factor_active_all_no_nomat.blend │ ├── 24_vertex_color_and_factor_active_all_with_nomat.blend │ ├── 24_vertex_color_and_factor_active_not_all.blend │ ├── 24_vertex_color_and_factor_active_not_all_no_nomat.blend │ ├── 24_vertex_color_and_factor_name.blend │ ├── 24_vertex_color_and_factor_nodetree_all_with_nomat.blend │ ├── 24_vertex_color_and_factor_nodetree_all_without_nomat.blend │ ├── 24_vertex_color_and_factor_nodetree_not_all_with_nomat.blend │ ├── 24_vertex_color_and_factor_nodetree_not_all_without_nomat.blend │ ├── 24_vertex_color_and_factor_none.blend │ ├── 24_vertex_color_corner_vertex.blend │ ├── 24_vertex_colors.blend │ ├── 25_drivers.blend │ ├── 25_drivers_disable_viewport.blend │ ├── 25_drivers_no_shapekeys.blend │ ├── 25_mesh_instances.blend │ ├── 25_mesh_instances_apply_modifier.blend │ ├── 26_material_override_by_modifiers.blend │ ├── 26_nla_export_mode.blend │ ├── 27_apply_modifier_with_shapekeys.blend │ ├── 28_shapekeys_anim.blend │ ├── 28_shapekeys_no_sk_anim_export.blend │ ├── 28_shapekeys_no_sk_export.blend │ ├── 28_sk_no_reset.blend │ ├── 28_sk_reset.blend │ ├── 28_sparse_sk.blend │ ├── 28_sparse_sk_no_sparse.blend │ ├── 28_sparse_sk_no_sparse_size.blend │ ├── 28_sparse_sk_omit.blend │ ├── 28_various_sk.blend │ ├── 29_armature_use_current_pose.blend │ ├── 29_armature_use_rest_pose.blend │ ├── 30_baking_animation.blend │ ├── 31_interpolation_sampled.blend │ ├── 31_interpolation_sampled_no_keep.blend │ ├── 31_interpolation_sampled_no_optimize.blend │ ├── 31_interpolation_sampled_no_optimize_but_keep.blend │ ├── 32_custom_uvmap_attribute.blend │ ├── 32_gpu_instancing_with_instancing.blend │ ├── 32_gpu_instancing_without_instancing.blend │ ├── 32_uvmap_indices.blend │ ├── 32_webp_mode_auto_with_create_webp.blend │ ├── 32_webp_mode_auto_with_fallback.blend │ ├── 32_webp_mode_auto_with_fallback_and_create_webp.blend │ ├── 32_webp_mode_webp.blend │ ├── 32_weights_influence_4.blend │ ├── 32_weights_influence_6.blend │ ├── 32_weights_influence_9.blend │ ├── 32_weights_influence_all.blend │ ├── 33_anisotropy_from_grayscale.blend │ ├── 33_no_unused_texture_and_image.blend │ ├── 33_udim.blend │ ├── 33_udim_merged.blend │ ├── 33_unused_image.blend │ ├── 33_unused_texture.blend │ ├── 33_unused_texture_and_image.blend │ ├── 34_animation_pointer.blend │ ├── 35_broadcast_slots.blend │ ├── 36_viewport_material_export.blend │ ├── 37_lamp.blend │ ├── A.blend │ ├── B.blend │ ├── C.blend │ ├── GlTF_logo.svg.png │ ├── Lenna.png │ ├── README.md │ ├── RobotExpressive.blend │ ├── Untitled-1.png │ ├── Untitled-2.png │ ├── Untitled.png │ ├── Untitled.webp │ ├── White.png │ ├── XX_blender_global_test.blend │ ├── gn_nested_instances.blend │ ├── grayscale_anisotropy.png │ ├── grayscale_anisotropy_rotation.png │ ├── parent_is_skined.blend │ ├── test.1001.png │ ├── test.1002.png │ ├── test.1011.png │ ├── test.1012.png │ ├── test2.1001.png │ ├── test2.1002.png │ ├── test2.1011.png │ ├── test2.1012.png │ ├── test3.1001.png │ ├── test3.1002.png │ ├── test3.1011.png │ ├── test3.1012.png │ ├── test4.1001.png │ ├── test4.1002.png │ ├── test4.1011.png │ ├── test4.1012.png │ ├── test_merged.1001.png │ ├── test_merged.1002.png │ ├── test_merged_2.1001.png │ └── test_merged_2.1002.png ├── test │ └── test.js └── yarn.lock └── tools ├── autopep8.md ├── copy_doc.py ├── copy_repo.py └── roundrip_dir.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/.project -------------------------------------------------------------------------------- /.pydevproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/.pydevproject -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/AUTHORS.txt -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /DEBUGGING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/DEBUGGING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/README.md -------------------------------------------------------------------------------- /Technical.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/Technical.md -------------------------------------------------------------------------------- /addons/io_scene_gltf2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/__init__.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/__init__.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/com/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/com/README.md -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/com/blender_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/com/blender_default.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/com/conversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/com/conversion.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/com/data_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/com/data_path.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/com/extras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/com/extras.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/com/gltf2_blender_math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/com/gltf2_blender_math.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/com/gltf2_blender_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/com/gltf2_blender_ui.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/com/gltf2_blender_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/com/gltf2_blender_utils.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/com/json_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/com/json_util.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/com/material_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/com/material_helpers.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/README.md: -------------------------------------------------------------------------------- 1 | Create Python classes from Blender meshes, materials etc. -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/accessors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/accessors.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/animation/action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/animation/action.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/animation/anim_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/animation/anim_utils.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/animation/animations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/animation/animations.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/animation/drivers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/animation/drivers.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/animation/fcurves/animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/animation/fcurves/animation.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/animation/fcurves/channel_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/animation/fcurves/channel_target.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/animation/fcurves/channels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/animation/fcurves/channels.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/animation/fcurves/keyframes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/animation/fcurves/keyframes.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/animation/fcurves/sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/animation/fcurves/sampler.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/animation/keyframes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/animation/keyframes.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/animation/sampled/armature/action_sampled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/animation/sampled/armature/action_sampled.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/animation/sampled/armature/channel_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/animation/sampled/armature/channel_target.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/animation/sampled/armature/channels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/animation/sampled/armature/channels.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/animation/sampled/armature/keyframes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/animation/sampled/armature/keyframes.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/animation/sampled/armature/sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/animation/sampled/armature/sampler.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/animation/sampled/data/channel_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/animation/sampled/data/channel_target.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/animation/sampled/data/channels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/animation/sampled/data/channels.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/animation/sampled/data/keyframes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/animation/sampled/data/keyframes.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/animation/sampled/data/sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/animation/sampled/data/sampler.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/animation/sampled/object/action_sampled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/animation/sampled/object/action_sampled.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/animation/sampled/object/channel_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/animation/sampled/object/channel_target.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/animation/sampled/object/channels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/animation/sampled/object/channels.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/animation/sampled/object/keyframes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/animation/sampled/object/keyframes.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/animation/sampled/object/sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/animation/sampled/object/sampler.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/animation/sampled/sampling_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/animation/sampled/sampling_cache.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/animation/sampled/shapekeys/action_sampled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/animation/sampled/shapekeys/action_sampled.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/animation/sampled/shapekeys/channel_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/animation/sampled/shapekeys/channel_target.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/animation/sampled/shapekeys/channels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/animation/sampled/shapekeys/channels.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/animation/sampled/shapekeys/keyframes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/animation/sampled/shapekeys/keyframes.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/animation/sampled/shapekeys/sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/animation/sampled/shapekeys/sampler.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/animation/scene_animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/animation/scene_animation.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/animation/tracks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/animation/tracks.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/cache.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/cameras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/cameras.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/export.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/exporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/exporter.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/gather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/gather.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/joints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/joints.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/light_spots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/light_spots.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/lights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/lights.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/material/encode_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/material/encode_image.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/material/extensions/anisotropy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/material/extensions/anisotropy.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/material/extensions/clearcoat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/material/extensions/clearcoat.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/material/extensions/emission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/material/extensions/emission.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/material/extensions/ior.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/material/extensions/ior.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/material/extensions/sheen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/material/extensions/sheen.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/material/extensions/specular.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/material/extensions/specular.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/material/extensions/transmission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/material/extensions/transmission.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/material/extensions/variants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/material/extensions/variants.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/material/extensions/volume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/material/extensions/volume.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/material/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/material/image.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/material/material_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/material/material_utils.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/material/material_viewport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/material/material_viewport.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/material/materials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/material/materials.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/material/pbr_metallic_roughness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/material/pbr_metallic_roughness.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/material/search_node_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/material/search_node_tree.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/material/texture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/material/texture.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/material/texture_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/material/texture_info.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/material/unlit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/material/unlit.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/mesh.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/nodes.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/primitive_attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/primitive_attributes.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/primitive_extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/primitive_extract.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/primitives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/primitives.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/sampler.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/skins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/skins.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/exp/tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/exp/tree.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/imp/KHR_materials_anisotropy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/imp/KHR_materials_anisotropy.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/imp/KHR_materials_pbrSpecularGlossiness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/imp/KHR_materials_pbrSpecularGlossiness.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/imp/KHR_materials_unlit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/imp/KHR_materials_unlit.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/imp/README.md: -------------------------------------------------------------------------------- 1 | Create Blender meshes, materials etc. from Python classes. -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/imp/animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/imp/animation.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/imp/animation_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/imp/animation_node.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/imp/animation_pointer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/imp/animation_pointer.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/imp/animation_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/imp/animation_utils.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/imp/animation_weight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/imp/animation_weight.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/imp/blender_gltf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/imp/blender_gltf.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/imp/camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/imp/camera.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/imp/draco_compression_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/imp/draco_compression_extension.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/imp/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/imp/image.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/imp/light.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/imp/light.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/imp/material.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/imp/material.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/imp/material_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/imp/material_utils.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/imp/mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/imp/mesh.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/imp/node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/imp/node.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/imp/pbrMetallicRoughness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/imp/pbrMetallicRoughness.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/imp/scene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/imp/scene.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/imp/texture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/imp/texture.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/blender/imp/vnode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/blender/imp/vnode.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/io/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/io/__init__.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/io/com/README.md: -------------------------------------------------------------------------------- 1 | glTF 2.0 Python classes. -------------------------------------------------------------------------------- /addons/io_scene_gltf2/io/com/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/io/com/constants.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/io/com/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/io/com/debug.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/io/com/draco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/io/com/draco.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/io/com/gltf2_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/io/com/gltf2_io.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/io/com/gltf2_io_extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/io/com/gltf2_io_extensions.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/io/com/lights_punctual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/io/com/lights_punctual.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/io/com/path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/io/com/path.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/io/com/variants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/io/com/variants.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/io/exp/README.md: -------------------------------------------------------------------------------- 1 | Save glTF 2.0 Python classes to file. -------------------------------------------------------------------------------- /addons/io_scene_gltf2/io/exp/binary_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/io/exp/binary_data.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/io/exp/buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/io/exp/buffer.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/io/exp/draco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/io/exp/draco.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/io/exp/export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/io/exp/export.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/io/exp/image_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/io/exp/image_data.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/io/exp/user_extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/io/exp/user_extensions.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/io/imp/README.md: -------------------------------------------------------------------------------- 1 | Load glTF 2.0 file and create Python classes. -------------------------------------------------------------------------------- /addons/io_scene_gltf2/io/imp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/io/imp/__init__.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/io/imp/gltf2_io_binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/io/imp/gltf2_io_binary.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/io/imp/gltf2_io_gltf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/io/imp/gltf2_io_gltf.py -------------------------------------------------------------------------------- /addons/io_scene_gltf2/io/imp/user_extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/addons/io_scene_gltf2/io/imp/user_extensions.py -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/blender_docs/scene_gltf2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/docs/blender_docs/scene_gltf2.rst -------------------------------------------------------------------------------- /docs/io_process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/docs/io_process.png -------------------------------------------------------------------------------- /docs/io_process.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/docs/io_process.pptx -------------------------------------------------------------------------------- /docs/packages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/docs/packages.png -------------------------------------------------------------------------------- /docs/packages.uxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/docs/packages.uxf -------------------------------------------------------------------------------- /example-addons/example_gltf_exporter_extension/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/example-addons/example_gltf_exporter_extension/__init__.py -------------------------------------------------------------------------------- /example-addons/example_gltf_exporter_extension/blender_manifest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/example-addons/example_gltf_exporter_extension/blender_manifest.toml -------------------------------------------------------------------------------- /example-addons/example_gltf_exporter_extension/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/example-addons/example_gltf_exporter_extension/readme.md -------------------------------------------------------------------------------- /example-addons/example_gltf_importer_extension/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/example-addons/example_gltf_importer_extension/__init__.py -------------------------------------------------------------------------------- /example-addons/example_gltf_importer_extension/blender_manifest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/example-addons/example_gltf_importer_extension/blender_manifest.toml -------------------------------------------------------------------------------- /example-addons/example_gltf_importer_extension/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/example-addons/example_gltf_importer_extension/readme.md -------------------------------------------------------------------------------- /images/addons_import-export_scene-gltf2_addon-preferences-animation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/images/addons_import-export_scene-gltf2_addon-preferences-animation.png -------------------------------------------------------------------------------- /images/addons_import-export_scene-gltf2_addon-preferences-shader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/images/addons_import-export_scene-gltf2_addon-preferences-shader.png -------------------------------------------------------------------------------- /images/addons_import-export_scene-gltf2_addon-preferences-variant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/images/addons_import-export_scene-gltf2_addon-preferences-variant.png -------------------------------------------------------------------------------- /images/addons_import-export_scene-gltf2_material-backface-culling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/images/addons_import-export_scene-gltf2_material-backface-culling.png -------------------------------------------------------------------------------- /images/addons_import-export_scene-gltf2_material-base-color-image-hookup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/images/addons_import-export_scene-gltf2_material-base-color-image-hookup.png -------------------------------------------------------------------------------- /images/addons_import-export_scene-gltf2_material-base-color-solid-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/images/addons_import-export_scene-gltf2_material-base-color-solid-green.png -------------------------------------------------------------------------------- /images/addons_import-export_scene-gltf2_material-base-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/images/addons_import-export_scene-gltf2_material-base-color.png -------------------------------------------------------------------------------- /images/addons_import-export_scene-gltf2_material-channels.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/images/addons_import-export_scene-gltf2_material-channels.jpg -------------------------------------------------------------------------------- /images/addons_import-export_scene-gltf2_material-clearcoat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/images/addons_import-export_scene-gltf2_material-clearcoat.png -------------------------------------------------------------------------------- /images/addons_import-export_scene-gltf2_material-emissive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/images/addons_import-export_scene-gltf2_material-emissive.png -------------------------------------------------------------------------------- /images/addons_import-export_scene-gltf2_material-factors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/images/addons_import-export_scene-gltf2_material-factors.png -------------------------------------------------------------------------------- /images/addons_import-export_scene-gltf2_material-mapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/images/addons_import-export_scene-gltf2_material-mapping.png -------------------------------------------------------------------------------- /images/addons_import-export_scene-gltf2_material-metal-rough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/images/addons_import-export_scene-gltf2_material-metal-rough.png -------------------------------------------------------------------------------- /images/addons_import-export_scene-gltf2_material-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/images/addons_import-export_scene-gltf2_material-normal.png -------------------------------------------------------------------------------- /images/addons_import-export_scene-gltf2_material-occlusion-only.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/images/addons_import-export_scene-gltf2_material-occlusion-only.png -------------------------------------------------------------------------------- /images/addons_import-export_scene-gltf2_material-opaque.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/images/addons_import-export_scene-gltf2_material-opaque.png -------------------------------------------------------------------------------- /images/addons_import-export_scene-gltf2_material-orm-hookup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/images/addons_import-export_scene-gltf2_material-orm-hookup.png -------------------------------------------------------------------------------- /images/addons_import-export_scene-gltf2_material-principled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/images/addons_import-export_scene-gltf2_material-principled.png -------------------------------------------------------------------------------- /images/addons_import-export_scene-gltf2_material-rgb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/images/addons_import-export_scene-gltf2_material-rgb.png -------------------------------------------------------------------------------- /images/addons_import-export_scene-gltf2_material-round-alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/images/addons_import-export_scene-gltf2_material-round-alpha.png -------------------------------------------------------------------------------- /images/addons_import-export_scene-gltf2_material-sheen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/images/addons_import-export_scene-gltf2_material-sheen.png -------------------------------------------------------------------------------- /images/addons_import-export_scene-gltf2_material-unlit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/images/addons_import-export_scene-gltf2_material-unlit.png -------------------------------------------------------------------------------- /images/addons_import-export_scene-gltf2_material-volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/images/addons_import-export_scene-gltf2_material-volume.png -------------------------------------------------------------------------------- /images/addons_import-export_scene-gltf2_material_anisotropy-grayscale-texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/images/addons_import-export_scene-gltf2_material_anisotropy-grayscale-texture.png -------------------------------------------------------------------------------- /images/addons_import-export_scene-gltf2_material_anisotropy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/images/addons_import-export_scene-gltf2_material_anisotropy.png -------------------------------------------------------------------------------- /images/addons_import-export_scene-gltf2_material_variants-detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/images/addons_import-export_scene-gltf2_material_variants-detail.png -------------------------------------------------------------------------------- /images/addons_import-export_scene-gltf2_material_variants-switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/images/addons_import-export_scene-gltf2_material_variants-switch.png -------------------------------------------------------------------------------- /misc/Blender_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/misc/Blender_logo.png -------------------------------------------------------------------------------- /misc/Debug_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/misc/Debug_settings.png -------------------------------------------------------------------------------- /misc/glTF_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/misc/glTF_logo.png -------------------------------------------------------------------------------- /tests/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/.eslintrc.json -------------------------------------------------------------------------------- /tests/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /tests/export_gltf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/export_gltf.py -------------------------------------------------------------------------------- /tests/gltf/Box.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/gltf/Box.glb -------------------------------------------------------------------------------- /tests/gltf/Box.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/gltf/Box.gltf -------------------------------------------------------------------------------- /tests/gltf/Box0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/gltf/Box0.bin -------------------------------------------------------------------------------- /tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/package.json -------------------------------------------------------------------------------- /tests/pbr_node/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/pbr_node/.gitignore -------------------------------------------------------------------------------- /tests/pbr_node/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/pbr_node/README.md -------------------------------------------------------------------------------- /tests/pbr_node/glTF2.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/pbr_node/glTF2.blend -------------------------------------------------------------------------------- /tests/pbr_node/glTF2_Principled.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/pbr_node/glTF2_Principled.blend -------------------------------------------------------------------------------- /tests/roundtrip/00_empty_scene/00_empty_scene.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/00_empty_scene/00_empty_scene.gltf -------------------------------------------------------------------------------- /tests/roundtrip/00_no_nodes/00_no_nodes.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/00_no_nodes/00_no_nodes.gltf -------------------------------------------------------------------------------- /tests/roundtrip/00_no_scene/00_no_scene.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/00_no_scene/00_no_scene.bin -------------------------------------------------------------------------------- /tests/roundtrip/00_no_scene/00_no_scene.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/00_no_scene/00_no_scene.gltf -------------------------------------------------------------------------------- /tests/roundtrip/00_no_scenes/00_no_scenes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/00_no_scenes/00_no_scenes.bin -------------------------------------------------------------------------------- /tests/roundtrip/00_no_scenes/00_no_scenes.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/00_no_scenes/00_no_scenes.gltf -------------------------------------------------------------------------------- /tests/roundtrip/01_alpha_blend/01_alpha_blend.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/01_alpha_blend/01_alpha_blend.bin -------------------------------------------------------------------------------- /tests/roundtrip/01_alpha_blend/01_alpha_blend.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/01_alpha_blend/01_alpha_blend.gltf -------------------------------------------------------------------------------- /tests/roundtrip/01_alpha_blend/01_alpha_blend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/01_alpha_blend/01_alpha_blend.png -------------------------------------------------------------------------------- /tests/roundtrip/01_alpha_mask/01_alpha_mask.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/01_alpha_mask/01_alpha_mask.bin -------------------------------------------------------------------------------- /tests/roundtrip/01_alpha_mask/01_alpha_mask.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/01_alpha_mask/01_alpha_mask.gltf -------------------------------------------------------------------------------- /tests/roundtrip/01_alpha_mask/01_alpha_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/01_alpha_mask/01_alpha_mask.png -------------------------------------------------------------------------------- /tests/roundtrip/01_color_attribute/01_color_attribute.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/01_color_attribute/01_color_attribute.bin -------------------------------------------------------------------------------- /tests/roundtrip/01_color_attribute/01_color_attribute.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/01_color_attribute/01_color_attribute.gltf -------------------------------------------------------------------------------- /tests/roundtrip/01_cs_morph/01_cs_morph.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/01_cs_morph/01_cs_morph.bin -------------------------------------------------------------------------------- /tests/roundtrip/01_cs_morph/01_cs_morph.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/01_cs_morph/01_cs_morph.gltf -------------------------------------------------------------------------------- /tests/roundtrip/01_cs_rotate/01_cs_rotate.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/01_cs_rotate/01_cs_rotate.bin -------------------------------------------------------------------------------- /tests/roundtrip/01_cs_rotate/01_cs_rotate.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/01_cs_rotate/01_cs_rotate.gltf -------------------------------------------------------------------------------- /tests/roundtrip/01_cs_scale/01_cs_scale.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/01_cs_scale/01_cs_scale.bin -------------------------------------------------------------------------------- /tests/roundtrip/01_cs_scale/01_cs_scale.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/01_cs_scale/01_cs_scale.gltf -------------------------------------------------------------------------------- /tests/roundtrip/01_cs_translate/01_cs_translate.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/01_cs_translate/01_cs_translate.bin -------------------------------------------------------------------------------- /tests/roundtrip/01_cs_translate/01_cs_translate.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/01_cs_translate/01_cs_translate.gltf -------------------------------------------------------------------------------- /tests/roundtrip/01_cube/01_cube.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/01_cube/01_cube.bin -------------------------------------------------------------------------------- /tests/roundtrip/01_cube/01_cube.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/01_cube/01_cube.gltf -------------------------------------------------------------------------------- /tests/roundtrip/01_cube_no_material/01_cube_no_material.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/01_cube_no_material/01_cube_no_material.bin -------------------------------------------------------------------------------- /tests/roundtrip/01_cube_no_material/01_cube_no_material.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/01_cube_no_material/01_cube_no_material.gltf -------------------------------------------------------------------------------- /tests/roundtrip/01_metallic_sphere/01_metallic_sphere.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/01_metallic_sphere/01_metallic_sphere.bin -------------------------------------------------------------------------------- /tests/roundtrip/01_metallic_sphere/01_metallic_sphere.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/01_metallic_sphere/01_metallic_sphere.gltf -------------------------------------------------------------------------------- /tests/roundtrip/01_morphed_cube/01_morphed_cube.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/01_morphed_cube/01_morphed_cube.bin -------------------------------------------------------------------------------- /tests/roundtrip/01_morphed_cube/01_morphed_cube.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/01_morphed_cube/01_morphed_cube.gltf -------------------------------------------------------------------------------- /tests/roundtrip/01_morphed_cube/01_morphed_cube_options.txt: -------------------------------------------------------------------------------- 1 | --no-sample-anim 2 | -------------------------------------------------------------------------------- /tests/roundtrip/01_morphed_cube_no_uv/01_morphed_cube_no_uv.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/01_morphed_cube_no_uv/01_morphed_cube_no_uv.bin -------------------------------------------------------------------------------- /tests/roundtrip/01_morphed_cube_no_uv/01_morphed_cube_no_uv.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/01_morphed_cube_no_uv/01_morphed_cube_no_uv.gltf -------------------------------------------------------------------------------- /tests/roundtrip/01_morphed_triangle/01_morphed_triangle.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/01_morphed_triangle/01_morphed_triangle.bin -------------------------------------------------------------------------------- /tests/roundtrip/01_morphed_triangle/01_morphed_triangle.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/01_morphed_triangle/01_morphed_triangle.gltf -------------------------------------------------------------------------------- /tests/roundtrip/01_plane/01_plane.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/01_plane/01_plane.bin -------------------------------------------------------------------------------- /tests/roundtrip/01_plane/01_plane.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/01_plane/01_plane.gltf -------------------------------------------------------------------------------- /tests/roundtrip/01_principled_material/01_principled_baseColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/01_principled_material/01_principled_baseColor.png -------------------------------------------------------------------------------- /tests/roundtrip/01_principled_material/01_principled_emissive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/01_principled_material/01_principled_emissive.png -------------------------------------------------------------------------------- /tests/roundtrip/01_principled_material/01_principled_material.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/01_principled_material/01_principled_material.bin -------------------------------------------------------------------------------- /tests/roundtrip/01_principled_material/01_principled_material.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/01_principled_material/01_principled_material.gltf -------------------------------------------------------------------------------- /tests/roundtrip/01_principled_material/01_principled_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/01_principled_material/01_principled_normal.png -------------------------------------------------------------------------------- /tests/roundtrip/01_principled_material/01_principled_occlusionRoughnessMetallic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/01_principled_material/01_principled_occlusionRoughnessMetallic.png -------------------------------------------------------------------------------- /tests/roundtrip/01_single_vs_double_sided/01_single_vs_double_sided.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/01_single_vs_double_sided/01_single_vs_double_sided.bin -------------------------------------------------------------------------------- /tests/roundtrip/01_single_vs_double_sided/01_single_vs_double_sided.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/01_single_vs_double_sided/01_single_vs_double_sided.gltf -------------------------------------------------------------------------------- /tests/roundtrip/01_sphere/01_sphere.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/01_sphere/01_sphere.bin -------------------------------------------------------------------------------- /tests/roundtrip/01_sphere/01_sphere.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/01_sphere/01_sphere.gltf -------------------------------------------------------------------------------- /tests/roundtrip/01_textured_sphere/01_Textured_Sphere_BaseColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/01_textured_sphere/01_Textured_Sphere_BaseColor.png -------------------------------------------------------------------------------- /tests/roundtrip/01_textured_sphere/01_Textured_Sphere_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/01_textured_sphere/01_Textured_Sphere_Normal.png -------------------------------------------------------------------------------- /tests/roundtrip/01_textured_sphere/01_Textured_Sphere_OcclusionRoughnessMetallic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/01_textured_sphere/01_Textured_Sphere_OcclusionRoughnessMetallic.png -------------------------------------------------------------------------------- /tests/roundtrip/01_textured_sphere/01_textured_sphere.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/01_textured_sphere/01_textured_sphere.bin -------------------------------------------------------------------------------- /tests/roundtrip/01_textured_sphere/01_textured_sphere.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/01_textured_sphere/01_textured_sphere.gltf -------------------------------------------------------------------------------- /tests/roundtrip/01_textured_sphere_principled_bsdf/01_Textured_Sphere_BaseColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/01_textured_sphere_principled_bsdf/01_Textured_Sphere_BaseColor.png -------------------------------------------------------------------------------- /tests/roundtrip/01_textured_sphere_principled_bsdf/01_Textured_Sphere_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/01_textured_sphere_principled_bsdf/01_Textured_Sphere_Normal.png -------------------------------------------------------------------------------- /tests/roundtrip/01_textured_sphere_principled_bsdf/01_Textured_Sphere_OcclusionRoughnessMetallic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/01_textured_sphere_principled_bsdf/01_Textured_Sphere_OcclusionRoughnessMetallic.png -------------------------------------------------------------------------------- /tests/roundtrip/01_textured_sphere_principled_bsdf/01_textured_sphere_principled_bsdf.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/01_textured_sphere_principled_bsdf/01_textured_sphere_principled_bsdf.bin -------------------------------------------------------------------------------- /tests/roundtrip/01_textured_sphere_principled_bsdf/01_textured_sphere_principled_bsdf.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/01_textured_sphere_principled_bsdf/01_textured_sphere_principled_bsdf.gltf -------------------------------------------------------------------------------- /tests/roundtrip/01_triangle/01_triangle.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/01_triangle/01_triangle.bin -------------------------------------------------------------------------------- /tests/roundtrip/01_triangle/01_triangle.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/01_triangle/01_triangle.gltf -------------------------------------------------------------------------------- /tests/roundtrip/01_unlit/01_unlit.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/01_unlit/01_unlit.bin -------------------------------------------------------------------------------- /tests/roundtrip/01_unlit/01_unlit.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/01_unlit/01_unlit.gltf -------------------------------------------------------------------------------- /tests/roundtrip/01_vertex_count_16bit/01_vertex_count_16bit.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/01_vertex_count_16bit/01_vertex_count_16bit.bin -------------------------------------------------------------------------------- /tests/roundtrip/01_vertex_count_16bit/01_vertex_count_16bit.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/01_vertex_count_16bit/01_vertex_count_16bit.gltf -------------------------------------------------------------------------------- /tests/roundtrip/01_vertex_count_32bit/01_vertex_count_32bit.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/01_vertex_count_32bit/01_vertex_count_32bit.bin -------------------------------------------------------------------------------- /tests/roundtrip/01_vertex_count_32bit/01_vertex_count_32bit.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/01_vertex_count_32bit/01_vertex_count_32bit.gltf -------------------------------------------------------------------------------- /tests/roundtrip/02_node_hierarchy/02_node_hierarchy.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/02_node_hierarchy/02_node_hierarchy.bin -------------------------------------------------------------------------------- /tests/roundtrip/02_node_hierarchy/02_node_hierarchy.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/02_node_hierarchy/02_node_hierarchy.gltf -------------------------------------------------------------------------------- /tests/roundtrip/02_shared_mesh/02_shared_mesh.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/02_shared_mesh/02_shared_mesh.bin -------------------------------------------------------------------------------- /tests/roundtrip/02_shared_mesh/02_shared_mesh.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/02_shared_mesh/02_shared_mesh.gltf -------------------------------------------------------------------------------- /tests/roundtrip/02_suzanne/02_Suzanne_BaseColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/02_suzanne/02_Suzanne_BaseColor.png -------------------------------------------------------------------------------- /tests/roundtrip/02_suzanne/02_Suzanne_OcclusionRoughnessMetallic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/02_suzanne/02_Suzanne_OcclusionRoughnessMetallic.png -------------------------------------------------------------------------------- /tests/roundtrip/02_suzanne/02_suzanne.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/02_suzanne/02_suzanne.bin -------------------------------------------------------------------------------- /tests/roundtrip/02_suzanne/02_suzanne.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/02_suzanne/02_suzanne.gltf -------------------------------------------------------------------------------- /tests/roundtrip/02_suzanne/02_suzanne_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/02_suzanne/02_suzanne_Normal.png -------------------------------------------------------------------------------- /tests/roundtrip/03_all_animations/03_all_animations.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/03_all_animations/03_all_animations.bin -------------------------------------------------------------------------------- /tests/roundtrip/03_all_animations/03_all_animations.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/03_all_animations/03_all_animations.gltf -------------------------------------------------------------------------------- /tests/roundtrip/03_animated_cube/03_animated_cube.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/03_animated_cube/03_animated_cube.bin -------------------------------------------------------------------------------- /tests/roundtrip/03_animated_cube/03_animated_cube.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/03_animated_cube/03_animated_cube.gltf -------------------------------------------------------------------------------- /tests/roundtrip/03_skinned_cylinder/03_skinned_cylinder.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/03_skinned_cylinder/03_skinned_cylinder.bin -------------------------------------------------------------------------------- /tests/roundtrip/03_skinned_cylinder/03_skinned_cylinder.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/03_skinned_cylinder/03_skinned_cylinder.gltf -------------------------------------------------------------------------------- /tests/roundtrip/04_common_materials/04_common_materials.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/04_common_materials/04_common_materials.bin -------------------------------------------------------------------------------- /tests/roundtrip/04_common_materials/04_common_materials.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/04_common_materials/04_common_materials.gltf -------------------------------------------------------------------------------- /tests/roundtrip/04_common_materials/04_crate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/04_common_materials/04_crate.png -------------------------------------------------------------------------------- /tests/roundtrip/04_lenna/04_crate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/04_lenna/04_crate.png -------------------------------------------------------------------------------- /tests/roundtrip/04_lenna/04_lenna.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/04_lenna/04_lenna.bin -------------------------------------------------------------------------------- /tests/roundtrip/04_lenna/04_lenna.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/04_lenna/04_lenna.gltf -------------------------------------------------------------------------------- /tests/roundtrip/04_lights/04_lights.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/04_lights/04_lights.bin -------------------------------------------------------------------------------- /tests/roundtrip/04_lights/04_lights.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/04_lights/04_lights.gltf -------------------------------------------------------------------------------- /tests/roundtrip/04_sphere_specular_glossiness/04_sphere_specular_glossiness.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/04_sphere_specular_glossiness/04_sphere_specular_glossiness.bin -------------------------------------------------------------------------------- /tests/roundtrip/04_sphere_specular_glossiness/04_sphere_specular_glossiness.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/04_sphere_specular_glossiness/04_sphere_specular_glossiness.gltf -------------------------------------------------------------------------------- /tests/roundtrip/05_metallic_sphere_light/05_metallic_sphere_light.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/05_metallic_sphere_light/05_metallic_sphere_light.bin -------------------------------------------------------------------------------- /tests/roundtrip/05_metallic_sphere_light/05_metallic_sphere_light.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/05_metallic_sphere_light/05_metallic_sphere_light.gltf -------------------------------------------------------------------------------- /tests/roundtrip/05_node_material/05_node_material.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/05_node_material/05_node_material.bin -------------------------------------------------------------------------------- /tests/roundtrip/05_node_material/05_node_material.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/05_node_material/05_node_material.gltf -------------------------------------------------------------------------------- /tests/roundtrip/06_parent-inverse-anim/06_parent-inverse-anim.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/06_parent-inverse-anim/06_parent-inverse-anim.bin -------------------------------------------------------------------------------- /tests/roundtrip/06_parent-inverse-anim/06_parent-inverse-anim.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/06_parent-inverse-anim/06_parent-inverse-anim.gltf -------------------------------------------------------------------------------- /tests/roundtrip/07_nla-anim/07_nla-anim.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/07_nla-anim/07_nla-anim.bin -------------------------------------------------------------------------------- /tests/roundtrip/07_nla-anim/07_nla-anim.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/07_nla-anim/07_nla-anim.gltf -------------------------------------------------------------------------------- /tests/roundtrip/08_combine_orm/08_combine_orm.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/08_combine_orm/08_combine_orm.bin -------------------------------------------------------------------------------- /tests/roundtrip/08_combine_orm/08_combine_orm.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/08_combine_orm/08_combine_orm.gltf -------------------------------------------------------------------------------- /tests/roundtrip/08_combine_orm/08_tiny-box-rgb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/08_combine_orm/08_tiny-box-rgb.png -------------------------------------------------------------------------------- /tests/roundtrip/09_texture_transform/09_texture_transform.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/09_texture_transform/09_texture_transform.bin -------------------------------------------------------------------------------- /tests/roundtrip/09_texture_transform/09_texture_transform.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/09_texture_transform/09_texture_transform.gltf -------------------------------------------------------------------------------- /tests/roundtrip/09_texture_transform/09_tiny_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/09_texture_transform/09_tiny_grid.png -------------------------------------------------------------------------------- /tests/roundtrip/10_custom_normals/10_custom_normals.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/10_custom_normals/10_custom_normals.bin -------------------------------------------------------------------------------- /tests/roundtrip/10_custom_normals/10_custom_normals.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/10_custom_normals/10_custom_normals.gltf -------------------------------------------------------------------------------- /tests/roundtrip/11_factors_and_textures/11_factors_and_textures.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/11_factors_and_textures/11_factors_and_textures.bin -------------------------------------------------------------------------------- /tests/roundtrip/11_factors_and_textures/11_factors_and_textures.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/11_factors_and_textures/11_factors_and_textures.gltf -------------------------------------------------------------------------------- /tests/roundtrip/11_factors_and_textures/Blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/11_factors_and_textures/Blank.png -------------------------------------------------------------------------------- /tests/roundtrip/12_orm_two_uvmaps/12_orm_two_uvmaps.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/12_orm_two_uvmaps/12_orm_two_uvmaps.bin -------------------------------------------------------------------------------- /tests/roundtrip/12_orm_two_uvmaps/12_orm_two_uvmaps.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/12_orm_two_uvmaps/12_orm_two_uvmaps.gltf -------------------------------------------------------------------------------- /tests/roundtrip/12_orm_two_uvmaps/ORM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/12_orm_two_uvmaps/ORM.png -------------------------------------------------------------------------------- /tests/roundtrip/13_occlusion_strength/13_occlusion_strength.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/13_occlusion_strength/13_occlusion_strength.bin -------------------------------------------------------------------------------- /tests/roundtrip/13_occlusion_strength/13_occlusion_strength.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/13_occlusion_strength/13_occlusion_strength.gltf -------------------------------------------------------------------------------- /tests/roundtrip/13_occlusion_strength/White.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/13_occlusion_strength/White.png -------------------------------------------------------------------------------- /tests/roundtrip/13_texture_wrapping/13_texture_wrapping.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/13_texture_wrapping/13_texture_wrapping.bin -------------------------------------------------------------------------------- /tests/roundtrip/13_texture_wrapping/13_texture_wrapping.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/13_texture_wrapping/13_texture_wrapping.gltf -------------------------------------------------------------------------------- /tests/roundtrip/13_texture_wrapping/Black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/13_texture_wrapping/Black.png -------------------------------------------------------------------------------- /tests/roundtrip/14_emission_strength/14_emission_strength.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/14_emission_strength/14_emission_strength.bin -------------------------------------------------------------------------------- /tests/roundtrip/14_emission_strength/14_emission_strength.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/14_emission_strength/14_emission_strength.gltf -------------------------------------------------------------------------------- /tests/roundtrip/14_emission_strength/14_emission_strength.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/14_emission_strength/14_emission_strength.png -------------------------------------------------------------------------------- /tests/roundtrip/15_transmission/15_transmission.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/15_transmission/15_transmission.bin -------------------------------------------------------------------------------- /tests/roundtrip/15_transmission/15_transmission.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/15_transmission/15_transmission.gltf -------------------------------------------------------------------------------- /tests/roundtrip/15_transmission/15_transmission.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/15_transmission/15_transmission.png -------------------------------------------------------------------------------- /tests/roundtrip/16_volume/16_volume.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/16_volume/16_volume.gltf -------------------------------------------------------------------------------- /tests/roundtrip/16_volume/AttenuationLabels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/16_volume/AttenuationLabels.png -------------------------------------------------------------------------------- /tests/roundtrip/16_volume/AttenuationTest.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/16_volume/AttenuationTest.bin -------------------------------------------------------------------------------- /tests/roundtrip/16_volume/PlainGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/16_volume/PlainGrid.png -------------------------------------------------------------------------------- /tests/roundtrip/16_volume/ThicknessTexture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/16_volume/ThicknessTexture.png -------------------------------------------------------------------------------- /tests/roundtrip/17_ior/17_ior.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/17_ior/17_ior.bin -------------------------------------------------------------------------------- /tests/roundtrip/17_ior/17_ior.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/17_ior/17_ior.gltf -------------------------------------------------------------------------------- /tests/roundtrip/18_variants/18_variants.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/18_variants/18_variants.bin -------------------------------------------------------------------------------- /tests/roundtrip/18_variants/18_variants.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/18_variants/18_variants.gltf -------------------------------------------------------------------------------- /tests/roundtrip/18_variants/18_variants_options.txt: -------------------------------------------------------------------------------- 1 | --use-variants 2 | -------------------------------------------------------------------------------- /tests/roundtrip/19_sheen/19_sheen.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/19_sheen/19_sheen.bin -------------------------------------------------------------------------------- /tests/roundtrip/19_sheen/19_sheen.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/19_sheen/19_sheen.gltf -------------------------------------------------------------------------------- /tests/roundtrip/19_sheen/Untitled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/19_sheen/Untitled.png -------------------------------------------------------------------------------- /tests/roundtrip/20_specular/20_specular.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/20_specular/20_specular.bin -------------------------------------------------------------------------------- /tests/roundtrip/20_specular/20_specular.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/20_specular/20_specular.gltf -------------------------------------------------------------------------------- /tests/roundtrip/20_specular/20_specular_noval.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roundtrip/20_specular/Untitled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/20_specular/Untitled.png -------------------------------------------------------------------------------- /tests/roundtrip/20_specular/source.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/20_specular/source.blend -------------------------------------------------------------------------------- /tests/roundtrip/20_specular_original/20_specular_original.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/20_specular_original/20_specular_original.bin -------------------------------------------------------------------------------- /tests/roundtrip/20_specular_original/20_specular_original.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/20_specular_original/20_specular_original.gltf -------------------------------------------------------------------------------- /tests/roundtrip/20_specular_original/Untitled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/20_specular_original/Untitled.png -------------------------------------------------------------------------------- /tests/roundtrip/20_specular_original/source.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/20_specular_original/source.blend -------------------------------------------------------------------------------- /tests/roundtrip/22_factors/22_factors.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/22_factors/22_factors.bin -------------------------------------------------------------------------------- /tests/roundtrip/22_factors/22_factors.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/22_factors/22_factors.gltf -------------------------------------------------------------------------------- /tests/roundtrip/22_factors/Untitled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/22_factors/Untitled.png -------------------------------------------------------------------------------- /tests/roundtrip/22_material_slot_merge/22_material_slot_merge.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/22_material_slot_merge/22_material_slot_merge.bin -------------------------------------------------------------------------------- /tests/roundtrip/22_material_slot_merge/22_material_slot_merge.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/22_material_slot_merge/22_material_slot_merge.gltf -------------------------------------------------------------------------------- /tests/roundtrip/22_material_slot_not_merge/22_material_slot_not_merge.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/22_material_slot_not_merge/22_material_slot_not_merge.bin -------------------------------------------------------------------------------- /tests/roundtrip/22_material_slot_not_merge/22_material_slot_not_merge.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/22_material_slot_not_merge/22_material_slot_not_merge.gltf -------------------------------------------------------------------------------- /tests/roundtrip/22_material_slot_not_merge/22_material_slot_not_merge_options.txt: -------------------------------------------------------------------------------- 1 | --import-not-merge 2 | -------------------------------------------------------------------------------- /tests/roundtrip/22_vertex_color/22_vertex_color.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/22_vertex_color/22_vertex_color.bin -------------------------------------------------------------------------------- /tests/roundtrip/22_vertex_color/22_vertex_color.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/22_vertex_color/22_vertex_color.gltf -------------------------------------------------------------------------------- /tests/roundtrip/23_multi_prim_vertex_attribute/23_multi_prim_vertex_attribute.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/23_multi_prim_vertex_attribute/23_multi_prim_vertex_attribute.bin -------------------------------------------------------------------------------- /tests/roundtrip/23_multi_prim_vertex_attribute/23_multi_prim_vertex_attribute.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/23_multi_prim_vertex_attribute/23_multi_prim_vertex_attribute.gltf -------------------------------------------------------------------------------- /tests/roundtrip/23_multi_prim_vertex_attribute/23_multi_prim_vertex_attribute_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/23_multi_prim_vertex_attribute/23_multi_prim_vertex_attribute_options.txt -------------------------------------------------------------------------------- /tests/roundtrip/24_animation_pointer/24_animation_pointer.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/24_animation_pointer/24_animation_pointer.gltf -------------------------------------------------------------------------------- /tests/roundtrip/24_animation_pointer/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/24_animation_pointer/6.png -------------------------------------------------------------------------------- /tests/roundtrip/24_animation_pointer/AnimateAllTheThings.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/24_animation_pointer/AnimateAllTheThings.bin -------------------------------------------------------------------------------- /tests/roundtrip/24_animation_pointer/Default-Checker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/24_animation_pointer/Default-Checker.jpg -------------------------------------------------------------------------------- /tests/roundtrip/24_animation_pointer/EmissionPattern.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/24_animation_pointer/EmissionPattern.jpg -------------------------------------------------------------------------------- /tests/roundtrip/24_animation_pointer/NoisePattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/24_animation_pointer/NoisePattern.png -------------------------------------------------------------------------------- /tests/roundtrip/24_animation_pointer/Normal_map_example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/24_animation_pointer/Normal_map_example.jpg -------------------------------------------------------------------------------- /tests/roundtrip/24_animation_pointer/Occlusion_map_example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/24_animation_pointer/Occlusion_map_example.jpg -------------------------------------------------------------------------------- /tests/roundtrip/24_animation_pointer/cat_03_repeat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/24_animation_pointer/cat_03_repeat.jpg -------------------------------------------------------------------------------- /tests/roundtrip/24_animation_pointer/meshes_weights_pointer.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/24_animation_pointer/meshes_weights_pointer.bin -------------------------------------------------------------------------------- /tests/roundtrip/24_gpu_instancing/24_gpu_instancing.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/24_gpu_instancing/24_gpu_instancing.bin -------------------------------------------------------------------------------- /tests/roundtrip/24_gpu_instancing/24_gpu_instancing.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/24_gpu_instancing/24_gpu_instancing.gltf -------------------------------------------------------------------------------- /tests/roundtrip/24_gpu_instancing/24_gpu_instancing_options.txt: -------------------------------------------------------------------------------- 1 | --export-gpu_instances 2 | -------------------------------------------------------------------------------- /tests/roundtrip/25_anisotropy/25_anisotropy.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/25_anisotropy/25_anisotropy.gltf -------------------------------------------------------------------------------- /tests/roundtrip/25_anisotropy/25_anisotropy_options.txt: -------------------------------------------------------------------------------- 1 | --export-tangent 2 | -------------------------------------------------------------------------------- /tests/roundtrip/25_anisotropy/AnisoDonutLabels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/25_anisotropy/AnisoDonutLabels.png -------------------------------------------------------------------------------- /tests/roundtrip/25_anisotropy/AnisoRotation10_Linear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/25_anisotropy/AnisoRotation10_Linear.png -------------------------------------------------------------------------------- /tests/roundtrip/25_anisotropy/AnisoRotation30_Linear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/25_anisotropy/AnisoRotation30_Linear.png -------------------------------------------------------------------------------- /tests/roundtrip/25_anisotropy/AnisotropyDiscs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/25_anisotropy/AnisotropyDiscs.png -------------------------------------------------------------------------------- /tests/roundtrip/25_anisotropy/AnisotropyNodeTest.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/25_anisotropy/AnisotropyNodeTest.bin -------------------------------------------------------------------------------- /tests/roundtrip/25_anisotropy/GridWithMarkers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/25_anisotropy/GridWithMarkers.png -------------------------------------------------------------------------------- /tests/roundtrip/25_anisotropy/GridWithMarkers_30deg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/25_anisotropy/GridWithMarkers_30deg.png -------------------------------------------------------------------------------- /tests/roundtrip/25_anisotropy/Heights_1d_Normals_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/25_anisotropy/Heights_1d_Normals_v2.png -------------------------------------------------------------------------------- /tests/roundtrip/Box/Box.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/Box/Box.gltf -------------------------------------------------------------------------------- /tests/roundtrip/Box/Box0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/Box/Box0.bin -------------------------------------------------------------------------------- /tests/roundtrip/Box/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip/Box/README.md -------------------------------------------------------------------------------- /tests/roundtrip_gltf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/roundtrip_gltf.py -------------------------------------------------------------------------------- /tests/scenes/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/.gitignore -------------------------------------------------------------------------------- /tests/scenes/00_all_negative_crop.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/00_all_negative_crop.blend -------------------------------------------------------------------------------- /tests/scenes/00_bake_sk.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/00_bake_sk.blend -------------------------------------------------------------------------------- /tests/scenes/00_drivers_multiple_actions.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/00_drivers_multiple_actions.blend -------------------------------------------------------------------------------- /tests/scenes/00_looping_animation.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/00_looping_animation.blend -------------------------------------------------------------------------------- /tests/scenes/00_parented_to_bone_and_animated.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/00_parented_to_bone_and_animated.blend -------------------------------------------------------------------------------- /tests/scenes/00_scene_export.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/00_scene_export.blend -------------------------------------------------------------------------------- /tests/scenes/00_slide_negative_frames.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/00_slide_negative_frames.blend -------------------------------------------------------------------------------- /tests/scenes/00_slide_negative_frames_active_actions.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/00_slide_negative_frames_active_actions.blend -------------------------------------------------------------------------------- /tests/scenes/00_slide_with_driver.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/00_slide_with_driver.blend -------------------------------------------------------------------------------- /tests/scenes/01_Textured_Sphere_BaseColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/01_Textured_Sphere_BaseColor.png -------------------------------------------------------------------------------- /tests/scenes/01_Textured_Sphere_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/01_Textured_Sphere_Normal.png -------------------------------------------------------------------------------- /tests/scenes/01_Textured_Sphere_OcclusionRoughnessMetallic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/01_Textured_Sphere_OcclusionRoughnessMetallic.png -------------------------------------------------------------------------------- /tests/scenes/01_alpha_animation.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/01_alpha_animation.blend -------------------------------------------------------------------------------- /tests/scenes/01_alpha_blend.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/01_alpha_blend.blend -------------------------------------------------------------------------------- /tests/scenes/01_alpha_blend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/01_alpha_blend.png -------------------------------------------------------------------------------- /tests/scenes/01_alpha_mask.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/01_alpha_mask.blend -------------------------------------------------------------------------------- /tests/scenes/01_alpha_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/01_alpha_mask.png -------------------------------------------------------------------------------- /tests/scenes/01_base_color.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/01_base_color.blend -------------------------------------------------------------------------------- /tests/scenes/01_color_attribute.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/01_color_attribute.blend -------------------------------------------------------------------------------- /tests/scenes/01_cs_morph.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/01_cs_morph.blend -------------------------------------------------------------------------------- /tests/scenes/01_cs_rotate.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/01_cs_rotate.blend -------------------------------------------------------------------------------- /tests/scenes/01_cs_scale.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/01_cs_scale.blend -------------------------------------------------------------------------------- /tests/scenes/01_cs_translate.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/01_cs_translate.blend -------------------------------------------------------------------------------- /tests/scenes/01_cube.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/01_cube.blend -------------------------------------------------------------------------------- /tests/scenes/01_cube_no_material.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/01_cube_no_material.blend -------------------------------------------------------------------------------- /tests/scenes/01_factors.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/01_factors.blend -------------------------------------------------------------------------------- /tests/scenes/01_metallic_sphere.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/01_metallic_sphere.blend -------------------------------------------------------------------------------- /tests/scenes/01_missing_textures.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/01_missing_textures.blend -------------------------------------------------------------------------------- /tests/scenes/01_morphed_cube.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/01_morphed_cube.blend -------------------------------------------------------------------------------- /tests/scenes/01_morphed_cube_no_uv.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/01_morphed_cube_no_uv.blend -------------------------------------------------------------------------------- /tests/scenes/01_morphed_triangle.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/01_morphed_triangle.blend -------------------------------------------------------------------------------- /tests/scenes/01_plane.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/01_plane.blend -------------------------------------------------------------------------------- /tests/scenes/01_principled_baseColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/01_principled_baseColor.png -------------------------------------------------------------------------------- /tests/scenes/01_principled_emissive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/01_principled_emissive.png -------------------------------------------------------------------------------- /tests/scenes/01_principled_material.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/01_principled_material.blend -------------------------------------------------------------------------------- /tests/scenes/01_principled_material_280.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/01_principled_material_280.blend -------------------------------------------------------------------------------- /tests/scenes/01_principled_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/01_principled_normal.png -------------------------------------------------------------------------------- /tests/scenes/01_principled_occlusionRoughnessMetallic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/01_principled_occlusionRoughnessMetallic.png -------------------------------------------------------------------------------- /tests/scenes/01_sphere.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/01_sphere.blend -------------------------------------------------------------------------------- /tests/scenes/01_textured_sphere.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/01_textured_sphere.blend -------------------------------------------------------------------------------- /tests/scenes/01_triangle.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/01_triangle.blend -------------------------------------------------------------------------------- /tests/scenes/01_two_sided_plane.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/01_two_sided_plane.blend -------------------------------------------------------------------------------- /tests/scenes/01_vertex_count_16bit.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/01_vertex_count_16bit.blend -------------------------------------------------------------------------------- /tests/scenes/01_vertex_count_32bit.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/01_vertex_count_32bit.blend -------------------------------------------------------------------------------- /tests/scenes/02_Suzanne_BaseColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/02_Suzanne_BaseColor.png -------------------------------------------------------------------------------- /tests/scenes/02_Suzanne_OcclusionRoughnessMetallic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/02_Suzanne_OcclusionRoughnessMetallic.png -------------------------------------------------------------------------------- /tests/scenes/02_material_instancing.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/02_material_instancing.blend -------------------------------------------------------------------------------- /tests/scenes/02_node_hierarchy.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/02_node_hierarchy.blend -------------------------------------------------------------------------------- /tests/scenes/02_shared_mesh.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/02_shared_mesh.blend -------------------------------------------------------------------------------- /tests/scenes/02_suzanne.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/02_suzanne.blend -------------------------------------------------------------------------------- /tests/scenes/02_suzanne_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/02_suzanne_Normal.png -------------------------------------------------------------------------------- /tests/scenes/03_all_animations.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/03_all_animations.blend -------------------------------------------------------------------------------- /tests/scenes/03_animated_cube.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/03_animated_cube.blend -------------------------------------------------------------------------------- /tests/scenes/03_skinned_cylinder.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/03_skinned_cylinder.blend -------------------------------------------------------------------------------- /tests/scenes/04_common_materials.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/04_common_materials.blend -------------------------------------------------------------------------------- /tests/scenes/04_crate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/04_crate.png -------------------------------------------------------------------------------- /tests/scenes/04_lenna.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/04_lenna.blend -------------------------------------------------------------------------------- /tests/scenes/04_lights.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/04_lights.blend -------------------------------------------------------------------------------- /tests/scenes/04_sphere_specular_glossiness.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/04_sphere_specular_glossiness.blend -------------------------------------------------------------------------------- /tests/scenes/05_metallic_sphere_light.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/05_metallic_sphere_light.blend -------------------------------------------------------------------------------- /tests/scenes/05_node_material.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/05_node_material.blend -------------------------------------------------------------------------------- /tests/scenes/06_parent-inverse-anim.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/06_parent-inverse-anim.blend -------------------------------------------------------------------------------- /tests/scenes/07_nla-anim.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/07_nla-anim.blend -------------------------------------------------------------------------------- /tests/scenes/08_clearcoat.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/08_clearcoat.blend -------------------------------------------------------------------------------- /tests/scenes/08_combine_clearcoat.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/08_combine_clearcoat.blend -------------------------------------------------------------------------------- /tests/scenes/08_combine_occlusionMetal.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/08_combine_occlusionMetal.blend -------------------------------------------------------------------------------- /tests/scenes/08_combine_occlusionRough.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/08_combine_occlusionRough.blend -------------------------------------------------------------------------------- /tests/scenes/08_combine_orm.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/08_combine_orm.blend -------------------------------------------------------------------------------- /tests/scenes/08_combine_roughMetal.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/08_combine_roughMetal.blend -------------------------------------------------------------------------------- /tests/scenes/08_img_metal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/08_img_metal.png -------------------------------------------------------------------------------- /tests/scenes/08_img_occlusion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/08_img_occlusion.png -------------------------------------------------------------------------------- /tests/scenes/08_img_rough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/08_img_rough.png -------------------------------------------------------------------------------- /tests/scenes/08_normal_ribs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/08_normal_ribs.png -------------------------------------------------------------------------------- /tests/scenes/08_only_metal.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/08_only_metal.blend -------------------------------------------------------------------------------- /tests/scenes/08_only_occlusion.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/08_only_occlusion.blend -------------------------------------------------------------------------------- /tests/scenes/08_only_rough.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/08_only_rough.blend -------------------------------------------------------------------------------- /tests/scenes/08_tiny-box-__b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/08_tiny-box-__b.png -------------------------------------------------------------------------------- /tests/scenes/08_tiny-box-_g_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/08_tiny-box-_g_.png -------------------------------------------------------------------------------- /tests/scenes/08_tiny-box-_gb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/08_tiny-box-_gb.png -------------------------------------------------------------------------------- /tests/scenes/08_tiny-box-r_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/08_tiny-box-r_b.png -------------------------------------------------------------------------------- /tests/scenes/08_tiny-box-rg_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/08_tiny-box-rg_.png -------------------------------------------------------------------------------- /tests/scenes/08_tiny-box-rgb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/08_tiny-box-rgb.png -------------------------------------------------------------------------------- /tests/scenes/09_tex_transform_from_point.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/09_tex_transform_from_point.blend -------------------------------------------------------------------------------- /tests/scenes/09_tex_transform_from_texture.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/09_tex_transform_from_texture.blend -------------------------------------------------------------------------------- /tests/scenes/09_tex_transform_from_vector.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/09_tex_transform_from_vector.blend -------------------------------------------------------------------------------- /tests/scenes/09_tex_wrapping_mirror.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/09_tex_wrapping_mirror.blend -------------------------------------------------------------------------------- /tests/scenes/09_tiny_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/09_tiny_grid.png -------------------------------------------------------------------------------- /tests/scenes/10_custom_normals.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/10_custom_normals.blend -------------------------------------------------------------------------------- /tests/scenes/10_custom_normals_with_modifier.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/10_custom_normals_with_modifier.blend -------------------------------------------------------------------------------- /tests/scenes/11_loose_geometry.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/11_loose_geometry.blend -------------------------------------------------------------------------------- /tests/scenes/12_anim_range_driver.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/12_anim_range_driver.blend -------------------------------------------------------------------------------- /tests/scenes/12_anim_range_not_sampled.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/12_anim_range_not_sampled.blend -------------------------------------------------------------------------------- /tests/scenes/12_anim_range_sampled.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/12_anim_range_sampled.blend -------------------------------------------------------------------------------- /tests/scenes/14_transmission.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/14_transmission.blend -------------------------------------------------------------------------------- /tests/scenes/16_volume.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/16_volume.blend -------------------------------------------------------------------------------- /tests/scenes/17_ior.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/17_ior.blend -------------------------------------------------------------------------------- /tests/scenes/18_variants.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/18_variants.blend -------------------------------------------------------------------------------- /tests/scenes/19_sheen.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/19_sheen.blend -------------------------------------------------------------------------------- /tests/scenes/20_specular.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/20_specular.blend -------------------------------------------------------------------------------- /tests/scenes/21_scene.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/21_scene.blend -------------------------------------------------------------------------------- /tests/scenes/22_node_groups.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/22_node_groups.blend -------------------------------------------------------------------------------- /tests/scenes/22_simple_GN.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/22_simple_GN.blend -------------------------------------------------------------------------------- /tests/scenes/22_vertex_colors_and_attributes.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/22_vertex_colors_and_attributes.blend -------------------------------------------------------------------------------- /tests/scenes/23_use_active_collection_all.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/23_use_active_collection_all.blend -------------------------------------------------------------------------------- /tests/scenes/23_use_active_collection_nested.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/23_use_active_collection_nested.blend -------------------------------------------------------------------------------- /tests/scenes/23_use_active_collection_without_nested.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/23_use_active_collection_without_nested.blend -------------------------------------------------------------------------------- /tests/scenes/24_vertex_color_and_factor.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/24_vertex_color_and_factor.blend -------------------------------------------------------------------------------- /tests/scenes/24_vertex_color_and_factor_active_all_no_nomat.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/24_vertex_color_and_factor_active_all_no_nomat.blend -------------------------------------------------------------------------------- /tests/scenes/24_vertex_color_and_factor_active_all_with_nomat.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/24_vertex_color_and_factor_active_all_with_nomat.blend -------------------------------------------------------------------------------- /tests/scenes/24_vertex_color_and_factor_active_not_all.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/24_vertex_color_and_factor_active_not_all.blend -------------------------------------------------------------------------------- /tests/scenes/24_vertex_color_and_factor_active_not_all_no_nomat.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/24_vertex_color_and_factor_active_not_all_no_nomat.blend -------------------------------------------------------------------------------- /tests/scenes/24_vertex_color_and_factor_name.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/24_vertex_color_and_factor_name.blend -------------------------------------------------------------------------------- /tests/scenes/24_vertex_color_and_factor_nodetree_all_with_nomat.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/24_vertex_color_and_factor_nodetree_all_with_nomat.blend -------------------------------------------------------------------------------- /tests/scenes/24_vertex_color_and_factor_nodetree_all_without_nomat.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/24_vertex_color_and_factor_nodetree_all_without_nomat.blend -------------------------------------------------------------------------------- /tests/scenes/24_vertex_color_and_factor_nodetree_not_all_with_nomat.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/24_vertex_color_and_factor_nodetree_not_all_with_nomat.blend -------------------------------------------------------------------------------- /tests/scenes/24_vertex_color_and_factor_nodetree_not_all_without_nomat.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/24_vertex_color_and_factor_nodetree_not_all_without_nomat.blend -------------------------------------------------------------------------------- /tests/scenes/24_vertex_color_and_factor_none.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/24_vertex_color_and_factor_none.blend -------------------------------------------------------------------------------- /tests/scenes/24_vertex_color_corner_vertex.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/24_vertex_color_corner_vertex.blend -------------------------------------------------------------------------------- /tests/scenes/24_vertex_colors.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/24_vertex_colors.blend -------------------------------------------------------------------------------- /tests/scenes/25_drivers.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/25_drivers.blend -------------------------------------------------------------------------------- /tests/scenes/25_drivers_disable_viewport.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/25_drivers_disable_viewport.blend -------------------------------------------------------------------------------- /tests/scenes/25_drivers_no_shapekeys.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/25_drivers_no_shapekeys.blend -------------------------------------------------------------------------------- /tests/scenes/25_mesh_instances.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/25_mesh_instances.blend -------------------------------------------------------------------------------- /tests/scenes/25_mesh_instances_apply_modifier.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/25_mesh_instances_apply_modifier.blend -------------------------------------------------------------------------------- /tests/scenes/26_material_override_by_modifiers.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/26_material_override_by_modifiers.blend -------------------------------------------------------------------------------- /tests/scenes/26_nla_export_mode.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/26_nla_export_mode.blend -------------------------------------------------------------------------------- /tests/scenes/27_apply_modifier_with_shapekeys.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/27_apply_modifier_with_shapekeys.blend -------------------------------------------------------------------------------- /tests/scenes/28_shapekeys_anim.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/28_shapekeys_anim.blend -------------------------------------------------------------------------------- /tests/scenes/28_shapekeys_no_sk_anim_export.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/28_shapekeys_no_sk_anim_export.blend -------------------------------------------------------------------------------- /tests/scenes/28_shapekeys_no_sk_export.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/28_shapekeys_no_sk_export.blend -------------------------------------------------------------------------------- /tests/scenes/28_sk_no_reset.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/28_sk_no_reset.blend -------------------------------------------------------------------------------- /tests/scenes/28_sk_reset.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/28_sk_reset.blend -------------------------------------------------------------------------------- /tests/scenes/28_sparse_sk.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/28_sparse_sk.blend -------------------------------------------------------------------------------- /tests/scenes/28_sparse_sk_no_sparse.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/28_sparse_sk_no_sparse.blend -------------------------------------------------------------------------------- /tests/scenes/28_sparse_sk_no_sparse_size.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/28_sparse_sk_no_sparse_size.blend -------------------------------------------------------------------------------- /tests/scenes/28_sparse_sk_omit.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/28_sparse_sk_omit.blend -------------------------------------------------------------------------------- /tests/scenes/28_various_sk.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/28_various_sk.blend -------------------------------------------------------------------------------- /tests/scenes/29_armature_use_current_pose.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/29_armature_use_current_pose.blend -------------------------------------------------------------------------------- /tests/scenes/29_armature_use_rest_pose.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/29_armature_use_rest_pose.blend -------------------------------------------------------------------------------- /tests/scenes/30_baking_animation.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/30_baking_animation.blend -------------------------------------------------------------------------------- /tests/scenes/31_interpolation_sampled.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/31_interpolation_sampled.blend -------------------------------------------------------------------------------- /tests/scenes/31_interpolation_sampled_no_keep.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/31_interpolation_sampled_no_keep.blend -------------------------------------------------------------------------------- /tests/scenes/31_interpolation_sampled_no_optimize.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/31_interpolation_sampled_no_optimize.blend -------------------------------------------------------------------------------- /tests/scenes/31_interpolation_sampled_no_optimize_but_keep.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/31_interpolation_sampled_no_optimize_but_keep.blend -------------------------------------------------------------------------------- /tests/scenes/32_custom_uvmap_attribute.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/32_custom_uvmap_attribute.blend -------------------------------------------------------------------------------- /tests/scenes/32_gpu_instancing_with_instancing.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/32_gpu_instancing_with_instancing.blend -------------------------------------------------------------------------------- /tests/scenes/32_gpu_instancing_without_instancing.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/32_gpu_instancing_without_instancing.blend -------------------------------------------------------------------------------- /tests/scenes/32_uvmap_indices.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/32_uvmap_indices.blend -------------------------------------------------------------------------------- /tests/scenes/32_webp_mode_auto_with_create_webp.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/32_webp_mode_auto_with_create_webp.blend -------------------------------------------------------------------------------- /tests/scenes/32_webp_mode_auto_with_fallback.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/32_webp_mode_auto_with_fallback.blend -------------------------------------------------------------------------------- /tests/scenes/32_webp_mode_auto_with_fallback_and_create_webp.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/32_webp_mode_auto_with_fallback_and_create_webp.blend -------------------------------------------------------------------------------- /tests/scenes/32_webp_mode_webp.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/32_webp_mode_webp.blend -------------------------------------------------------------------------------- /tests/scenes/32_weights_influence_4.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/32_weights_influence_4.blend -------------------------------------------------------------------------------- /tests/scenes/32_weights_influence_6.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/32_weights_influence_6.blend -------------------------------------------------------------------------------- /tests/scenes/32_weights_influence_9.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/32_weights_influence_9.blend -------------------------------------------------------------------------------- /tests/scenes/32_weights_influence_all.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/32_weights_influence_all.blend -------------------------------------------------------------------------------- /tests/scenes/33_anisotropy_from_grayscale.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/33_anisotropy_from_grayscale.blend -------------------------------------------------------------------------------- /tests/scenes/33_no_unused_texture_and_image.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/33_no_unused_texture_and_image.blend -------------------------------------------------------------------------------- /tests/scenes/33_udim.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/33_udim.blend -------------------------------------------------------------------------------- /tests/scenes/33_udim_merged.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/33_udim_merged.blend -------------------------------------------------------------------------------- /tests/scenes/33_unused_image.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/33_unused_image.blend -------------------------------------------------------------------------------- /tests/scenes/33_unused_texture.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/33_unused_texture.blend -------------------------------------------------------------------------------- /tests/scenes/33_unused_texture_and_image.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/33_unused_texture_and_image.blend -------------------------------------------------------------------------------- /tests/scenes/34_animation_pointer.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/34_animation_pointer.blend -------------------------------------------------------------------------------- /tests/scenes/35_broadcast_slots.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/35_broadcast_slots.blend -------------------------------------------------------------------------------- /tests/scenes/36_viewport_material_export.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/36_viewport_material_export.blend -------------------------------------------------------------------------------- /tests/scenes/37_lamp.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/37_lamp.blend -------------------------------------------------------------------------------- /tests/scenes/A.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/A.blend -------------------------------------------------------------------------------- /tests/scenes/B.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/B.blend -------------------------------------------------------------------------------- /tests/scenes/C.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/C.blend -------------------------------------------------------------------------------- /tests/scenes/GlTF_logo.svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/GlTF_logo.svg.png -------------------------------------------------------------------------------- /tests/scenes/Lenna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/Lenna.png -------------------------------------------------------------------------------- /tests/scenes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/README.md -------------------------------------------------------------------------------- /tests/scenes/RobotExpressive.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/RobotExpressive.blend -------------------------------------------------------------------------------- /tests/scenes/Untitled-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/Untitled-1.png -------------------------------------------------------------------------------- /tests/scenes/Untitled-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/Untitled-2.png -------------------------------------------------------------------------------- /tests/scenes/Untitled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/Untitled.png -------------------------------------------------------------------------------- /tests/scenes/Untitled.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/Untitled.webp -------------------------------------------------------------------------------- /tests/scenes/White.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/White.png -------------------------------------------------------------------------------- /tests/scenes/XX_blender_global_test.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/XX_blender_global_test.blend -------------------------------------------------------------------------------- /tests/scenes/gn_nested_instances.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/gn_nested_instances.blend -------------------------------------------------------------------------------- /tests/scenes/grayscale_anisotropy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/grayscale_anisotropy.png -------------------------------------------------------------------------------- /tests/scenes/grayscale_anisotropy_rotation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/grayscale_anisotropy_rotation.png -------------------------------------------------------------------------------- /tests/scenes/parent_is_skined.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/parent_is_skined.blend -------------------------------------------------------------------------------- /tests/scenes/test.1001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/test.1001.png -------------------------------------------------------------------------------- /tests/scenes/test.1002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/test.1002.png -------------------------------------------------------------------------------- /tests/scenes/test.1011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/test.1011.png -------------------------------------------------------------------------------- /tests/scenes/test.1012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/test.1012.png -------------------------------------------------------------------------------- /tests/scenes/test2.1001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/test2.1001.png -------------------------------------------------------------------------------- /tests/scenes/test2.1002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/test2.1002.png -------------------------------------------------------------------------------- /tests/scenes/test2.1011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/test2.1011.png -------------------------------------------------------------------------------- /tests/scenes/test2.1012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/test2.1012.png -------------------------------------------------------------------------------- /tests/scenes/test3.1001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/test3.1001.png -------------------------------------------------------------------------------- /tests/scenes/test3.1002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/test3.1002.png -------------------------------------------------------------------------------- /tests/scenes/test3.1011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/test3.1011.png -------------------------------------------------------------------------------- /tests/scenes/test3.1012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/test3.1012.png -------------------------------------------------------------------------------- /tests/scenes/test4.1001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/test4.1001.png -------------------------------------------------------------------------------- /tests/scenes/test4.1002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/test4.1002.png -------------------------------------------------------------------------------- /tests/scenes/test4.1011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/test4.1011.png -------------------------------------------------------------------------------- /tests/scenes/test4.1012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/test4.1012.png -------------------------------------------------------------------------------- /tests/scenes/test_merged.1001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/test_merged.1001.png -------------------------------------------------------------------------------- /tests/scenes/test_merged.1002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/test_merged.1002.png -------------------------------------------------------------------------------- /tests/scenes/test_merged_2.1001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/test_merged_2.1001.png -------------------------------------------------------------------------------- /tests/scenes/test_merged_2.1002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/scenes/test_merged_2.1002.png -------------------------------------------------------------------------------- /tests/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/test/test.js -------------------------------------------------------------------------------- /tests/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tests/yarn.lock -------------------------------------------------------------------------------- /tools/autopep8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tools/autopep8.md -------------------------------------------------------------------------------- /tools/copy_doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tools/copy_doc.py -------------------------------------------------------------------------------- /tools/copy_repo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tools/copy_repo.py -------------------------------------------------------------------------------- /tools/roundrip_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/glTF-Blender-IO/HEAD/tools/roundrip_dir.py --------------------------------------------------------------------------------