├── .gitignore ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Documentation ├── Adding_Models.md ├── Adding_Models_Advanced.md └── Code_Style_Guide.md ├── LICENSE ├── Output ├── Negative │ ├── Manifest.json │ ├── Mesh_NoPosition │ │ ├── Manifest.json │ │ ├── Mesh_NoPosition_00.bin │ │ ├── Mesh_NoPosition_00.gltf │ │ ├── Mesh_NoPosition_01.bin │ │ ├── Mesh_NoPosition_01.gltf │ │ ├── README.md │ │ └── ValidatorResults │ │ │ ├── Mesh_NoPosition_00.json │ │ │ └── Mesh_NoPosition_01.json │ ├── Mesh_PrimitiveRestart │ │ ├── Manifest.json │ │ ├── Mesh_PrimitiveRestart_00.bin │ │ ├── Mesh_PrimitiveRestart_00.gltf │ │ ├── Mesh_PrimitiveRestart_01.bin │ │ ├── Mesh_PrimitiveRestart_01.gltf │ │ ├── Mesh_PrimitiveRestart_02.bin │ │ ├── Mesh_PrimitiveRestart_02.gltf │ │ ├── Mesh_PrimitiveRestart_03.bin │ │ ├── Mesh_PrimitiveRestart_03.gltf │ │ ├── Mesh_PrimitiveRestart_04.bin │ │ ├── Mesh_PrimitiveRestart_04.gltf │ │ ├── Mesh_PrimitiveRestart_05.bin │ │ ├── Mesh_PrimitiveRestart_05.gltf │ │ ├── Mesh_PrimitiveRestart_06.bin │ │ ├── Mesh_PrimitiveRestart_06.gltf │ │ ├── Mesh_PrimitiveRestart_07.bin │ │ ├── Mesh_PrimitiveRestart_07.gltf │ │ ├── Mesh_PrimitiveRestart_08.bin │ │ ├── Mesh_PrimitiveRestart_08.gltf │ │ ├── Mesh_PrimitiveRestart_09.bin │ │ ├── Mesh_PrimitiveRestart_09.gltf │ │ ├── Mesh_PrimitiveRestart_10.bin │ │ ├── Mesh_PrimitiveRestart_10.gltf │ │ ├── Mesh_PrimitiveRestart_11.bin │ │ ├── Mesh_PrimitiveRestart_11.gltf │ │ ├── Mesh_PrimitiveRestart_12.bin │ │ ├── Mesh_PrimitiveRestart_12.gltf │ │ ├── Mesh_PrimitiveRestart_13.bin │ │ ├── Mesh_PrimitiveRestart_13.gltf │ │ ├── README.md │ │ └── ValidatorResults │ │ │ ├── Mesh_PrimitiveRestart_00.json │ │ │ ├── Mesh_PrimitiveRestart_01.json │ │ │ ├── Mesh_PrimitiveRestart_02.json │ │ │ ├── Mesh_PrimitiveRestart_03.json │ │ │ ├── Mesh_PrimitiveRestart_04.json │ │ │ ├── Mesh_PrimitiveRestart_05.json │ │ │ ├── Mesh_PrimitiveRestart_06.json │ │ │ ├── Mesh_PrimitiveRestart_07.json │ │ │ ├── Mesh_PrimitiveRestart_08.json │ │ │ ├── Mesh_PrimitiveRestart_09.json │ │ │ ├── Mesh_PrimitiveRestart_10.json │ │ │ ├── Mesh_PrimitiveRestart_11.json │ │ │ ├── Mesh_PrimitiveRestart_12.json │ │ │ └── Mesh_PrimitiveRestart_13.json │ └── README.md ├── Positive │ ├── Animation_Node │ │ ├── Animation_Node_00.bin │ │ ├── Animation_Node_00.gltf │ │ ├── Animation_Node_01.bin │ │ ├── Animation_Node_01.gltf │ │ ├── Animation_Node_02.bin │ │ ├── Animation_Node_02.gltf │ │ ├── Animation_Node_03.bin │ │ ├── Animation_Node_03.gltf │ │ ├── Animation_Node_04.bin │ │ ├── Animation_Node_04.gltf │ │ ├── Animation_Node_05.bin │ │ ├── Animation_Node_05.gltf │ │ ├── Figures │ │ │ ├── SampleImages │ │ │ │ ├── Animation_Node_00.gif │ │ │ │ ├── Animation_Node_01.gif │ │ │ │ ├── Animation_Node_02.gif │ │ │ │ ├── Animation_Node_03.gif │ │ │ │ ├── Animation_Node_04.gif │ │ │ │ └── Animation_Node_05.gif │ │ │ └── Thumbnails │ │ │ │ ├── Animation_Node_00.gif │ │ │ │ ├── Animation_Node_01.gif │ │ │ │ ├── Animation_Node_02.gif │ │ │ │ ├── Animation_Node_03.gif │ │ │ │ ├── Animation_Node_04.gif │ │ │ │ ├── Animation_Node_05.gif │ │ │ │ └── BaseColor_Cube.png │ │ ├── Manifest.json │ │ ├── README.md │ │ ├── Textures │ │ │ └── BaseColor_Cube.png │ │ └── ValidatorResults │ │ │ ├── Animation_Node_00.json │ │ │ ├── Animation_Node_01.json │ │ │ ├── Animation_Node_02.json │ │ │ ├── Animation_Node_03.json │ │ │ ├── Animation_Node_04.json │ │ │ └── Animation_Node_05.json │ ├── Animation_NodeMisc │ │ ├── Animation_NodeMisc_00.bin │ │ ├── Animation_NodeMisc_00.gltf │ │ ├── Animation_NodeMisc_01.bin │ │ ├── Animation_NodeMisc_01.gltf │ │ ├── Animation_NodeMisc_02.bin │ │ ├── Animation_NodeMisc_02.gltf │ │ ├── Animation_NodeMisc_03.bin │ │ ├── Animation_NodeMisc_03.gltf │ │ ├── Animation_NodeMisc_04.bin │ │ ├── Animation_NodeMisc_04.gltf │ │ ├── Animation_NodeMisc_05.bin │ │ ├── Animation_NodeMisc_05.gltf │ │ ├── Animation_NodeMisc_06.bin │ │ ├── Animation_NodeMisc_06.gltf │ │ ├── Animation_NodeMisc_07.bin │ │ ├── Animation_NodeMisc_07.gltf │ │ ├── Animation_NodeMisc_08.bin │ │ ├── Animation_NodeMisc_08.gltf │ │ ├── Figures │ │ │ ├── SampleImages │ │ │ │ ├── Animation_NodeMisc_00.gif │ │ │ │ ├── Animation_NodeMisc_01.gif │ │ │ │ ├── Animation_NodeMisc_02.gif │ │ │ │ ├── Animation_NodeMisc_03.gif │ │ │ │ ├── Animation_NodeMisc_04.gif │ │ │ │ ├── Animation_NodeMisc_05.gif │ │ │ │ ├── Animation_NodeMisc_06.gif │ │ │ │ ├── Animation_NodeMisc_07.gif │ │ │ │ └── Animation_NodeMisc_08.gif │ │ │ └── Thumbnails │ │ │ │ ├── Animation_NodeMisc_00.gif │ │ │ │ ├── Animation_NodeMisc_01.gif │ │ │ │ ├── Animation_NodeMisc_02.gif │ │ │ │ ├── Animation_NodeMisc_03.gif │ │ │ │ ├── Animation_NodeMisc_04.gif │ │ │ │ ├── Animation_NodeMisc_05.gif │ │ │ │ ├── Animation_NodeMisc_06.gif │ │ │ │ ├── Animation_NodeMisc_07.gif │ │ │ │ ├── Animation_NodeMisc_08.gif │ │ │ │ └── BaseColor_Cube.png │ │ ├── Manifest.json │ │ ├── README.md │ │ ├── Textures │ │ │ └── BaseColor_Cube.png │ │ └── ValidatorResults │ │ │ ├── Animation_NodeMisc_00.json │ │ │ ├── Animation_NodeMisc_01.json │ │ │ ├── Animation_NodeMisc_02.json │ │ │ ├── Animation_NodeMisc_03.json │ │ │ ├── Animation_NodeMisc_04.json │ │ │ ├── Animation_NodeMisc_05.json │ │ │ ├── Animation_NodeMisc_06.json │ │ │ ├── Animation_NodeMisc_07.json │ │ │ └── Animation_NodeMisc_08.json │ ├── Animation_SamplerType │ │ ├── Animation_SamplerType_00.bin │ │ ├── Animation_SamplerType_00.gltf │ │ ├── Animation_SamplerType_01.bin │ │ ├── Animation_SamplerType_01.gltf │ │ ├── Animation_SamplerType_02.bin │ │ ├── Animation_SamplerType_02.gltf │ │ ├── Figures │ │ │ ├── SampleImages │ │ │ │ ├── Animation_SamplerType_00.gif │ │ │ │ ├── Animation_SamplerType_01.gif │ │ │ │ └── Animation_SamplerType_02.gif │ │ │ └── Thumbnails │ │ │ │ ├── Animation_SamplerType_00.gif │ │ │ │ ├── Animation_SamplerType_01.gif │ │ │ │ ├── Animation_SamplerType_02.gif │ │ │ │ └── BaseColor_Cube.png │ │ ├── Manifest.json │ │ ├── README.md │ │ ├── Textures │ │ │ └── BaseColor_Cube.png │ │ └── ValidatorResults │ │ │ ├── Animation_SamplerType_00.json │ │ │ ├── Animation_SamplerType_01.json │ │ │ └── Animation_SamplerType_02.json │ ├── Animation_Skin │ │ ├── Animation_Skin_00.bin │ │ ├── Animation_Skin_00.gltf │ │ ├── Animation_Skin_01.bin │ │ ├── Animation_Skin_01.gltf │ │ ├── Animation_Skin_02.bin │ │ ├── Animation_Skin_02.gltf │ │ ├── Animation_Skin_03.bin │ │ ├── Animation_Skin_03.gltf │ │ ├── Animation_Skin_04.bin │ │ ├── Animation_Skin_04.gltf │ │ ├── Animation_Skin_05.bin │ │ ├── Animation_Skin_05.gltf │ │ ├── Animation_Skin_06.bin │ │ ├── Animation_Skin_06.gltf │ │ ├── Animation_Skin_07.bin │ │ ├── Animation_Skin_07.gltf │ │ ├── Animation_Skin_08.bin │ │ ├── Animation_Skin_08.gltf │ │ ├── Animation_Skin_09.bin │ │ ├── Animation_Skin_09.gltf │ │ ├── Animation_Skin_10.bin │ │ ├── Animation_Skin_10.gltf │ │ ├── Animation_Skin_11.bin │ │ ├── Animation_Skin_11.gltf │ │ ├── Figures │ │ │ ├── SampleImages │ │ │ │ ├── Animation_Skin_00.png │ │ │ │ ├── Animation_Skin_01.gif │ │ │ │ ├── Animation_Skin_02.png │ │ │ │ ├── Animation_Skin_03.png │ │ │ │ ├── Animation_Skin_04.gif │ │ │ │ ├── Animation_Skin_05.png │ │ │ │ ├── Animation_Skin_06.png │ │ │ │ ├── Animation_Skin_07.gif │ │ │ │ ├── Animation_Skin_08.png │ │ │ │ ├── Animation_Skin_09.gif │ │ │ │ ├── Animation_Skin_10.png │ │ │ │ └── Animation_Skin_11.png │ │ │ ├── Thumbnails │ │ │ │ ├── Animation_Skin_00.png │ │ │ │ ├── Animation_Skin_01.gif │ │ │ │ ├── Animation_Skin_02.png │ │ │ │ ├── Animation_Skin_03.png │ │ │ │ ├── Animation_Skin_04.gif │ │ │ │ ├── Animation_Skin_05.png │ │ │ │ ├── Animation_Skin_06.png │ │ │ │ ├── Animation_Skin_07.gif │ │ │ │ ├── Animation_Skin_08.png │ │ │ │ ├── Animation_Skin_09.gif │ │ │ │ ├── Animation_Skin_10.png │ │ │ │ └── Animation_Skin_11.png │ │ │ ├── skinA.png │ │ │ ├── skinB.png │ │ │ ├── skinC.png │ │ │ ├── skinD.png │ │ │ ├── skinE.png │ │ │ └── skinF.png │ │ ├── Manifest.json │ │ ├── README.md │ │ └── ValidatorResults │ │ │ ├── Animation_Skin_00.json │ │ │ ├── Animation_Skin_01.json │ │ │ ├── Animation_Skin_02.json │ │ │ ├── Animation_Skin_03.json │ │ │ ├── Animation_Skin_04.json │ │ │ ├── Animation_Skin_05.json │ │ │ ├── Animation_Skin_06.json │ │ │ ├── Animation_Skin_07.json │ │ │ ├── Animation_Skin_08.json │ │ │ ├── Animation_Skin_09.json │ │ │ ├── Animation_Skin_10.json │ │ │ └── Animation_Skin_11.json │ ├── Animation_SkinType │ │ ├── Animation_SkinType_00.bin │ │ ├── Animation_SkinType_00.gltf │ │ ├── Animation_SkinType_01.bin │ │ ├── Animation_SkinType_01.gltf │ │ ├── Animation_SkinType_02.bin │ │ ├── Animation_SkinType_02.gltf │ │ ├── Animation_SkinType_03.bin │ │ ├── Animation_SkinType_03.gltf │ │ ├── Figures │ │ │ ├── SampleImages │ │ │ │ ├── Animation_SkinType_00.gif │ │ │ │ ├── Animation_SkinType_01.gif │ │ │ │ ├── Animation_SkinType_02.gif │ │ │ │ └── Animation_SkinType_03.gif │ │ │ └── Thumbnails │ │ │ │ ├── Animation_SkinType_00.gif │ │ │ │ ├── Animation_SkinType_01.gif │ │ │ │ ├── Animation_SkinType_02.gif │ │ │ │ └── Animation_SkinType_03.gif │ │ ├── Manifest.json │ │ ├── README.md │ │ └── ValidatorResults │ │ │ ├── Animation_SkinType_00.json │ │ │ ├── Animation_SkinType_01.json │ │ │ ├── Animation_SkinType_02.json │ │ │ └── Animation_SkinType_03.json │ ├── Buffer_Interleaved │ │ ├── Buffer_Interleaved_00.bin │ │ ├── Buffer_Interleaved_00.gltf │ │ ├── Buffer_Interleaved_01.bin │ │ ├── Buffer_Interleaved_01.gltf │ │ ├── Buffer_Interleaved_02.bin │ │ ├── Buffer_Interleaved_02.gltf │ │ ├── Buffer_Interleaved_03.bin │ │ ├── Buffer_Interleaved_03.gltf │ │ ├── Buffer_Interleaved_04.bin │ │ ├── Buffer_Interleaved_04.gltf │ │ ├── Figures │ │ │ ├── SampleImages │ │ │ │ ├── Buffer_Interleaved_00.png │ │ │ │ ├── Buffer_Interleaved_01.png │ │ │ │ ├── Buffer_Interleaved_02.png │ │ │ │ ├── Buffer_Interleaved_03.png │ │ │ │ └── Buffer_Interleaved_04.png │ │ │ └── Thumbnails │ │ │ │ ├── BaseColor_Grey.png │ │ │ │ ├── Buffer_Interleaved_00.png │ │ │ │ ├── Buffer_Interleaved_01.png │ │ │ │ ├── Buffer_Interleaved_02.png │ │ │ │ ├── Buffer_Interleaved_03.png │ │ │ │ └── Buffer_Interleaved_04.png │ │ ├── Manifest.json │ │ ├── README.md │ │ ├── Textures │ │ │ └── BaseColor_Grey.png │ │ └── ValidatorResults │ │ │ ├── Buffer_Interleaved_00.json │ │ │ ├── Buffer_Interleaved_01.json │ │ │ ├── Buffer_Interleaved_02.json │ │ │ ├── Buffer_Interleaved_03.json │ │ │ └── Buffer_Interleaved_04.json │ ├── Compatibility │ │ ├── Compatibility_00.bin │ │ ├── Compatibility_00.gltf │ │ ├── Compatibility_01.bin │ │ ├── Compatibility_01.gltf │ │ ├── Compatibility_02.bin │ │ ├── Compatibility_02.gltf │ │ ├── Compatibility_03.bin │ │ ├── Compatibility_03.gltf │ │ ├── Compatibility_04.bin │ │ ├── Compatibility_04.gltf │ │ ├── Compatibility_05.bin │ │ ├── Compatibility_05.gltf │ │ ├── Compatibility_06.bin │ │ ├── Compatibility_06.gltf │ │ ├── Manifest.json │ │ ├── README.md │ │ └── ValidatorResults │ │ │ ├── Compatibility_00.json │ │ │ ├── Compatibility_01.json │ │ │ ├── Compatibility_02.json │ │ │ ├── Compatibility_03.json │ │ │ ├── Compatibility_04.json │ │ │ ├── Compatibility_05.json │ │ │ └── Compatibility_06.json │ ├── Instancing │ │ ├── Figures │ │ │ ├── SampleImages │ │ │ │ ├── Instancing_00.png │ │ │ │ ├── Instancing_01.png │ │ │ │ ├── Instancing_02.png │ │ │ │ ├── Instancing_03.png │ │ │ │ ├── Instancing_04.png │ │ │ │ ├── Instancing_05.png │ │ │ │ ├── Instancing_06.png │ │ │ │ ├── Instancing_07.png │ │ │ │ ├── Instancing_08.png │ │ │ │ ├── Instancing_09.png │ │ │ │ ├── Instancing_10.gif │ │ │ │ ├── Instancing_11.gif │ │ │ │ └── Instancing_12.gif │ │ │ └── Thumbnails │ │ │ │ ├── BaseColor_A.png │ │ │ │ ├── BaseColor_B.png │ │ │ │ ├── BaseColor_Cube.png │ │ │ │ ├── Instancing_00.png │ │ │ │ ├── Instancing_01.png │ │ │ │ ├── Instancing_02.png │ │ │ │ ├── Instancing_03.png │ │ │ │ ├── Instancing_04.png │ │ │ │ ├── Instancing_05.png │ │ │ │ ├── Instancing_06.png │ │ │ │ ├── Instancing_07.png │ │ │ │ ├── Instancing_08.png │ │ │ │ ├── Instancing_09.png │ │ │ │ ├── Instancing_10.gif │ │ │ │ ├── Instancing_11.gif │ │ │ │ └── Instancing_12.gif │ │ ├── Instancing_00.bin │ │ ├── Instancing_00.gltf │ │ ├── Instancing_01.bin │ │ ├── Instancing_01.gltf │ │ ├── Instancing_02.bin │ │ ├── Instancing_02.gltf │ │ ├── Instancing_03.bin │ │ ├── Instancing_03.gltf │ │ ├── Instancing_04.bin │ │ ├── Instancing_04.gltf │ │ ├── Instancing_05.bin │ │ ├── Instancing_05.gltf │ │ ├── Instancing_06.bin │ │ ├── Instancing_06.gltf │ │ ├── Instancing_07.bin │ │ ├── Instancing_07.gltf │ │ ├── Instancing_08.bin │ │ ├── Instancing_08.gltf │ │ ├── Instancing_09.bin │ │ ├── Instancing_09.gltf │ │ ├── Instancing_10.bin │ │ ├── Instancing_10.gltf │ │ ├── Instancing_11.bin │ │ ├── Instancing_11.gltf │ │ ├── Instancing_12.bin │ │ ├── Instancing_12.gltf │ │ ├── Manifest.json │ │ ├── README.md │ │ ├── Textures │ │ │ ├── BaseColor_A.png │ │ │ ├── BaseColor_B.png │ │ │ └── BaseColor_Cube.png │ │ └── ValidatorResults │ │ │ ├── Instancing_00.json │ │ │ ├── Instancing_01.json │ │ │ ├── Instancing_02.json │ │ │ ├── Instancing_03.json │ │ │ ├── Instancing_04.json │ │ │ ├── Instancing_05.json │ │ │ ├── Instancing_06.json │ │ │ ├── Instancing_07.json │ │ │ ├── Instancing_08.json │ │ │ ├── Instancing_09.json │ │ │ ├── Instancing_10.json │ │ │ ├── Instancing_11.json │ │ │ └── Instancing_12.json │ ├── Manifest.json │ ├── Material │ │ ├── Figures │ │ │ ├── SampleImages │ │ │ │ ├── Material_00.png │ │ │ │ ├── Material_01.png │ │ │ │ ├── Material_02.png │ │ │ │ ├── Material_03.png │ │ │ │ ├── Material_04.png │ │ │ │ ├── Material_05.png │ │ │ │ ├── Material_06.png │ │ │ │ └── Material_07.png │ │ │ └── Thumbnails │ │ │ │ ├── Emissive_Plane.png │ │ │ │ ├── Material_00.png │ │ │ │ ├── Material_01.png │ │ │ │ ├── Material_02.png │ │ │ │ ├── Material_03.png │ │ │ │ ├── Material_04.png │ │ │ │ ├── Material_05.png │ │ │ │ ├── Material_06.png │ │ │ │ ├── Material_07.png │ │ │ │ ├── Normal_Plane.png │ │ │ │ └── Occlusion_Plane.png │ │ ├── Manifest.json │ │ ├── Material_00.bin │ │ ├── Material_00.gltf │ │ ├── Material_01.bin │ │ ├── Material_01.gltf │ │ ├── Material_02.bin │ │ ├── Material_02.gltf │ │ ├── Material_03.bin │ │ ├── Material_03.gltf │ │ ├── Material_04.bin │ │ ├── Material_04.gltf │ │ ├── Material_05.bin │ │ ├── Material_05.gltf │ │ ├── Material_06.bin │ │ ├── Material_06.gltf │ │ ├── Material_07.bin │ │ ├── Material_07.gltf │ │ ├── README.md │ │ ├── Textures │ │ │ ├── Emissive_Plane.png │ │ │ ├── Normal_Plane.png │ │ │ └── Occlusion_Plane.png │ │ └── ValidatorResults │ │ │ ├── Material_00.json │ │ │ ├── Material_01.json │ │ │ ├── Material_02.json │ │ │ ├── Material_03.json │ │ │ ├── Material_04.json │ │ │ ├── Material_05.json │ │ │ ├── Material_06.json │ │ │ └── Material_07.json │ ├── Material_AlphaBlend │ │ ├── Figures │ │ │ ├── SampleImages │ │ │ │ ├── Material_AlphaBlend_00.png │ │ │ │ ├── Material_AlphaBlend_01.png │ │ │ │ ├── Material_AlphaBlend_02.png │ │ │ │ ├── Material_AlphaBlend_03.png │ │ │ │ ├── Material_AlphaBlend_04.png │ │ │ │ ├── Material_AlphaBlend_05.png │ │ │ │ └── Material_AlphaBlend_06.png │ │ │ └── Thumbnails │ │ │ │ ├── BaseColor_Plane.png │ │ │ │ ├── Material_AlphaBlend_00.png │ │ │ │ ├── Material_AlphaBlend_01.png │ │ │ │ ├── Material_AlphaBlend_02.png │ │ │ │ ├── Material_AlphaBlend_03.png │ │ │ │ ├── Material_AlphaBlend_04.png │ │ │ │ ├── Material_AlphaBlend_05.png │ │ │ │ └── Material_AlphaBlend_06.png │ │ ├── Manifest.json │ │ ├── Material_AlphaBlend_00.bin │ │ ├── Material_AlphaBlend_00.gltf │ │ ├── Material_AlphaBlend_01.bin │ │ ├── Material_AlphaBlend_01.gltf │ │ ├── Material_AlphaBlend_02.bin │ │ ├── Material_AlphaBlend_02.gltf │ │ ├── Material_AlphaBlend_03.bin │ │ ├── Material_AlphaBlend_03.gltf │ │ ├── Material_AlphaBlend_04.bin │ │ ├── Material_AlphaBlend_04.gltf │ │ ├── Material_AlphaBlend_05.bin │ │ ├── Material_AlphaBlend_05.gltf │ │ ├── Material_AlphaBlend_06.bin │ │ ├── Material_AlphaBlend_06.gltf │ │ ├── README.md │ │ ├── Textures │ │ │ └── BaseColor_Plane.png │ │ └── ValidatorResults │ │ │ ├── Material_AlphaBlend_00.json │ │ │ ├── Material_AlphaBlend_01.json │ │ │ ├── Material_AlphaBlend_02.json │ │ │ ├── Material_AlphaBlend_03.json │ │ │ ├── Material_AlphaBlend_04.json │ │ │ ├── Material_AlphaBlend_05.json │ │ │ └── Material_AlphaBlend_06.json │ ├── Material_AlphaMask │ │ ├── Figures │ │ │ ├── SampleImages │ │ │ │ ├── Material_AlphaMask_00.png │ │ │ │ ├── Material_AlphaMask_01.png │ │ │ │ ├── Material_AlphaMask_02.png │ │ │ │ ├── Material_AlphaMask_03.png │ │ │ │ ├── Material_AlphaMask_04.png │ │ │ │ ├── Material_AlphaMask_05.png │ │ │ │ └── Material_AlphaMask_06.png │ │ │ └── Thumbnails │ │ │ │ ├── BaseColor_Plane.png │ │ │ │ ├── Material_AlphaMask_00.png │ │ │ │ ├── Material_AlphaMask_01.png │ │ │ │ ├── Material_AlphaMask_02.png │ │ │ │ ├── Material_AlphaMask_03.png │ │ │ │ ├── Material_AlphaMask_04.png │ │ │ │ ├── Material_AlphaMask_05.png │ │ │ │ └── Material_AlphaMask_06.png │ │ ├── Manifest.json │ │ ├── Material_AlphaMask_00.bin │ │ ├── Material_AlphaMask_00.gltf │ │ ├── Material_AlphaMask_01.bin │ │ ├── Material_AlphaMask_01.gltf │ │ ├── Material_AlphaMask_02.bin │ │ ├── Material_AlphaMask_02.gltf │ │ ├── Material_AlphaMask_03.bin │ │ ├── Material_AlphaMask_03.gltf │ │ ├── Material_AlphaMask_04.bin │ │ ├── Material_AlphaMask_04.gltf │ │ ├── Material_AlphaMask_05.bin │ │ ├── Material_AlphaMask_05.gltf │ │ ├── Material_AlphaMask_06.bin │ │ ├── Material_AlphaMask_06.gltf │ │ ├── README.md │ │ ├── Textures │ │ │ └── BaseColor_Plane.png │ │ └── ValidatorResults │ │ │ ├── Material_AlphaMask_00.json │ │ │ ├── Material_AlphaMask_01.json │ │ │ ├── Material_AlphaMask_02.json │ │ │ ├── Material_AlphaMask_03.json │ │ │ ├── Material_AlphaMask_04.json │ │ │ ├── Material_AlphaMask_05.json │ │ │ └── Material_AlphaMask_06.json │ ├── Material_DoubleSided │ │ ├── Figures │ │ │ ├── SampleImages │ │ │ │ ├── Material_DoubleSided_00.png │ │ │ │ ├── Material_DoubleSided_01.png │ │ │ │ ├── Material_DoubleSided_02.png │ │ │ │ ├── Material_DoubleSided_03.png │ │ │ │ └── Material_DoubleSided_04.png │ │ │ └── Thumbnails │ │ │ │ ├── BaseColor_Plane.png │ │ │ │ ├── Material_DoubleSided_00.png │ │ │ │ ├── Material_DoubleSided_01.png │ │ │ │ ├── Material_DoubleSided_02.png │ │ │ │ ├── Material_DoubleSided_03.png │ │ │ │ ├── Material_DoubleSided_04.png │ │ │ │ └── Normal_Plane.png │ │ ├── Manifest.json │ │ ├── Material_DoubleSided_00.bin │ │ ├── Material_DoubleSided_00.gltf │ │ ├── Material_DoubleSided_01.bin │ │ ├── Material_DoubleSided_01.gltf │ │ ├── Material_DoubleSided_02.bin │ │ ├── Material_DoubleSided_02.gltf │ │ ├── Material_DoubleSided_03.bin │ │ ├── Material_DoubleSided_03.gltf │ │ ├── Material_DoubleSided_04.bin │ │ ├── Material_DoubleSided_04.gltf │ │ ├── README.md │ │ ├── Textures │ │ │ ├── BaseColor_Plane.png │ │ │ └── Normal_Plane.png │ │ └── ValidatorResults │ │ │ ├── Material_DoubleSided_00.json │ │ │ ├── Material_DoubleSided_01.json │ │ │ ├── Material_DoubleSided_02.json │ │ │ ├── Material_DoubleSided_03.json │ │ │ └── Material_DoubleSided_04.json │ ├── Material_MetallicRoughness │ │ ├── Figures │ │ │ ├── SampleImages │ │ │ │ ├── Material_MetallicRoughness_00.png │ │ │ │ ├── Material_MetallicRoughness_01.png │ │ │ │ ├── Material_MetallicRoughness_02.png │ │ │ │ ├── Material_MetallicRoughness_03.png │ │ │ │ ├── Material_MetallicRoughness_04.png │ │ │ │ ├── Material_MetallicRoughness_05.png │ │ │ │ ├── Material_MetallicRoughness_06.png │ │ │ │ ├── Material_MetallicRoughness_07.png │ │ │ │ ├── Material_MetallicRoughness_08.png │ │ │ │ ├── Material_MetallicRoughness_09.png │ │ │ │ ├── Material_MetallicRoughness_10.png │ │ │ │ └── Material_MetallicRoughness_11.png │ │ │ └── Thumbnails │ │ │ │ ├── BaseColor_Plane.png │ │ │ │ ├── Material_MetallicRoughness_00.png │ │ │ │ ├── Material_MetallicRoughness_01.png │ │ │ │ ├── Material_MetallicRoughness_02.png │ │ │ │ ├── Material_MetallicRoughness_03.png │ │ │ │ ├── Material_MetallicRoughness_04.png │ │ │ │ ├── Material_MetallicRoughness_05.png │ │ │ │ ├── Material_MetallicRoughness_06.png │ │ │ │ ├── Material_MetallicRoughness_07.png │ │ │ │ ├── Material_MetallicRoughness_08.png │ │ │ │ ├── Material_MetallicRoughness_09.png │ │ │ │ ├── Material_MetallicRoughness_10.png │ │ │ │ ├── Material_MetallicRoughness_11.png │ │ │ │ └── MetallicRoughness_Plane.png │ │ ├── Manifest.json │ │ ├── Material_MetallicRoughness_00.bin │ │ ├── Material_MetallicRoughness_00.gltf │ │ ├── Material_MetallicRoughness_01.bin │ │ ├── Material_MetallicRoughness_01.gltf │ │ ├── Material_MetallicRoughness_02.bin │ │ ├── Material_MetallicRoughness_02.gltf │ │ ├── Material_MetallicRoughness_03.bin │ │ ├── Material_MetallicRoughness_03.gltf │ │ ├── Material_MetallicRoughness_04.bin │ │ ├── Material_MetallicRoughness_04.gltf │ │ ├── Material_MetallicRoughness_05.bin │ │ ├── Material_MetallicRoughness_05.gltf │ │ ├── Material_MetallicRoughness_06.bin │ │ ├── Material_MetallicRoughness_06.gltf │ │ ├── Material_MetallicRoughness_07.bin │ │ ├── Material_MetallicRoughness_07.gltf │ │ ├── Material_MetallicRoughness_08.bin │ │ ├── Material_MetallicRoughness_08.gltf │ │ ├── Material_MetallicRoughness_09.bin │ │ ├── Material_MetallicRoughness_09.gltf │ │ ├── Material_MetallicRoughness_10.bin │ │ ├── Material_MetallicRoughness_10.gltf │ │ ├── Material_MetallicRoughness_11.bin │ │ ├── Material_MetallicRoughness_11.gltf │ │ ├── README.md │ │ ├── Textures │ │ │ ├── BaseColor_Plane.png │ │ │ └── MetallicRoughness_Plane.png │ │ └── ValidatorResults │ │ │ ├── Material_MetallicRoughness_00.json │ │ │ ├── Material_MetallicRoughness_01.json │ │ │ ├── Material_MetallicRoughness_02.json │ │ │ ├── Material_MetallicRoughness_03.json │ │ │ ├── Material_MetallicRoughness_04.json │ │ │ ├── Material_MetallicRoughness_05.json │ │ │ ├── Material_MetallicRoughness_06.json │ │ │ ├── Material_MetallicRoughness_07.json │ │ │ ├── Material_MetallicRoughness_08.json │ │ │ ├── Material_MetallicRoughness_09.json │ │ │ ├── Material_MetallicRoughness_10.json │ │ │ └── Material_MetallicRoughness_11.json │ ├── Material_Mixed │ │ ├── Figures │ │ │ ├── SampleImages │ │ │ │ ├── Material_Mixed_00.png │ │ │ │ ├── Material_Mixed_01.png │ │ │ │ └── Material_Mixed_02.png │ │ │ ├── Thumbnails │ │ │ │ ├── BaseColor_X.png │ │ │ │ ├── Material_Mixed_00.png │ │ │ │ ├── Material_Mixed_01.png │ │ │ │ └── Material_Mixed_02.png │ │ │ ├── UVSpace2.png │ │ │ └── UVSpace3.png │ │ ├── Manifest.json │ │ ├── Material_Mixed_00.bin │ │ ├── Material_Mixed_00.gltf │ │ ├── Material_Mixed_01.bin │ │ ├── Material_Mixed_01.gltf │ │ ├── Material_Mixed_02.bin │ │ ├── Material_Mixed_02.gltf │ │ ├── README.md │ │ ├── Textures │ │ │ └── BaseColor_X.png │ │ └── ValidatorResults │ │ │ ├── Material_Mixed_00.json │ │ │ ├── Material_Mixed_01.json │ │ │ └── Material_Mixed_02.json │ ├── Material_SpecularGlossiness │ │ ├── Figures │ │ │ ├── SampleImages │ │ │ │ ├── Material_SpecularGlossiness_00.png │ │ │ │ ├── Material_SpecularGlossiness_01.png │ │ │ │ ├── Material_SpecularGlossiness_02.png │ │ │ │ ├── Material_SpecularGlossiness_03.png │ │ │ │ ├── Material_SpecularGlossiness_04.png │ │ │ │ ├── Material_SpecularGlossiness_05.png │ │ │ │ ├── Material_SpecularGlossiness_06.png │ │ │ │ ├── Material_SpecularGlossiness_07.png │ │ │ │ ├── Material_SpecularGlossiness_08.png │ │ │ │ ├── Material_SpecularGlossiness_09.png │ │ │ │ ├── Material_SpecularGlossiness_10.png │ │ │ │ ├── Material_SpecularGlossiness_11.png │ │ │ │ ├── Material_SpecularGlossiness_12.png │ │ │ │ └── Material_SpecularGlossiness_13.png │ │ │ └── Thumbnails │ │ │ │ ├── BaseColor_X.png │ │ │ │ ├── Diffuse_Plane.png │ │ │ │ ├── Material_SpecularGlossiness_00.png │ │ │ │ ├── Material_SpecularGlossiness_01.png │ │ │ │ ├── Material_SpecularGlossiness_02.png │ │ │ │ ├── Material_SpecularGlossiness_03.png │ │ │ │ ├── Material_SpecularGlossiness_04.png │ │ │ │ ├── Material_SpecularGlossiness_05.png │ │ │ │ ├── Material_SpecularGlossiness_06.png │ │ │ │ ├── Material_SpecularGlossiness_07.png │ │ │ │ ├── Material_SpecularGlossiness_08.png │ │ │ │ ├── Material_SpecularGlossiness_09.png │ │ │ │ ├── Material_SpecularGlossiness_10.png │ │ │ │ ├── Material_SpecularGlossiness_11.png │ │ │ │ ├── Material_SpecularGlossiness_12.png │ │ │ │ ├── Material_SpecularGlossiness_13.png │ │ │ │ └── SpecularGlossiness_Plane.png │ │ ├── Manifest.json │ │ ├── Material_SpecularGlossiness_00.bin │ │ ├── Material_SpecularGlossiness_00.gltf │ │ ├── Material_SpecularGlossiness_01.bin │ │ ├── Material_SpecularGlossiness_01.gltf │ │ ├── Material_SpecularGlossiness_02.bin │ │ ├── Material_SpecularGlossiness_02.gltf │ │ ├── Material_SpecularGlossiness_03.bin │ │ ├── Material_SpecularGlossiness_03.gltf │ │ ├── Material_SpecularGlossiness_04.bin │ │ ├── Material_SpecularGlossiness_04.gltf │ │ ├── Material_SpecularGlossiness_05.bin │ │ ├── Material_SpecularGlossiness_05.gltf │ │ ├── Material_SpecularGlossiness_06.bin │ │ ├── Material_SpecularGlossiness_06.gltf │ │ ├── Material_SpecularGlossiness_07.bin │ │ ├── Material_SpecularGlossiness_07.gltf │ │ ├── Material_SpecularGlossiness_08.bin │ │ ├── Material_SpecularGlossiness_08.gltf │ │ ├── Material_SpecularGlossiness_09.bin │ │ ├── Material_SpecularGlossiness_09.gltf │ │ ├── Material_SpecularGlossiness_10.bin │ │ ├── Material_SpecularGlossiness_10.gltf │ │ ├── Material_SpecularGlossiness_11.bin │ │ ├── Material_SpecularGlossiness_11.gltf │ │ ├── Material_SpecularGlossiness_12.bin │ │ ├── Material_SpecularGlossiness_12.gltf │ │ ├── Material_SpecularGlossiness_13.bin │ │ ├── Material_SpecularGlossiness_13.gltf │ │ ├── README.md │ │ ├── Textures │ │ │ ├── BaseColor_X.png │ │ │ ├── Diffuse_Plane.png │ │ │ └── SpecularGlossiness_Plane.png │ │ └── ValidatorResults │ │ │ ├── Material_SpecularGlossiness_00.json │ │ │ ├── Material_SpecularGlossiness_01.json │ │ │ ├── Material_SpecularGlossiness_02.json │ │ │ ├── Material_SpecularGlossiness_03.json │ │ │ ├── Material_SpecularGlossiness_04.json │ │ │ ├── Material_SpecularGlossiness_05.json │ │ │ ├── Material_SpecularGlossiness_06.json │ │ │ ├── Material_SpecularGlossiness_07.json │ │ │ ├── Material_SpecularGlossiness_08.json │ │ │ ├── Material_SpecularGlossiness_09.json │ │ │ ├── Material_SpecularGlossiness_10.json │ │ │ ├── Material_SpecularGlossiness_11.json │ │ │ ├── Material_SpecularGlossiness_12.json │ │ │ └── Material_SpecularGlossiness_13.json │ ├── Mesh_PrimitiveAttribute │ │ ├── Figures │ │ │ ├── SampleImages │ │ │ │ ├── Mesh_PrimitiveAttribute_00.png │ │ │ │ ├── Mesh_PrimitiveAttribute_01.png │ │ │ │ ├── Mesh_PrimitiveAttribute_02.png │ │ │ │ ├── Mesh_PrimitiveAttribute_03.png │ │ │ │ ├── Mesh_PrimitiveAttribute_04.png │ │ │ │ ├── Mesh_PrimitiveAttribute_05.png │ │ │ │ └── Mesh_PrimitiveAttribute_06.png │ │ │ └── Thumbnails │ │ │ │ ├── BaseColor_Plane.png │ │ │ │ ├── Mesh_PrimitiveAttribute_00.png │ │ │ │ ├── Mesh_PrimitiveAttribute_01.png │ │ │ │ ├── Mesh_PrimitiveAttribute_02.png │ │ │ │ ├── Mesh_PrimitiveAttribute_03.png │ │ │ │ ├── Mesh_PrimitiveAttribute_04.png │ │ │ │ ├── Mesh_PrimitiveAttribute_05.png │ │ │ │ ├── Mesh_PrimitiveAttribute_06.png │ │ │ │ └── Normal_Plane.png │ │ ├── Manifest.json │ │ ├── Mesh_PrimitiveAttribute_00.bin │ │ ├── Mesh_PrimitiveAttribute_00.gltf │ │ ├── Mesh_PrimitiveAttribute_01.bin │ │ ├── Mesh_PrimitiveAttribute_01.gltf │ │ ├── Mesh_PrimitiveAttribute_02.bin │ │ ├── Mesh_PrimitiveAttribute_02.gltf │ │ ├── Mesh_PrimitiveAttribute_03.bin │ │ ├── Mesh_PrimitiveAttribute_03.gltf │ │ ├── Mesh_PrimitiveAttribute_04.bin │ │ ├── Mesh_PrimitiveAttribute_04.gltf │ │ ├── Mesh_PrimitiveAttribute_05.bin │ │ ├── Mesh_PrimitiveAttribute_05.gltf │ │ ├── Mesh_PrimitiveAttribute_06.bin │ │ ├── Mesh_PrimitiveAttribute_06.gltf │ │ ├── README.md │ │ ├── Textures │ │ │ ├── BaseColor_Plane.png │ │ │ └── Normal_Plane.png │ │ └── ValidatorResults │ │ │ ├── Mesh_PrimitiveAttribute_00.json │ │ │ ├── Mesh_PrimitiveAttribute_01.json │ │ │ ├── Mesh_PrimitiveAttribute_02.json │ │ │ ├── Mesh_PrimitiveAttribute_03.json │ │ │ ├── Mesh_PrimitiveAttribute_04.json │ │ │ ├── Mesh_PrimitiveAttribute_05.json │ │ │ └── Mesh_PrimitiveAttribute_06.json │ ├── Mesh_PrimitiveMode │ │ ├── Figures │ │ │ ├── Indices.png │ │ │ ├── Indices_Points.png │ │ │ ├── SampleImages │ │ │ │ ├── Mesh_PrimitiveMode_00.png │ │ │ │ ├── Mesh_PrimitiveMode_01.png │ │ │ │ ├── Mesh_PrimitiveMode_02.png │ │ │ │ ├── Mesh_PrimitiveMode_03.png │ │ │ │ ├── Mesh_PrimitiveMode_04.png │ │ │ │ ├── Mesh_PrimitiveMode_05.png │ │ │ │ ├── Mesh_PrimitiveMode_06.png │ │ │ │ ├── Mesh_PrimitiveMode_07.png │ │ │ │ ├── Mesh_PrimitiveMode_08.png │ │ │ │ ├── Mesh_PrimitiveMode_09.png │ │ │ │ ├── Mesh_PrimitiveMode_10.png │ │ │ │ ├── Mesh_PrimitiveMode_11.png │ │ │ │ ├── Mesh_PrimitiveMode_12.png │ │ │ │ ├── Mesh_PrimitiveMode_13.png │ │ │ │ ├── Mesh_PrimitiveMode_14.png │ │ │ │ └── Mesh_PrimitiveMode_15.png │ │ │ └── Thumbnails │ │ │ │ ├── Mesh_PrimitiveMode_00.png │ │ │ │ ├── Mesh_PrimitiveMode_01.png │ │ │ │ ├── Mesh_PrimitiveMode_02.png │ │ │ │ ├── Mesh_PrimitiveMode_03.png │ │ │ │ ├── Mesh_PrimitiveMode_04.png │ │ │ │ ├── Mesh_PrimitiveMode_05.png │ │ │ │ ├── Mesh_PrimitiveMode_06.png │ │ │ │ ├── Mesh_PrimitiveMode_07.png │ │ │ │ ├── Mesh_PrimitiveMode_08.png │ │ │ │ ├── Mesh_PrimitiveMode_09.png │ │ │ │ ├── Mesh_PrimitiveMode_10.png │ │ │ │ ├── Mesh_PrimitiveMode_11.png │ │ │ │ ├── Mesh_PrimitiveMode_12.png │ │ │ │ ├── Mesh_PrimitiveMode_13.png │ │ │ │ ├── Mesh_PrimitiveMode_14.png │ │ │ │ └── Mesh_PrimitiveMode_15.png │ │ ├── Manifest.json │ │ ├── Mesh_PrimitiveMode_00.bin │ │ ├── Mesh_PrimitiveMode_00.gltf │ │ ├── Mesh_PrimitiveMode_01.bin │ │ ├── Mesh_PrimitiveMode_01.gltf │ │ ├── Mesh_PrimitiveMode_02.bin │ │ ├── Mesh_PrimitiveMode_02.gltf │ │ ├── Mesh_PrimitiveMode_03.bin │ │ ├── Mesh_PrimitiveMode_03.gltf │ │ ├── Mesh_PrimitiveMode_04.bin │ │ ├── Mesh_PrimitiveMode_04.gltf │ │ ├── Mesh_PrimitiveMode_05.bin │ │ ├── Mesh_PrimitiveMode_05.gltf │ │ ├── Mesh_PrimitiveMode_06.bin │ │ ├── Mesh_PrimitiveMode_06.gltf │ │ ├── Mesh_PrimitiveMode_07.bin │ │ ├── Mesh_PrimitiveMode_07.gltf │ │ ├── Mesh_PrimitiveMode_08.bin │ │ ├── Mesh_PrimitiveMode_08.gltf │ │ ├── Mesh_PrimitiveMode_09.bin │ │ ├── Mesh_PrimitiveMode_09.gltf │ │ ├── Mesh_PrimitiveMode_10.bin │ │ ├── Mesh_PrimitiveMode_10.gltf │ │ ├── Mesh_PrimitiveMode_11.bin │ │ ├── Mesh_PrimitiveMode_11.gltf │ │ ├── Mesh_PrimitiveMode_12.bin │ │ ├── Mesh_PrimitiveMode_12.gltf │ │ ├── Mesh_PrimitiveMode_13.bin │ │ ├── Mesh_PrimitiveMode_13.gltf │ │ ├── Mesh_PrimitiveMode_14.bin │ │ ├── Mesh_PrimitiveMode_14.gltf │ │ ├── Mesh_PrimitiveMode_15.bin │ │ ├── Mesh_PrimitiveMode_15.gltf │ │ ├── README.md │ │ └── ValidatorResults │ │ │ ├── Mesh_PrimitiveMode_00.json │ │ │ ├── Mesh_PrimitiveMode_01.json │ │ │ ├── Mesh_PrimitiveMode_02.json │ │ │ ├── Mesh_PrimitiveMode_03.json │ │ │ ├── Mesh_PrimitiveMode_04.json │ │ │ ├── Mesh_PrimitiveMode_05.json │ │ │ ├── Mesh_PrimitiveMode_06.json │ │ │ ├── Mesh_PrimitiveMode_07.json │ │ │ ├── Mesh_PrimitiveMode_08.json │ │ │ ├── Mesh_PrimitiveMode_09.json │ │ │ ├── Mesh_PrimitiveMode_10.json │ │ │ ├── Mesh_PrimitiveMode_11.json │ │ │ ├── Mesh_PrimitiveMode_12.json │ │ │ ├── Mesh_PrimitiveMode_13.json │ │ │ ├── Mesh_PrimitiveMode_14.json │ │ │ └── Mesh_PrimitiveMode_15.json │ ├── Mesh_PrimitiveVertexColor │ │ ├── Figures │ │ │ ├── SampleImages │ │ │ │ ├── Mesh_PrimitiveVertexColor_00.png │ │ │ │ ├── Mesh_PrimitiveVertexColor_01.png │ │ │ │ ├── Mesh_PrimitiveVertexColor_02.png │ │ │ │ ├── Mesh_PrimitiveVertexColor_03.png │ │ │ │ ├── Mesh_PrimitiveVertexColor_04.png │ │ │ │ └── Mesh_PrimitiveVertexColor_05.png │ │ │ └── Thumbnails │ │ │ │ ├── Mesh_PrimitiveVertexColor_00.png │ │ │ │ ├── Mesh_PrimitiveVertexColor_01.png │ │ │ │ ├── Mesh_PrimitiveVertexColor_02.png │ │ │ │ ├── Mesh_PrimitiveVertexColor_03.png │ │ │ │ ├── Mesh_PrimitiveVertexColor_04.png │ │ │ │ └── Mesh_PrimitiveVertexColor_05.png │ │ ├── Manifest.json │ │ ├── Mesh_PrimitiveVertexColor_00.bin │ │ ├── Mesh_PrimitiveVertexColor_00.gltf │ │ ├── Mesh_PrimitiveVertexColor_01.bin │ │ ├── Mesh_PrimitiveVertexColor_01.gltf │ │ ├── Mesh_PrimitiveVertexColor_02.bin │ │ ├── Mesh_PrimitiveVertexColor_02.gltf │ │ ├── Mesh_PrimitiveVertexColor_03.bin │ │ ├── Mesh_PrimitiveVertexColor_03.gltf │ │ ├── Mesh_PrimitiveVertexColor_04.bin │ │ ├── Mesh_PrimitiveVertexColor_04.gltf │ │ ├── Mesh_PrimitiveVertexColor_05.bin │ │ ├── Mesh_PrimitiveVertexColor_05.gltf │ │ ├── README.md │ │ └── ValidatorResults │ │ │ ├── Mesh_PrimitiveVertexColor_00.json │ │ │ ├── Mesh_PrimitiveVertexColor_01.json │ │ │ ├── Mesh_PrimitiveVertexColor_02.json │ │ │ ├── Mesh_PrimitiveVertexColor_03.json │ │ │ ├── Mesh_PrimitiveVertexColor_04.json │ │ │ └── Mesh_PrimitiveVertexColor_05.json │ ├── Mesh_Primitives │ │ ├── Figures │ │ │ ├── Indices_Primitive0.png │ │ │ ├── Indices_Primitive1.png │ │ │ ├── SampleImages │ │ │ │ └── Mesh_Primitives_00.png │ │ │ └── Thumbnails │ │ │ │ └── Mesh_Primitives_00.png │ │ ├── Manifest.json │ │ ├── Mesh_Primitives_00.bin │ │ ├── Mesh_Primitives_00.gltf │ │ ├── README.md │ │ └── ValidatorResults │ │ │ └── Mesh_Primitives_00.json │ ├── Mesh_PrimitivesUV │ │ ├── Figures │ │ │ ├── Indices_Primitive0.png │ │ │ ├── Indices_Primitive1.png │ │ │ ├── SampleImages │ │ │ │ ├── Mesh_PrimitivesUV_00.png │ │ │ │ ├── Mesh_PrimitivesUV_01.png │ │ │ │ ├── Mesh_PrimitivesUV_02.png │ │ │ │ ├── Mesh_PrimitivesUV_03.png │ │ │ │ ├── Mesh_PrimitivesUV_04.png │ │ │ │ ├── Mesh_PrimitivesUV_05.png │ │ │ │ ├── Mesh_PrimitivesUV_06.png │ │ │ │ ├── Mesh_PrimitivesUV_07.png │ │ │ │ └── Mesh_PrimitivesUV_08.png │ │ │ ├── Thumbnails │ │ │ │ ├── BaseColor_Plane.png │ │ │ │ ├── Mesh_PrimitivesUV_00.png │ │ │ │ ├── Mesh_PrimitivesUV_01.png │ │ │ │ ├── Mesh_PrimitivesUV_02.png │ │ │ │ ├── Mesh_PrimitivesUV_03.png │ │ │ │ ├── Mesh_PrimitivesUV_04.png │ │ │ │ ├── Mesh_PrimitivesUV_05.png │ │ │ │ ├── Mesh_PrimitivesUV_06.png │ │ │ │ ├── Mesh_PrimitivesUV_07.png │ │ │ │ ├── Mesh_PrimitivesUV_08.png │ │ │ │ └── Normal_Plane.png │ │ │ ├── UVSpace2.png │ │ │ ├── UVSpace3.png │ │ │ ├── UVSpace4.png │ │ │ └── UVSpace5.png │ │ ├── Manifest.json │ │ ├── Mesh_PrimitivesUV_00.bin │ │ ├── Mesh_PrimitivesUV_00.gltf │ │ ├── Mesh_PrimitivesUV_01.bin │ │ ├── Mesh_PrimitivesUV_01.gltf │ │ ├── Mesh_PrimitivesUV_02.bin │ │ ├── Mesh_PrimitivesUV_02.gltf │ │ ├── Mesh_PrimitivesUV_03.bin │ │ ├── Mesh_PrimitivesUV_03.gltf │ │ ├── Mesh_PrimitivesUV_04.bin │ │ ├── Mesh_PrimitivesUV_04.gltf │ │ ├── Mesh_PrimitivesUV_05.bin │ │ ├── Mesh_PrimitivesUV_05.gltf │ │ ├── Mesh_PrimitivesUV_06.bin │ │ ├── Mesh_PrimitivesUV_06.gltf │ │ ├── Mesh_PrimitivesUV_07.bin │ │ ├── Mesh_PrimitivesUV_07.gltf │ │ ├── Mesh_PrimitivesUV_08.bin │ │ ├── Mesh_PrimitivesUV_08.gltf │ │ ├── README.md │ │ ├── Textures │ │ │ ├── BaseColor_Plane.png │ │ │ └── Normal_Plane.png │ │ └── ValidatorResults │ │ │ ├── Mesh_PrimitivesUV_00.json │ │ │ ├── Mesh_PrimitivesUV_01.json │ │ │ ├── Mesh_PrimitivesUV_02.json │ │ │ ├── Mesh_PrimitivesUV_03.json │ │ │ ├── Mesh_PrimitivesUV_04.json │ │ │ ├── Mesh_PrimitivesUV_05.json │ │ │ ├── Mesh_PrimitivesUV_06.json │ │ │ ├── Mesh_PrimitivesUV_07.json │ │ │ └── Mesh_PrimitivesUV_08.json │ ├── Node_Attribute │ │ ├── Figures │ │ │ ├── SampleImages │ │ │ │ ├── Node_Attribute_00.png │ │ │ │ ├── Node_Attribute_01.png │ │ │ │ ├── Node_Attribute_02.png │ │ │ │ ├── Node_Attribute_03.png │ │ │ │ ├── Node_Attribute_04.png │ │ │ │ ├── Node_Attribute_05.png │ │ │ │ ├── Node_Attribute_06.png │ │ │ │ ├── Node_Attribute_07.png │ │ │ │ └── Node_Attribute_08.png │ │ │ └── Thumbnails │ │ │ │ ├── BaseColor_Nodes.png │ │ │ │ ├── MetallicRoughness_Nodes.png │ │ │ │ ├── Node_Attribute_00.png │ │ │ │ ├── Node_Attribute_01.png │ │ │ │ ├── Node_Attribute_02.png │ │ │ │ ├── Node_Attribute_03.png │ │ │ │ ├── Node_Attribute_04.png │ │ │ │ ├── Node_Attribute_05.png │ │ │ │ ├── Node_Attribute_06.png │ │ │ │ ├── Node_Attribute_07.png │ │ │ │ ├── Node_Attribute_08.png │ │ │ │ └── Normal_Nodes.png │ │ ├── Manifest.json │ │ ├── Node_Attribute_00.bin │ │ ├── Node_Attribute_00.gltf │ │ ├── Node_Attribute_01.bin │ │ ├── Node_Attribute_01.gltf │ │ ├── Node_Attribute_02.bin │ │ ├── Node_Attribute_02.gltf │ │ ├── Node_Attribute_03.bin │ │ ├── Node_Attribute_03.gltf │ │ ├── Node_Attribute_04.bin │ │ ├── Node_Attribute_04.gltf │ │ ├── Node_Attribute_05.bin │ │ ├── Node_Attribute_05.gltf │ │ ├── Node_Attribute_06.bin │ │ ├── Node_Attribute_06.gltf │ │ ├── Node_Attribute_07.bin │ │ ├── Node_Attribute_07.gltf │ │ ├── Node_Attribute_08.bin │ │ ├── Node_Attribute_08.gltf │ │ ├── README.md │ │ ├── Textures │ │ │ ├── BaseColor_Nodes.png │ │ │ ├── MetallicRoughness_Nodes.png │ │ │ └── Normal_Nodes.png │ │ └── ValidatorResults │ │ │ ├── Node_Attribute_00.json │ │ │ ├── Node_Attribute_01.json │ │ │ ├── Node_Attribute_02.json │ │ │ ├── Node_Attribute_03.json │ │ │ ├── Node_Attribute_04.json │ │ │ ├── Node_Attribute_05.json │ │ │ ├── Node_Attribute_06.json │ │ │ ├── Node_Attribute_07.json │ │ │ └── Node_Attribute_08.json │ ├── Node_NegativeScale │ │ ├── Figures │ │ │ ├── SampleImages │ │ │ │ ├── Node_NegativeScale_00.png │ │ │ │ ├── Node_NegativeScale_01.png │ │ │ │ ├── Node_NegativeScale_02.png │ │ │ │ ├── Node_NegativeScale_03.png │ │ │ │ ├── Node_NegativeScale_04.png │ │ │ │ ├── Node_NegativeScale_05.png │ │ │ │ ├── Node_NegativeScale_06.png │ │ │ │ ├── Node_NegativeScale_07.png │ │ │ │ ├── Node_NegativeScale_08.png │ │ │ │ ├── Node_NegativeScale_09.png │ │ │ │ ├── Node_NegativeScale_10.png │ │ │ │ ├── Node_NegativeScale_11.png │ │ │ │ └── Node_NegativeScale_12.png │ │ │ └── Thumbnails │ │ │ │ ├── BaseColor_Nodes.png │ │ │ │ ├── MetallicRoughness_Nodes.png │ │ │ │ ├── Node_NegativeScale_00.png │ │ │ │ ├── Node_NegativeScale_01.png │ │ │ │ ├── Node_NegativeScale_02.png │ │ │ │ ├── Node_NegativeScale_03.png │ │ │ │ ├── Node_NegativeScale_04.png │ │ │ │ ├── Node_NegativeScale_05.png │ │ │ │ ├── Node_NegativeScale_06.png │ │ │ │ ├── Node_NegativeScale_07.png │ │ │ │ ├── Node_NegativeScale_08.png │ │ │ │ ├── Node_NegativeScale_09.png │ │ │ │ ├── Node_NegativeScale_10.png │ │ │ │ ├── Node_NegativeScale_11.png │ │ │ │ ├── Node_NegativeScale_12.png │ │ │ │ └── Normal_Nodes.png │ │ ├── Manifest.json │ │ ├── Node_NegativeScale_00.bin │ │ ├── Node_NegativeScale_00.gltf │ │ ├── Node_NegativeScale_01.bin │ │ ├── Node_NegativeScale_01.gltf │ │ ├── Node_NegativeScale_02.bin │ │ ├── Node_NegativeScale_02.gltf │ │ ├── Node_NegativeScale_03.bin │ │ ├── Node_NegativeScale_03.gltf │ │ ├── Node_NegativeScale_04.bin │ │ ├── Node_NegativeScale_04.gltf │ │ ├── Node_NegativeScale_05.bin │ │ ├── Node_NegativeScale_05.gltf │ │ ├── Node_NegativeScale_06.bin │ │ ├── Node_NegativeScale_06.gltf │ │ ├── Node_NegativeScale_07.bin │ │ ├── Node_NegativeScale_07.gltf │ │ ├── Node_NegativeScale_08.bin │ │ ├── Node_NegativeScale_08.gltf │ │ ├── Node_NegativeScale_09.bin │ │ ├── Node_NegativeScale_09.gltf │ │ ├── Node_NegativeScale_10.bin │ │ ├── Node_NegativeScale_10.gltf │ │ ├── Node_NegativeScale_11.bin │ │ ├── Node_NegativeScale_11.gltf │ │ ├── Node_NegativeScale_12.bin │ │ ├── Node_NegativeScale_12.gltf │ │ ├── README.md │ │ ├── Textures │ │ │ ├── BaseColor_Nodes.png │ │ │ ├── MetallicRoughness_Nodes.png │ │ │ └── Normal_Nodes.png │ │ └── ValidatorResults │ │ │ ├── Node_NegativeScale_00.json │ │ │ ├── Node_NegativeScale_01.json │ │ │ ├── Node_NegativeScale_02.json │ │ │ ├── Node_NegativeScale_03.json │ │ │ ├── Node_NegativeScale_04.json │ │ │ ├── Node_NegativeScale_05.json │ │ │ ├── Node_NegativeScale_06.json │ │ │ ├── Node_NegativeScale_07.json │ │ │ ├── Node_NegativeScale_08.json │ │ │ ├── Node_NegativeScale_09.json │ │ │ ├── Node_NegativeScale_10.json │ │ │ ├── Node_NegativeScale_11.json │ │ │ └── Node_NegativeScale_12.json │ ├── README.md │ └── Texture_Sampler │ │ ├── Figures │ │ ├── SampleImages │ │ │ ├── Texture_Sampler_00.png │ │ │ ├── Texture_Sampler_01.png │ │ │ ├── Texture_Sampler_02.png │ │ │ ├── Texture_Sampler_03.png │ │ │ ├── Texture_Sampler_04.png │ │ │ ├── Texture_Sampler_05.png │ │ │ ├── Texture_Sampler_06.png │ │ │ ├── Texture_Sampler_07.png │ │ │ ├── Texture_Sampler_08.png │ │ │ ├── Texture_Sampler_09.png │ │ │ ├── Texture_Sampler_10.png │ │ │ ├── Texture_Sampler_11.png │ │ │ ├── Texture_Sampler_12.png │ │ │ └── Texture_Sampler_13.png │ │ └── Thumbnails │ │ │ ├── BaseColor_Plane.png │ │ │ ├── Texture_Sampler_00.png │ │ │ ├── Texture_Sampler_01.png │ │ │ ├── Texture_Sampler_02.png │ │ │ ├── Texture_Sampler_03.png │ │ │ ├── Texture_Sampler_04.png │ │ │ ├── Texture_Sampler_05.png │ │ │ ├── Texture_Sampler_06.png │ │ │ ├── Texture_Sampler_07.png │ │ │ ├── Texture_Sampler_08.png │ │ │ ├── Texture_Sampler_09.png │ │ │ ├── Texture_Sampler_10.png │ │ │ ├── Texture_Sampler_11.png │ │ │ ├── Texture_Sampler_12.png │ │ │ └── Texture_Sampler_13.png │ │ ├── Manifest.json │ │ ├── README.md │ │ ├── Texture_Sampler_00.bin │ │ ├── Texture_Sampler_00.gltf │ │ ├── Texture_Sampler_01.bin │ │ ├── Texture_Sampler_01.gltf │ │ ├── Texture_Sampler_02.bin │ │ ├── Texture_Sampler_02.gltf │ │ ├── Texture_Sampler_03.bin │ │ ├── Texture_Sampler_03.gltf │ │ ├── Texture_Sampler_04.bin │ │ ├── Texture_Sampler_04.gltf │ │ ├── Texture_Sampler_05.bin │ │ ├── Texture_Sampler_05.gltf │ │ ├── Texture_Sampler_06.bin │ │ ├── Texture_Sampler_06.gltf │ │ ├── Texture_Sampler_07.bin │ │ ├── Texture_Sampler_07.gltf │ │ ├── Texture_Sampler_08.bin │ │ ├── Texture_Sampler_08.gltf │ │ ├── Texture_Sampler_09.bin │ │ ├── Texture_Sampler_09.gltf │ │ ├── Texture_Sampler_10.bin │ │ ├── Texture_Sampler_10.gltf │ │ ├── Texture_Sampler_11.bin │ │ ├── Texture_Sampler_11.gltf │ │ ├── Texture_Sampler_12.bin │ │ ├── Texture_Sampler_12.gltf │ │ ├── Texture_Sampler_13.bin │ │ ├── Texture_Sampler_13.gltf │ │ ├── Textures │ │ └── BaseColor_Plane.png │ │ └── ValidatorResults │ │ ├── Texture_Sampler_00.json │ │ ├── Texture_Sampler_01.json │ │ ├── Texture_Sampler_02.json │ │ ├── Texture_Sampler_03.json │ │ ├── Texture_Sampler_04.json │ │ ├── Texture_Sampler_05.json │ │ ├── Texture_Sampler_06.json │ │ ├── Texture_Sampler_07.json │ │ ├── Texture_Sampler_08.json │ │ ├── Texture_Sampler_09.json │ │ ├── Texture_Sampler_10.json │ │ ├── Texture_Sampler_11.json │ │ ├── Texture_Sampler_12.json │ │ └── Texture_Sampler_13.json └── README.md ├── README.md ├── Source ├── App.config ├── AssetGenerator.csproj ├── AssetGenerator.sln ├── Converter │ ├── BinaryData.cs │ ├── Converter.cs │ ├── DataConverter.cs │ └── NumericsExtensions.cs ├── FileHelper.cs ├── FloatMath.cs ├── Manifest.cs ├── ModelGroup.cs ├── ModelGroup_Cube.cs ├── ModelGroup_MultiNode.cs ├── ModelGroup_Prism.cs ├── ModelGroup_SkinB.cs ├── ModelGroup_SkinBuilder.cs ├── ModelGroup_SkinE.cs ├── ModelGroup_Triangle.cs ├── ModelGroups │ ├── Animation_Node.cs │ ├── Animation_NodeMisc.cs │ ├── Animation_SamplerType.cs │ ├── Animation_Skin.cs │ ├── Animation_SkinType.cs │ ├── Buffer_Interleaved.cs │ ├── Compatibility.cs │ ├── Example.cs │ ├── Instancing.cs │ ├── Material.cs │ ├── Material_AlphaBlend.cs │ ├── Material_AlphaMask.cs │ ├── Material_DoubleSided.cs │ ├── Material_MetallicRoughness.cs │ ├── Material_Mixed.cs │ ├── Material_SpecularGlossiness.cs │ ├── Mesh_NoPosition.cs │ ├── Mesh_PrimitiveAttribute.cs │ ├── Mesh_PrimitiveMode.cs │ ├── Mesh_PrimitiveRestart.cs │ ├── Mesh_PrimitiveVertexColor.cs │ ├── Mesh_Primitives.cs │ ├── Mesh_PrimitivesUV.cs │ ├── Node_Attribute.cs │ ├── Node_NegativeScale.cs │ └── Texture_Sampler.cs ├── Program.cs ├── Property.cs ├── ReadmeBuilder.cs ├── ReadmeExtensionMethods.cs ├── ReadmeTemplates │ ├── Animation_Node.md │ ├── Animation_NodeMisc.md │ ├── Animation_SamplerType.md │ ├── Animation_Skin.md │ ├── Animation_SkinType.md │ ├── Buffer_Interleaved.md │ ├── Compatibility.md │ ├── Instancing.md │ ├── Material.md │ ├── Material_AlphaBlend.md │ ├── Material_AlphaMask.md │ ├── Material_DoubleSided.md │ ├── Material_MetallicRoughness.md │ ├── Material_Mixed.md │ ├── Material_SpecularGlossiness.md │ ├── Mesh_NoPosition.md │ ├── Mesh_PrimitiveAttribute.md │ ├── Mesh_PrimitiveMode.md │ ├── Mesh_PrimitiveRestart.md │ ├── Mesh_PrimitiveVertexColor.md │ ├── Mesh_Primitives.md │ ├── Mesh_PrimitivesUV.md │ ├── Node_Attribute.md │ ├── Node_NegativeScale.md │ ├── Page_Main.md │ ├── Page_Output.md │ └── Texture_Sampler.md ├── Resources │ ├── Figures │ │ ├── CodeFlowchart.png │ │ ├── Indices.png │ │ ├── Indices_Points.png │ │ ├── Indices_Primitive0.png │ │ ├── Indices_Primitive1.png │ │ ├── NYI.png │ │ ├── SampleImages │ │ │ └── Animation_Skin_12.png │ │ ├── Thumbnails │ │ │ ├── Animation_Skin_12.png │ │ │ ├── BaseColor_A.png │ │ │ ├── BaseColor_B.png │ │ │ ├── BaseColor_Cube.png │ │ │ ├── BaseColor_Grey.png │ │ │ ├── BaseColor_Nodes.png │ │ │ ├── BaseColor_Plane.png │ │ │ ├── BaseColor_X.png │ │ │ ├── Diffuse_Plane.png │ │ │ ├── Emissive_Plane.png │ │ │ ├── MetallicRoughness_Nodes.png │ │ │ ├── MetallicRoughness_Plane.png │ │ │ ├── NYI.png │ │ │ ├── Normal_Nodes.png │ │ │ ├── Normal_Plane.png │ │ │ ├── Occlusion_Plane.png │ │ │ └── SpecularGlossiness_Plane.png │ │ ├── UVSpace0.png │ │ ├── UVSpace1.png │ │ ├── UVSpace2.png │ │ ├── UVSpace3.png │ │ ├── UVSpace4.png │ │ ├── UVSpace5.png │ │ ├── skinA.png │ │ ├── skinB.png │ │ ├── skinC.png │ │ ├── skinD.png │ │ ├── skinE.png │ │ └── skinF.png │ ├── Sources │ │ ├── CodeFlowchart.xml │ │ ├── Indices.xml │ │ ├── Skins.xml │ │ └── UVSpace.xml │ └── Textures │ │ ├── BaseColor_A.png │ │ ├── BaseColor_B.png │ │ ├── BaseColor_Cube.png │ │ ├── BaseColor_Grey.png │ │ ├── BaseColor_Nodes.png │ │ ├── BaseColor_Plane.png │ │ ├── BaseColor_X.png │ │ ├── Diffuse_Plane.png │ │ ├── Emissive_Plane.png │ │ ├── MetallicRoughness_Nodes.png │ │ ├── MetallicRoughness_Plane.png │ │ ├── Normal_Nodes.png │ │ ├── Normal_Plane.png │ │ ├── Occlusion_Plane.png │ │ └── SpecularGlossiness_Plane.png ├── Runtime │ ├── Animation.cs │ ├── AnimationChannel.cs │ ├── AnimationChannelTarget.cs │ ├── AnimationSampler.cs │ ├── Asset.cs │ ├── Data.cs │ ├── Extensions │ │ ├── Extension.cs │ │ ├── FAKE_materials_quantumRendering.cs │ │ └── KHR_materials_pbrSpecularGlossiness.cs │ ├── GLTF.cs │ ├── Image.cs │ ├── Material.cs │ ├── Mesh.cs │ ├── MeshPrimitive.cs │ ├── Node.cs │ ├── PbrMetallicRoughness.cs │ ├── Sampler.cs │ ├── Scene.cs │ ├── Skin.cs │ ├── Texture.cs │ └── TextureInfo.cs ├── Schema │ ├── FAKE_materials_quantumRendering.cs │ └── KHR_materials_pbrSpecularGlossiness.cs └── Vector3ToFloatArrayJsonConverter.cs └── Tools ├── generateScreenshots.js ├── package-lock.json ├── package.json └── validate.js /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /Output/Negative/Mesh_NoPosition/Mesh_NoPosition_00.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Negative/Mesh_NoPosition/Mesh_NoPosition_00.bin -------------------------------------------------------------------------------- /Output/Negative/Mesh_NoPosition/Mesh_NoPosition_01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Negative/Mesh_NoPosition/Mesh_NoPosition_01.bin -------------------------------------------------------------------------------- /Output/Negative/Mesh_PrimitiveRestart/Mesh_PrimitiveRestart_00.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Negative/Mesh_PrimitiveRestart/Mesh_PrimitiveRestart_00.bin -------------------------------------------------------------------------------- /Output/Negative/Mesh_PrimitiveRestart/Mesh_PrimitiveRestart_01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Negative/Mesh_PrimitiveRestart/Mesh_PrimitiveRestart_01.bin -------------------------------------------------------------------------------- /Output/Negative/Mesh_PrimitiveRestart/Mesh_PrimitiveRestart_02.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Negative/Mesh_PrimitiveRestart/Mesh_PrimitiveRestart_02.bin -------------------------------------------------------------------------------- /Output/Negative/Mesh_PrimitiveRestart/Mesh_PrimitiveRestart_03.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Negative/Mesh_PrimitiveRestart/Mesh_PrimitiveRestart_03.bin -------------------------------------------------------------------------------- /Output/Negative/Mesh_PrimitiveRestart/Mesh_PrimitiveRestart_04.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Negative/Mesh_PrimitiveRestart/Mesh_PrimitiveRestart_04.bin -------------------------------------------------------------------------------- /Output/Negative/Mesh_PrimitiveRestart/Mesh_PrimitiveRestart_05.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Negative/Mesh_PrimitiveRestart/Mesh_PrimitiveRestart_05.bin -------------------------------------------------------------------------------- /Output/Negative/Mesh_PrimitiveRestart/Mesh_PrimitiveRestart_06.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Negative/Mesh_PrimitiveRestart/Mesh_PrimitiveRestart_06.bin -------------------------------------------------------------------------------- /Output/Negative/Mesh_PrimitiveRestart/Mesh_PrimitiveRestart_07.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Negative/Mesh_PrimitiveRestart/Mesh_PrimitiveRestart_07.bin -------------------------------------------------------------------------------- /Output/Negative/Mesh_PrimitiveRestart/Mesh_PrimitiveRestart_08.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Negative/Mesh_PrimitiveRestart/Mesh_PrimitiveRestart_08.bin -------------------------------------------------------------------------------- /Output/Negative/Mesh_PrimitiveRestart/Mesh_PrimitiveRestart_09.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Negative/Mesh_PrimitiveRestart/Mesh_PrimitiveRestart_09.bin -------------------------------------------------------------------------------- /Output/Negative/Mesh_PrimitiveRestart/Mesh_PrimitiveRestart_10.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Negative/Mesh_PrimitiveRestart/Mesh_PrimitiveRestart_10.bin -------------------------------------------------------------------------------- /Output/Negative/Mesh_PrimitiveRestart/Mesh_PrimitiveRestart_11.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Negative/Mesh_PrimitiveRestart/Mesh_PrimitiveRestart_11.bin -------------------------------------------------------------------------------- /Output/Negative/Mesh_PrimitiveRestart/Mesh_PrimitiveRestart_12.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Negative/Mesh_PrimitiveRestart/Mesh_PrimitiveRestart_12.bin -------------------------------------------------------------------------------- /Output/Negative/Mesh_PrimitiveRestart/Mesh_PrimitiveRestart_13.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Negative/Mesh_PrimitiveRestart/Mesh_PrimitiveRestart_13.bin -------------------------------------------------------------------------------- /Output/Positive/Animation_Node/Animation_Node_00.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_Node/Animation_Node_00.bin -------------------------------------------------------------------------------- /Output/Positive/Animation_Node/Animation_Node_01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_Node/Animation_Node_01.bin -------------------------------------------------------------------------------- /Output/Positive/Animation_Node/Animation_Node_02.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_Node/Animation_Node_02.bin -------------------------------------------------------------------------------- /Output/Positive/Animation_Node/Animation_Node_03.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_Node/Animation_Node_03.bin -------------------------------------------------------------------------------- /Output/Positive/Animation_Node/Animation_Node_04.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_Node/Animation_Node_04.bin -------------------------------------------------------------------------------- /Output/Positive/Animation_Node/Animation_Node_05.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_Node/Animation_Node_05.bin -------------------------------------------------------------------------------- /Output/Positive/Animation_Node/Figures/SampleImages/Animation_Node_00.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_Node/Figures/SampleImages/Animation_Node_00.gif -------------------------------------------------------------------------------- /Output/Positive/Animation_Node/Figures/SampleImages/Animation_Node_01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_Node/Figures/SampleImages/Animation_Node_01.gif -------------------------------------------------------------------------------- /Output/Positive/Animation_Node/Figures/SampleImages/Animation_Node_02.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_Node/Figures/SampleImages/Animation_Node_02.gif -------------------------------------------------------------------------------- /Output/Positive/Animation_Node/Figures/SampleImages/Animation_Node_03.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_Node/Figures/SampleImages/Animation_Node_03.gif -------------------------------------------------------------------------------- /Output/Positive/Animation_Node/Figures/SampleImages/Animation_Node_04.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_Node/Figures/SampleImages/Animation_Node_04.gif -------------------------------------------------------------------------------- /Output/Positive/Animation_Node/Figures/SampleImages/Animation_Node_05.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_Node/Figures/SampleImages/Animation_Node_05.gif -------------------------------------------------------------------------------- /Output/Positive/Animation_Node/Figures/Thumbnails/Animation_Node_00.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_Node/Figures/Thumbnails/Animation_Node_00.gif -------------------------------------------------------------------------------- /Output/Positive/Animation_Node/Figures/Thumbnails/Animation_Node_01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_Node/Figures/Thumbnails/Animation_Node_01.gif -------------------------------------------------------------------------------- /Output/Positive/Animation_Node/Figures/Thumbnails/Animation_Node_02.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_Node/Figures/Thumbnails/Animation_Node_02.gif -------------------------------------------------------------------------------- /Output/Positive/Animation_Node/Figures/Thumbnails/Animation_Node_03.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_Node/Figures/Thumbnails/Animation_Node_03.gif -------------------------------------------------------------------------------- /Output/Positive/Animation_Node/Figures/Thumbnails/Animation_Node_04.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_Node/Figures/Thumbnails/Animation_Node_04.gif -------------------------------------------------------------------------------- /Output/Positive/Animation_Node/Figures/Thumbnails/Animation_Node_05.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_Node/Figures/Thumbnails/Animation_Node_05.gif -------------------------------------------------------------------------------- /Output/Positive/Animation_Node/Figures/Thumbnails/BaseColor_Cube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_Node/Figures/Thumbnails/BaseColor_Cube.png -------------------------------------------------------------------------------- /Output/Positive/Animation_Node/Textures/BaseColor_Cube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_Node/Textures/BaseColor_Cube.png -------------------------------------------------------------------------------- /Output/Positive/Animation_NodeMisc/Animation_NodeMisc_00.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_NodeMisc/Animation_NodeMisc_00.bin -------------------------------------------------------------------------------- /Output/Positive/Animation_NodeMisc/Animation_NodeMisc_01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_NodeMisc/Animation_NodeMisc_01.bin -------------------------------------------------------------------------------- /Output/Positive/Animation_NodeMisc/Animation_NodeMisc_02.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_NodeMisc/Animation_NodeMisc_02.bin -------------------------------------------------------------------------------- /Output/Positive/Animation_NodeMisc/Animation_NodeMisc_03.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_NodeMisc/Animation_NodeMisc_03.bin -------------------------------------------------------------------------------- /Output/Positive/Animation_NodeMisc/Animation_NodeMisc_04.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_NodeMisc/Animation_NodeMisc_04.bin -------------------------------------------------------------------------------- /Output/Positive/Animation_NodeMisc/Animation_NodeMisc_05.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_NodeMisc/Animation_NodeMisc_05.bin -------------------------------------------------------------------------------- /Output/Positive/Animation_NodeMisc/Animation_NodeMisc_06.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_NodeMisc/Animation_NodeMisc_06.bin -------------------------------------------------------------------------------- /Output/Positive/Animation_NodeMisc/Animation_NodeMisc_07.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_NodeMisc/Animation_NodeMisc_07.bin -------------------------------------------------------------------------------- /Output/Positive/Animation_NodeMisc/Animation_NodeMisc_08.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_NodeMisc/Animation_NodeMisc_08.bin -------------------------------------------------------------------------------- /Output/Positive/Animation_NodeMisc/Figures/SampleImages/Animation_NodeMisc_00.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_NodeMisc/Figures/SampleImages/Animation_NodeMisc_00.gif -------------------------------------------------------------------------------- /Output/Positive/Animation_NodeMisc/Figures/SampleImages/Animation_NodeMisc_01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_NodeMisc/Figures/SampleImages/Animation_NodeMisc_01.gif -------------------------------------------------------------------------------- /Output/Positive/Animation_NodeMisc/Figures/SampleImages/Animation_NodeMisc_02.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_NodeMisc/Figures/SampleImages/Animation_NodeMisc_02.gif -------------------------------------------------------------------------------- /Output/Positive/Animation_NodeMisc/Figures/SampleImages/Animation_NodeMisc_03.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_NodeMisc/Figures/SampleImages/Animation_NodeMisc_03.gif -------------------------------------------------------------------------------- /Output/Positive/Animation_NodeMisc/Figures/SampleImages/Animation_NodeMisc_04.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_NodeMisc/Figures/SampleImages/Animation_NodeMisc_04.gif -------------------------------------------------------------------------------- /Output/Positive/Animation_NodeMisc/Figures/SampleImages/Animation_NodeMisc_05.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_NodeMisc/Figures/SampleImages/Animation_NodeMisc_05.gif -------------------------------------------------------------------------------- /Output/Positive/Animation_NodeMisc/Figures/SampleImages/Animation_NodeMisc_06.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_NodeMisc/Figures/SampleImages/Animation_NodeMisc_06.gif -------------------------------------------------------------------------------- /Output/Positive/Animation_NodeMisc/Figures/SampleImages/Animation_NodeMisc_07.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_NodeMisc/Figures/SampleImages/Animation_NodeMisc_07.gif -------------------------------------------------------------------------------- /Output/Positive/Animation_NodeMisc/Figures/SampleImages/Animation_NodeMisc_08.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_NodeMisc/Figures/SampleImages/Animation_NodeMisc_08.gif -------------------------------------------------------------------------------- /Output/Positive/Animation_NodeMisc/Figures/Thumbnails/Animation_NodeMisc_00.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_NodeMisc/Figures/Thumbnails/Animation_NodeMisc_00.gif -------------------------------------------------------------------------------- /Output/Positive/Animation_NodeMisc/Figures/Thumbnails/Animation_NodeMisc_01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_NodeMisc/Figures/Thumbnails/Animation_NodeMisc_01.gif -------------------------------------------------------------------------------- /Output/Positive/Animation_NodeMisc/Figures/Thumbnails/Animation_NodeMisc_02.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_NodeMisc/Figures/Thumbnails/Animation_NodeMisc_02.gif -------------------------------------------------------------------------------- /Output/Positive/Animation_NodeMisc/Figures/Thumbnails/Animation_NodeMisc_03.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_NodeMisc/Figures/Thumbnails/Animation_NodeMisc_03.gif -------------------------------------------------------------------------------- /Output/Positive/Animation_NodeMisc/Figures/Thumbnails/Animation_NodeMisc_04.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_NodeMisc/Figures/Thumbnails/Animation_NodeMisc_04.gif -------------------------------------------------------------------------------- /Output/Positive/Animation_NodeMisc/Figures/Thumbnails/Animation_NodeMisc_05.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_NodeMisc/Figures/Thumbnails/Animation_NodeMisc_05.gif -------------------------------------------------------------------------------- /Output/Positive/Animation_NodeMisc/Figures/Thumbnails/Animation_NodeMisc_06.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_NodeMisc/Figures/Thumbnails/Animation_NodeMisc_06.gif -------------------------------------------------------------------------------- /Output/Positive/Animation_NodeMisc/Figures/Thumbnails/Animation_NodeMisc_07.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_NodeMisc/Figures/Thumbnails/Animation_NodeMisc_07.gif -------------------------------------------------------------------------------- /Output/Positive/Animation_NodeMisc/Figures/Thumbnails/Animation_NodeMisc_08.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_NodeMisc/Figures/Thumbnails/Animation_NodeMisc_08.gif -------------------------------------------------------------------------------- /Output/Positive/Animation_NodeMisc/Figures/Thumbnails/BaseColor_Cube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_NodeMisc/Figures/Thumbnails/BaseColor_Cube.png -------------------------------------------------------------------------------- /Output/Positive/Animation_NodeMisc/Textures/BaseColor_Cube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_NodeMisc/Textures/BaseColor_Cube.png -------------------------------------------------------------------------------- /Output/Positive/Animation_SamplerType/Animation_SamplerType_00.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_SamplerType/Animation_SamplerType_00.bin -------------------------------------------------------------------------------- /Output/Positive/Animation_SamplerType/Animation_SamplerType_01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_SamplerType/Animation_SamplerType_01.bin -------------------------------------------------------------------------------- /Output/Positive/Animation_SamplerType/Animation_SamplerType_02.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_SamplerType/Animation_SamplerType_02.bin -------------------------------------------------------------------------------- /Output/Positive/Animation_SamplerType/Figures/Thumbnails/BaseColor_Cube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_SamplerType/Figures/Thumbnails/BaseColor_Cube.png -------------------------------------------------------------------------------- /Output/Positive/Animation_SamplerType/Textures/BaseColor_Cube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_SamplerType/Textures/BaseColor_Cube.png -------------------------------------------------------------------------------- /Output/Positive/Animation_Skin/Animation_Skin_00.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_Skin/Animation_Skin_00.bin -------------------------------------------------------------------------------- /Output/Positive/Animation_Skin/Animation_Skin_01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_Skin/Animation_Skin_01.bin -------------------------------------------------------------------------------- /Output/Positive/Animation_Skin/Animation_Skin_02.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_Skin/Animation_Skin_02.bin -------------------------------------------------------------------------------- /Output/Positive/Animation_Skin/Animation_Skin_03.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_Skin/Animation_Skin_03.bin -------------------------------------------------------------------------------- /Output/Positive/Animation_Skin/Animation_Skin_04.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_Skin/Animation_Skin_04.bin -------------------------------------------------------------------------------- /Output/Positive/Animation_Skin/Animation_Skin_05.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_Skin/Animation_Skin_05.bin -------------------------------------------------------------------------------- /Output/Positive/Animation_Skin/Animation_Skin_06.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_Skin/Animation_Skin_06.bin -------------------------------------------------------------------------------- /Output/Positive/Animation_Skin/Animation_Skin_07.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_Skin/Animation_Skin_07.bin -------------------------------------------------------------------------------- /Output/Positive/Animation_Skin/Animation_Skin_08.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_Skin/Animation_Skin_08.bin -------------------------------------------------------------------------------- /Output/Positive/Animation_Skin/Animation_Skin_09.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_Skin/Animation_Skin_09.bin -------------------------------------------------------------------------------- /Output/Positive/Animation_Skin/Animation_Skin_10.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_Skin/Animation_Skin_10.bin -------------------------------------------------------------------------------- /Output/Positive/Animation_Skin/Animation_Skin_11.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_Skin/Animation_Skin_11.bin -------------------------------------------------------------------------------- /Output/Positive/Animation_Skin/Figures/SampleImages/Animation_Skin_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_Skin/Figures/SampleImages/Animation_Skin_00.png -------------------------------------------------------------------------------- /Output/Positive/Animation_Skin/Figures/SampleImages/Animation_Skin_01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_Skin/Figures/SampleImages/Animation_Skin_01.gif -------------------------------------------------------------------------------- /Output/Positive/Animation_Skin/Figures/SampleImages/Animation_Skin_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_Skin/Figures/SampleImages/Animation_Skin_02.png -------------------------------------------------------------------------------- /Output/Positive/Animation_Skin/Figures/SampleImages/Animation_Skin_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_Skin/Figures/SampleImages/Animation_Skin_03.png -------------------------------------------------------------------------------- /Output/Positive/Animation_Skin/Figures/SampleImages/Animation_Skin_04.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_Skin/Figures/SampleImages/Animation_Skin_04.gif -------------------------------------------------------------------------------- /Output/Positive/Animation_Skin/Figures/SampleImages/Animation_Skin_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_Skin/Figures/SampleImages/Animation_Skin_05.png -------------------------------------------------------------------------------- /Output/Positive/Animation_Skin/Figures/SampleImages/Animation_Skin_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_Skin/Figures/SampleImages/Animation_Skin_06.png -------------------------------------------------------------------------------- /Output/Positive/Animation_Skin/Figures/SampleImages/Animation_Skin_07.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_Skin/Figures/SampleImages/Animation_Skin_07.gif -------------------------------------------------------------------------------- /Output/Positive/Animation_Skin/Figures/SampleImages/Animation_Skin_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_Skin/Figures/SampleImages/Animation_Skin_08.png -------------------------------------------------------------------------------- /Output/Positive/Animation_Skin/Figures/SampleImages/Animation_Skin_09.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_Skin/Figures/SampleImages/Animation_Skin_09.gif -------------------------------------------------------------------------------- /Output/Positive/Animation_Skin/Figures/SampleImages/Animation_Skin_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_Skin/Figures/SampleImages/Animation_Skin_10.png -------------------------------------------------------------------------------- /Output/Positive/Animation_Skin/Figures/SampleImages/Animation_Skin_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_Skin/Figures/SampleImages/Animation_Skin_11.png -------------------------------------------------------------------------------- /Output/Positive/Animation_Skin/Figures/Thumbnails/Animation_Skin_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_Skin/Figures/Thumbnails/Animation_Skin_00.png -------------------------------------------------------------------------------- /Output/Positive/Animation_Skin/Figures/Thumbnails/Animation_Skin_01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_Skin/Figures/Thumbnails/Animation_Skin_01.gif -------------------------------------------------------------------------------- /Output/Positive/Animation_Skin/Figures/Thumbnails/Animation_Skin_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_Skin/Figures/Thumbnails/Animation_Skin_02.png -------------------------------------------------------------------------------- /Output/Positive/Animation_Skin/Figures/Thumbnails/Animation_Skin_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_Skin/Figures/Thumbnails/Animation_Skin_03.png -------------------------------------------------------------------------------- /Output/Positive/Animation_Skin/Figures/Thumbnails/Animation_Skin_04.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_Skin/Figures/Thumbnails/Animation_Skin_04.gif -------------------------------------------------------------------------------- /Output/Positive/Animation_Skin/Figures/Thumbnails/Animation_Skin_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_Skin/Figures/Thumbnails/Animation_Skin_05.png -------------------------------------------------------------------------------- /Output/Positive/Animation_Skin/Figures/Thumbnails/Animation_Skin_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_Skin/Figures/Thumbnails/Animation_Skin_06.png -------------------------------------------------------------------------------- /Output/Positive/Animation_Skin/Figures/Thumbnails/Animation_Skin_07.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_Skin/Figures/Thumbnails/Animation_Skin_07.gif -------------------------------------------------------------------------------- /Output/Positive/Animation_Skin/Figures/Thumbnails/Animation_Skin_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_Skin/Figures/Thumbnails/Animation_Skin_08.png -------------------------------------------------------------------------------- /Output/Positive/Animation_Skin/Figures/Thumbnails/Animation_Skin_09.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_Skin/Figures/Thumbnails/Animation_Skin_09.gif -------------------------------------------------------------------------------- /Output/Positive/Animation_Skin/Figures/Thumbnails/Animation_Skin_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_Skin/Figures/Thumbnails/Animation_Skin_10.png -------------------------------------------------------------------------------- /Output/Positive/Animation_Skin/Figures/Thumbnails/Animation_Skin_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_Skin/Figures/Thumbnails/Animation_Skin_11.png -------------------------------------------------------------------------------- /Output/Positive/Animation_Skin/Figures/skinA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_Skin/Figures/skinA.png -------------------------------------------------------------------------------- /Output/Positive/Animation_Skin/Figures/skinB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_Skin/Figures/skinB.png -------------------------------------------------------------------------------- /Output/Positive/Animation_Skin/Figures/skinC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_Skin/Figures/skinC.png -------------------------------------------------------------------------------- /Output/Positive/Animation_Skin/Figures/skinD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_Skin/Figures/skinD.png -------------------------------------------------------------------------------- /Output/Positive/Animation_Skin/Figures/skinE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_Skin/Figures/skinE.png -------------------------------------------------------------------------------- /Output/Positive/Animation_Skin/Figures/skinF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_Skin/Figures/skinF.png -------------------------------------------------------------------------------- /Output/Positive/Animation_SkinType/Animation_SkinType_00.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_SkinType/Animation_SkinType_00.bin -------------------------------------------------------------------------------- /Output/Positive/Animation_SkinType/Animation_SkinType_01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_SkinType/Animation_SkinType_01.bin -------------------------------------------------------------------------------- /Output/Positive/Animation_SkinType/Animation_SkinType_02.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_SkinType/Animation_SkinType_02.bin -------------------------------------------------------------------------------- /Output/Positive/Animation_SkinType/Animation_SkinType_03.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_SkinType/Animation_SkinType_03.bin -------------------------------------------------------------------------------- /Output/Positive/Animation_SkinType/Figures/SampleImages/Animation_SkinType_00.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_SkinType/Figures/SampleImages/Animation_SkinType_00.gif -------------------------------------------------------------------------------- /Output/Positive/Animation_SkinType/Figures/SampleImages/Animation_SkinType_01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_SkinType/Figures/SampleImages/Animation_SkinType_01.gif -------------------------------------------------------------------------------- /Output/Positive/Animation_SkinType/Figures/SampleImages/Animation_SkinType_02.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_SkinType/Figures/SampleImages/Animation_SkinType_02.gif -------------------------------------------------------------------------------- /Output/Positive/Animation_SkinType/Figures/SampleImages/Animation_SkinType_03.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_SkinType/Figures/SampleImages/Animation_SkinType_03.gif -------------------------------------------------------------------------------- /Output/Positive/Animation_SkinType/Figures/Thumbnails/Animation_SkinType_00.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_SkinType/Figures/Thumbnails/Animation_SkinType_00.gif -------------------------------------------------------------------------------- /Output/Positive/Animation_SkinType/Figures/Thumbnails/Animation_SkinType_01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_SkinType/Figures/Thumbnails/Animation_SkinType_01.gif -------------------------------------------------------------------------------- /Output/Positive/Animation_SkinType/Figures/Thumbnails/Animation_SkinType_02.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_SkinType/Figures/Thumbnails/Animation_SkinType_02.gif -------------------------------------------------------------------------------- /Output/Positive/Animation_SkinType/Figures/Thumbnails/Animation_SkinType_03.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Animation_SkinType/Figures/Thumbnails/Animation_SkinType_03.gif -------------------------------------------------------------------------------- /Output/Positive/Buffer_Interleaved/Buffer_Interleaved_00.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Buffer_Interleaved/Buffer_Interleaved_00.bin -------------------------------------------------------------------------------- /Output/Positive/Buffer_Interleaved/Buffer_Interleaved_01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Buffer_Interleaved/Buffer_Interleaved_01.bin -------------------------------------------------------------------------------- /Output/Positive/Buffer_Interleaved/Buffer_Interleaved_02.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Buffer_Interleaved/Buffer_Interleaved_02.bin -------------------------------------------------------------------------------- /Output/Positive/Buffer_Interleaved/Buffer_Interleaved_03.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Buffer_Interleaved/Buffer_Interleaved_03.bin -------------------------------------------------------------------------------- /Output/Positive/Buffer_Interleaved/Buffer_Interleaved_04.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Buffer_Interleaved/Buffer_Interleaved_04.bin -------------------------------------------------------------------------------- /Output/Positive/Buffer_Interleaved/Figures/SampleImages/Buffer_Interleaved_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Buffer_Interleaved/Figures/SampleImages/Buffer_Interleaved_00.png -------------------------------------------------------------------------------- /Output/Positive/Buffer_Interleaved/Figures/SampleImages/Buffer_Interleaved_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Buffer_Interleaved/Figures/SampleImages/Buffer_Interleaved_01.png -------------------------------------------------------------------------------- /Output/Positive/Buffer_Interleaved/Figures/SampleImages/Buffer_Interleaved_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Buffer_Interleaved/Figures/SampleImages/Buffer_Interleaved_02.png -------------------------------------------------------------------------------- /Output/Positive/Buffer_Interleaved/Figures/SampleImages/Buffer_Interleaved_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Buffer_Interleaved/Figures/SampleImages/Buffer_Interleaved_03.png -------------------------------------------------------------------------------- /Output/Positive/Buffer_Interleaved/Figures/SampleImages/Buffer_Interleaved_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Buffer_Interleaved/Figures/SampleImages/Buffer_Interleaved_04.png -------------------------------------------------------------------------------- /Output/Positive/Buffer_Interleaved/Figures/Thumbnails/BaseColor_Grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Buffer_Interleaved/Figures/Thumbnails/BaseColor_Grey.png -------------------------------------------------------------------------------- /Output/Positive/Buffer_Interleaved/Figures/Thumbnails/Buffer_Interleaved_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Buffer_Interleaved/Figures/Thumbnails/Buffer_Interleaved_00.png -------------------------------------------------------------------------------- /Output/Positive/Buffer_Interleaved/Figures/Thumbnails/Buffer_Interleaved_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Buffer_Interleaved/Figures/Thumbnails/Buffer_Interleaved_01.png -------------------------------------------------------------------------------- /Output/Positive/Buffer_Interleaved/Figures/Thumbnails/Buffer_Interleaved_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Buffer_Interleaved/Figures/Thumbnails/Buffer_Interleaved_02.png -------------------------------------------------------------------------------- /Output/Positive/Buffer_Interleaved/Figures/Thumbnails/Buffer_Interleaved_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Buffer_Interleaved/Figures/Thumbnails/Buffer_Interleaved_03.png -------------------------------------------------------------------------------- /Output/Positive/Buffer_Interleaved/Figures/Thumbnails/Buffer_Interleaved_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Buffer_Interleaved/Figures/Thumbnails/Buffer_Interleaved_04.png -------------------------------------------------------------------------------- /Output/Positive/Buffer_Interleaved/Textures/BaseColor_Grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Buffer_Interleaved/Textures/BaseColor_Grey.png -------------------------------------------------------------------------------- /Output/Positive/Compatibility/Compatibility_00.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Compatibility/Compatibility_00.bin -------------------------------------------------------------------------------- /Output/Positive/Compatibility/Compatibility_01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Compatibility/Compatibility_01.bin -------------------------------------------------------------------------------- /Output/Positive/Compatibility/Compatibility_02.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Compatibility/Compatibility_02.bin -------------------------------------------------------------------------------- /Output/Positive/Compatibility/Compatibility_03.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Compatibility/Compatibility_03.bin -------------------------------------------------------------------------------- /Output/Positive/Compatibility/Compatibility_04.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Compatibility/Compatibility_04.bin -------------------------------------------------------------------------------- /Output/Positive/Compatibility/Compatibility_05.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Compatibility/Compatibility_05.bin -------------------------------------------------------------------------------- /Output/Positive/Compatibility/Compatibility_06.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Compatibility/Compatibility_06.bin -------------------------------------------------------------------------------- /Output/Positive/Instancing/Figures/SampleImages/Instancing_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Instancing/Figures/SampleImages/Instancing_00.png -------------------------------------------------------------------------------- /Output/Positive/Instancing/Figures/SampleImages/Instancing_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Instancing/Figures/SampleImages/Instancing_01.png -------------------------------------------------------------------------------- /Output/Positive/Instancing/Figures/SampleImages/Instancing_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Instancing/Figures/SampleImages/Instancing_02.png -------------------------------------------------------------------------------- /Output/Positive/Instancing/Figures/SampleImages/Instancing_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Instancing/Figures/SampleImages/Instancing_03.png -------------------------------------------------------------------------------- /Output/Positive/Instancing/Figures/SampleImages/Instancing_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Instancing/Figures/SampleImages/Instancing_04.png -------------------------------------------------------------------------------- /Output/Positive/Instancing/Figures/SampleImages/Instancing_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Instancing/Figures/SampleImages/Instancing_05.png -------------------------------------------------------------------------------- /Output/Positive/Instancing/Figures/SampleImages/Instancing_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Instancing/Figures/SampleImages/Instancing_06.png -------------------------------------------------------------------------------- /Output/Positive/Instancing/Figures/SampleImages/Instancing_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Instancing/Figures/SampleImages/Instancing_07.png -------------------------------------------------------------------------------- /Output/Positive/Instancing/Figures/SampleImages/Instancing_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Instancing/Figures/SampleImages/Instancing_08.png -------------------------------------------------------------------------------- /Output/Positive/Instancing/Figures/SampleImages/Instancing_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Instancing/Figures/SampleImages/Instancing_09.png -------------------------------------------------------------------------------- /Output/Positive/Instancing/Figures/SampleImages/Instancing_10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Instancing/Figures/SampleImages/Instancing_10.gif -------------------------------------------------------------------------------- /Output/Positive/Instancing/Figures/SampleImages/Instancing_11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Instancing/Figures/SampleImages/Instancing_11.gif -------------------------------------------------------------------------------- /Output/Positive/Instancing/Figures/SampleImages/Instancing_12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Instancing/Figures/SampleImages/Instancing_12.gif -------------------------------------------------------------------------------- /Output/Positive/Instancing/Figures/Thumbnails/BaseColor_A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Instancing/Figures/Thumbnails/BaseColor_A.png -------------------------------------------------------------------------------- /Output/Positive/Instancing/Figures/Thumbnails/BaseColor_B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Instancing/Figures/Thumbnails/BaseColor_B.png -------------------------------------------------------------------------------- /Output/Positive/Instancing/Figures/Thumbnails/BaseColor_Cube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Instancing/Figures/Thumbnails/BaseColor_Cube.png -------------------------------------------------------------------------------- /Output/Positive/Instancing/Figures/Thumbnails/Instancing_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Instancing/Figures/Thumbnails/Instancing_00.png -------------------------------------------------------------------------------- /Output/Positive/Instancing/Figures/Thumbnails/Instancing_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Instancing/Figures/Thumbnails/Instancing_01.png -------------------------------------------------------------------------------- /Output/Positive/Instancing/Figures/Thumbnails/Instancing_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Instancing/Figures/Thumbnails/Instancing_02.png -------------------------------------------------------------------------------- /Output/Positive/Instancing/Figures/Thumbnails/Instancing_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Instancing/Figures/Thumbnails/Instancing_03.png -------------------------------------------------------------------------------- /Output/Positive/Instancing/Figures/Thumbnails/Instancing_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Instancing/Figures/Thumbnails/Instancing_04.png -------------------------------------------------------------------------------- /Output/Positive/Instancing/Figures/Thumbnails/Instancing_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Instancing/Figures/Thumbnails/Instancing_05.png -------------------------------------------------------------------------------- /Output/Positive/Instancing/Figures/Thumbnails/Instancing_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Instancing/Figures/Thumbnails/Instancing_06.png -------------------------------------------------------------------------------- /Output/Positive/Instancing/Figures/Thumbnails/Instancing_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Instancing/Figures/Thumbnails/Instancing_07.png -------------------------------------------------------------------------------- /Output/Positive/Instancing/Figures/Thumbnails/Instancing_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Instancing/Figures/Thumbnails/Instancing_08.png -------------------------------------------------------------------------------- /Output/Positive/Instancing/Figures/Thumbnails/Instancing_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Instancing/Figures/Thumbnails/Instancing_09.png -------------------------------------------------------------------------------- /Output/Positive/Instancing/Figures/Thumbnails/Instancing_10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Instancing/Figures/Thumbnails/Instancing_10.gif -------------------------------------------------------------------------------- /Output/Positive/Instancing/Figures/Thumbnails/Instancing_11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Instancing/Figures/Thumbnails/Instancing_11.gif -------------------------------------------------------------------------------- /Output/Positive/Instancing/Figures/Thumbnails/Instancing_12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Instancing/Figures/Thumbnails/Instancing_12.gif -------------------------------------------------------------------------------- /Output/Positive/Instancing/Instancing_00.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Instancing/Instancing_00.bin -------------------------------------------------------------------------------- /Output/Positive/Instancing/Instancing_01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Instancing/Instancing_01.bin -------------------------------------------------------------------------------- /Output/Positive/Instancing/Instancing_02.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Instancing/Instancing_02.bin -------------------------------------------------------------------------------- /Output/Positive/Instancing/Instancing_03.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Instancing/Instancing_03.bin -------------------------------------------------------------------------------- /Output/Positive/Instancing/Instancing_04.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Instancing/Instancing_04.bin -------------------------------------------------------------------------------- /Output/Positive/Instancing/Instancing_05.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Instancing/Instancing_05.bin -------------------------------------------------------------------------------- /Output/Positive/Instancing/Instancing_06.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Instancing/Instancing_06.bin -------------------------------------------------------------------------------- /Output/Positive/Instancing/Instancing_07.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Instancing/Instancing_07.bin -------------------------------------------------------------------------------- /Output/Positive/Instancing/Instancing_08.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Instancing/Instancing_08.bin -------------------------------------------------------------------------------- /Output/Positive/Instancing/Instancing_09.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Instancing/Instancing_09.bin -------------------------------------------------------------------------------- /Output/Positive/Instancing/Instancing_10.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Instancing/Instancing_10.bin -------------------------------------------------------------------------------- /Output/Positive/Instancing/Instancing_11.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Instancing/Instancing_11.bin -------------------------------------------------------------------------------- /Output/Positive/Instancing/Instancing_12.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Instancing/Instancing_12.bin -------------------------------------------------------------------------------- /Output/Positive/Instancing/Textures/BaseColor_A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Instancing/Textures/BaseColor_A.png -------------------------------------------------------------------------------- /Output/Positive/Instancing/Textures/BaseColor_B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Instancing/Textures/BaseColor_B.png -------------------------------------------------------------------------------- /Output/Positive/Instancing/Textures/BaseColor_Cube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Instancing/Textures/BaseColor_Cube.png -------------------------------------------------------------------------------- /Output/Positive/Material/Figures/SampleImages/Material_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material/Figures/SampleImages/Material_00.png -------------------------------------------------------------------------------- /Output/Positive/Material/Figures/SampleImages/Material_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material/Figures/SampleImages/Material_01.png -------------------------------------------------------------------------------- /Output/Positive/Material/Figures/SampleImages/Material_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material/Figures/SampleImages/Material_02.png -------------------------------------------------------------------------------- /Output/Positive/Material/Figures/SampleImages/Material_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material/Figures/SampleImages/Material_03.png -------------------------------------------------------------------------------- /Output/Positive/Material/Figures/SampleImages/Material_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material/Figures/SampleImages/Material_04.png -------------------------------------------------------------------------------- /Output/Positive/Material/Figures/SampleImages/Material_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material/Figures/SampleImages/Material_05.png -------------------------------------------------------------------------------- /Output/Positive/Material/Figures/SampleImages/Material_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material/Figures/SampleImages/Material_06.png -------------------------------------------------------------------------------- /Output/Positive/Material/Figures/SampleImages/Material_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material/Figures/SampleImages/Material_07.png -------------------------------------------------------------------------------- /Output/Positive/Material/Figures/Thumbnails/Emissive_Plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material/Figures/Thumbnails/Emissive_Plane.png -------------------------------------------------------------------------------- /Output/Positive/Material/Figures/Thumbnails/Material_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material/Figures/Thumbnails/Material_00.png -------------------------------------------------------------------------------- /Output/Positive/Material/Figures/Thumbnails/Material_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material/Figures/Thumbnails/Material_01.png -------------------------------------------------------------------------------- /Output/Positive/Material/Figures/Thumbnails/Material_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material/Figures/Thumbnails/Material_02.png -------------------------------------------------------------------------------- /Output/Positive/Material/Figures/Thumbnails/Material_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material/Figures/Thumbnails/Material_03.png -------------------------------------------------------------------------------- /Output/Positive/Material/Figures/Thumbnails/Material_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material/Figures/Thumbnails/Material_04.png -------------------------------------------------------------------------------- /Output/Positive/Material/Figures/Thumbnails/Material_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material/Figures/Thumbnails/Material_05.png -------------------------------------------------------------------------------- /Output/Positive/Material/Figures/Thumbnails/Material_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material/Figures/Thumbnails/Material_06.png -------------------------------------------------------------------------------- /Output/Positive/Material/Figures/Thumbnails/Material_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material/Figures/Thumbnails/Material_07.png -------------------------------------------------------------------------------- /Output/Positive/Material/Figures/Thumbnails/Normal_Plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material/Figures/Thumbnails/Normal_Plane.png -------------------------------------------------------------------------------- /Output/Positive/Material/Figures/Thumbnails/Occlusion_Plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material/Figures/Thumbnails/Occlusion_Plane.png -------------------------------------------------------------------------------- /Output/Positive/Material/Material_00.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material/Material_00.bin -------------------------------------------------------------------------------- /Output/Positive/Material/Material_01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material/Material_01.bin -------------------------------------------------------------------------------- /Output/Positive/Material/Material_02.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material/Material_02.bin -------------------------------------------------------------------------------- /Output/Positive/Material/Material_03.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material/Material_03.bin -------------------------------------------------------------------------------- /Output/Positive/Material/Material_04.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material/Material_04.bin -------------------------------------------------------------------------------- /Output/Positive/Material/Material_05.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material/Material_05.bin -------------------------------------------------------------------------------- /Output/Positive/Material/Material_06.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material/Material_06.bin -------------------------------------------------------------------------------- /Output/Positive/Material/Material_07.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material/Material_07.bin -------------------------------------------------------------------------------- /Output/Positive/Material/Textures/Emissive_Plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material/Textures/Emissive_Plane.png -------------------------------------------------------------------------------- /Output/Positive/Material/Textures/Normal_Plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material/Textures/Normal_Plane.png -------------------------------------------------------------------------------- /Output/Positive/Material/Textures/Occlusion_Plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material/Textures/Occlusion_Plane.png -------------------------------------------------------------------------------- /Output/Positive/Material_AlphaBlend/Figures/SampleImages/Material_AlphaBlend_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_AlphaBlend/Figures/SampleImages/Material_AlphaBlend_00.png -------------------------------------------------------------------------------- /Output/Positive/Material_AlphaBlend/Figures/SampleImages/Material_AlphaBlend_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_AlphaBlend/Figures/SampleImages/Material_AlphaBlend_01.png -------------------------------------------------------------------------------- /Output/Positive/Material_AlphaBlend/Figures/SampleImages/Material_AlphaBlend_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_AlphaBlend/Figures/SampleImages/Material_AlphaBlend_02.png -------------------------------------------------------------------------------- /Output/Positive/Material_AlphaBlend/Figures/SampleImages/Material_AlphaBlend_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_AlphaBlend/Figures/SampleImages/Material_AlphaBlend_03.png -------------------------------------------------------------------------------- /Output/Positive/Material_AlphaBlend/Figures/SampleImages/Material_AlphaBlend_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_AlphaBlend/Figures/SampleImages/Material_AlphaBlend_04.png -------------------------------------------------------------------------------- /Output/Positive/Material_AlphaBlend/Figures/SampleImages/Material_AlphaBlend_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_AlphaBlend/Figures/SampleImages/Material_AlphaBlend_05.png -------------------------------------------------------------------------------- /Output/Positive/Material_AlphaBlend/Figures/Thumbnails/BaseColor_Plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_AlphaBlend/Figures/Thumbnails/BaseColor_Plane.png -------------------------------------------------------------------------------- /Output/Positive/Material_AlphaBlend/Figures/Thumbnails/Material_AlphaBlend_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_AlphaBlend/Figures/Thumbnails/Material_AlphaBlend_00.png -------------------------------------------------------------------------------- /Output/Positive/Material_AlphaBlend/Figures/Thumbnails/Material_AlphaBlend_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_AlphaBlend/Figures/Thumbnails/Material_AlphaBlend_01.png -------------------------------------------------------------------------------- /Output/Positive/Material_AlphaBlend/Figures/Thumbnails/Material_AlphaBlend_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_AlphaBlend/Figures/Thumbnails/Material_AlphaBlend_02.png -------------------------------------------------------------------------------- /Output/Positive/Material_AlphaBlend/Figures/Thumbnails/Material_AlphaBlend_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_AlphaBlend/Figures/Thumbnails/Material_AlphaBlend_03.png -------------------------------------------------------------------------------- /Output/Positive/Material_AlphaBlend/Figures/Thumbnails/Material_AlphaBlend_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_AlphaBlend/Figures/Thumbnails/Material_AlphaBlend_04.png -------------------------------------------------------------------------------- /Output/Positive/Material_AlphaBlend/Figures/Thumbnails/Material_AlphaBlend_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_AlphaBlend/Figures/Thumbnails/Material_AlphaBlend_05.png -------------------------------------------------------------------------------- /Output/Positive/Material_AlphaBlend/Figures/Thumbnails/Material_AlphaBlend_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_AlphaBlend/Figures/Thumbnails/Material_AlphaBlend_06.png -------------------------------------------------------------------------------- /Output/Positive/Material_AlphaBlend/Material_AlphaBlend_00.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_AlphaBlend/Material_AlphaBlend_00.bin -------------------------------------------------------------------------------- /Output/Positive/Material_AlphaBlend/Material_AlphaBlend_01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_AlphaBlend/Material_AlphaBlend_01.bin -------------------------------------------------------------------------------- /Output/Positive/Material_AlphaBlend/Material_AlphaBlend_02.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_AlphaBlend/Material_AlphaBlend_02.bin -------------------------------------------------------------------------------- /Output/Positive/Material_AlphaBlend/Material_AlphaBlend_03.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_AlphaBlend/Material_AlphaBlend_03.bin -------------------------------------------------------------------------------- /Output/Positive/Material_AlphaBlend/Material_AlphaBlend_04.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_AlphaBlend/Material_AlphaBlend_04.bin -------------------------------------------------------------------------------- /Output/Positive/Material_AlphaBlend/Material_AlphaBlend_05.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_AlphaBlend/Material_AlphaBlend_05.bin -------------------------------------------------------------------------------- /Output/Positive/Material_AlphaBlend/Material_AlphaBlend_06.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_AlphaBlend/Material_AlphaBlend_06.bin -------------------------------------------------------------------------------- /Output/Positive/Material_AlphaBlend/Textures/BaseColor_Plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_AlphaBlend/Textures/BaseColor_Plane.png -------------------------------------------------------------------------------- /Output/Positive/Material_AlphaMask/Figures/SampleImages/Material_AlphaMask_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_AlphaMask/Figures/SampleImages/Material_AlphaMask_00.png -------------------------------------------------------------------------------- /Output/Positive/Material_AlphaMask/Figures/SampleImages/Material_AlphaMask_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_AlphaMask/Figures/SampleImages/Material_AlphaMask_01.png -------------------------------------------------------------------------------- /Output/Positive/Material_AlphaMask/Figures/SampleImages/Material_AlphaMask_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_AlphaMask/Figures/SampleImages/Material_AlphaMask_02.png -------------------------------------------------------------------------------- /Output/Positive/Material_AlphaMask/Figures/SampleImages/Material_AlphaMask_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_AlphaMask/Figures/SampleImages/Material_AlphaMask_03.png -------------------------------------------------------------------------------- /Output/Positive/Material_AlphaMask/Figures/SampleImages/Material_AlphaMask_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_AlphaMask/Figures/SampleImages/Material_AlphaMask_04.png -------------------------------------------------------------------------------- /Output/Positive/Material_AlphaMask/Figures/SampleImages/Material_AlphaMask_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_AlphaMask/Figures/SampleImages/Material_AlphaMask_05.png -------------------------------------------------------------------------------- /Output/Positive/Material_AlphaMask/Figures/SampleImages/Material_AlphaMask_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_AlphaMask/Figures/SampleImages/Material_AlphaMask_06.png -------------------------------------------------------------------------------- /Output/Positive/Material_AlphaMask/Figures/Thumbnails/BaseColor_Plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_AlphaMask/Figures/Thumbnails/BaseColor_Plane.png -------------------------------------------------------------------------------- /Output/Positive/Material_AlphaMask/Figures/Thumbnails/Material_AlphaMask_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_AlphaMask/Figures/Thumbnails/Material_AlphaMask_00.png -------------------------------------------------------------------------------- /Output/Positive/Material_AlphaMask/Figures/Thumbnails/Material_AlphaMask_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_AlphaMask/Figures/Thumbnails/Material_AlphaMask_01.png -------------------------------------------------------------------------------- /Output/Positive/Material_AlphaMask/Figures/Thumbnails/Material_AlphaMask_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_AlphaMask/Figures/Thumbnails/Material_AlphaMask_02.png -------------------------------------------------------------------------------- /Output/Positive/Material_AlphaMask/Figures/Thumbnails/Material_AlphaMask_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_AlphaMask/Figures/Thumbnails/Material_AlphaMask_03.png -------------------------------------------------------------------------------- /Output/Positive/Material_AlphaMask/Figures/Thumbnails/Material_AlphaMask_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_AlphaMask/Figures/Thumbnails/Material_AlphaMask_04.png -------------------------------------------------------------------------------- /Output/Positive/Material_AlphaMask/Figures/Thumbnails/Material_AlphaMask_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_AlphaMask/Figures/Thumbnails/Material_AlphaMask_05.png -------------------------------------------------------------------------------- /Output/Positive/Material_AlphaMask/Figures/Thumbnails/Material_AlphaMask_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_AlphaMask/Figures/Thumbnails/Material_AlphaMask_06.png -------------------------------------------------------------------------------- /Output/Positive/Material_AlphaMask/Material_AlphaMask_00.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_AlphaMask/Material_AlphaMask_00.bin -------------------------------------------------------------------------------- /Output/Positive/Material_AlphaMask/Material_AlphaMask_01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_AlphaMask/Material_AlphaMask_01.bin -------------------------------------------------------------------------------- /Output/Positive/Material_AlphaMask/Material_AlphaMask_02.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_AlphaMask/Material_AlphaMask_02.bin -------------------------------------------------------------------------------- /Output/Positive/Material_AlphaMask/Material_AlphaMask_03.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_AlphaMask/Material_AlphaMask_03.bin -------------------------------------------------------------------------------- /Output/Positive/Material_AlphaMask/Material_AlphaMask_04.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_AlphaMask/Material_AlphaMask_04.bin -------------------------------------------------------------------------------- /Output/Positive/Material_AlphaMask/Material_AlphaMask_05.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_AlphaMask/Material_AlphaMask_05.bin -------------------------------------------------------------------------------- /Output/Positive/Material_AlphaMask/Material_AlphaMask_06.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_AlphaMask/Material_AlphaMask_06.bin -------------------------------------------------------------------------------- /Output/Positive/Material_AlphaMask/Textures/BaseColor_Plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_AlphaMask/Textures/BaseColor_Plane.png -------------------------------------------------------------------------------- /Output/Positive/Material_DoubleSided/Figures/Thumbnails/BaseColor_Plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_DoubleSided/Figures/Thumbnails/BaseColor_Plane.png -------------------------------------------------------------------------------- /Output/Positive/Material_DoubleSided/Figures/Thumbnails/Normal_Plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_DoubleSided/Figures/Thumbnails/Normal_Plane.png -------------------------------------------------------------------------------- /Output/Positive/Material_DoubleSided/Material_DoubleSided_00.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_DoubleSided/Material_DoubleSided_00.bin -------------------------------------------------------------------------------- /Output/Positive/Material_DoubleSided/Material_DoubleSided_01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_DoubleSided/Material_DoubleSided_01.bin -------------------------------------------------------------------------------- /Output/Positive/Material_DoubleSided/Material_DoubleSided_02.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_DoubleSided/Material_DoubleSided_02.bin -------------------------------------------------------------------------------- /Output/Positive/Material_DoubleSided/Material_DoubleSided_03.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_DoubleSided/Material_DoubleSided_03.bin -------------------------------------------------------------------------------- /Output/Positive/Material_DoubleSided/Material_DoubleSided_04.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_DoubleSided/Material_DoubleSided_04.bin -------------------------------------------------------------------------------- /Output/Positive/Material_DoubleSided/Textures/BaseColor_Plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_DoubleSided/Textures/BaseColor_Plane.png -------------------------------------------------------------------------------- /Output/Positive/Material_DoubleSided/Textures/Normal_Plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_DoubleSided/Textures/Normal_Plane.png -------------------------------------------------------------------------------- /Output/Positive/Material_MetallicRoughness/Figures/Thumbnails/BaseColor_Plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_MetallicRoughness/Figures/Thumbnails/BaseColor_Plane.png -------------------------------------------------------------------------------- /Output/Positive/Material_MetallicRoughness/Material_MetallicRoughness_00.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_MetallicRoughness/Material_MetallicRoughness_00.bin -------------------------------------------------------------------------------- /Output/Positive/Material_MetallicRoughness/Material_MetallicRoughness_01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_MetallicRoughness/Material_MetallicRoughness_01.bin -------------------------------------------------------------------------------- /Output/Positive/Material_MetallicRoughness/Material_MetallicRoughness_02.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_MetallicRoughness/Material_MetallicRoughness_02.bin -------------------------------------------------------------------------------- /Output/Positive/Material_MetallicRoughness/Material_MetallicRoughness_03.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_MetallicRoughness/Material_MetallicRoughness_03.bin -------------------------------------------------------------------------------- /Output/Positive/Material_MetallicRoughness/Material_MetallicRoughness_04.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_MetallicRoughness/Material_MetallicRoughness_04.bin -------------------------------------------------------------------------------- /Output/Positive/Material_MetallicRoughness/Material_MetallicRoughness_05.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_MetallicRoughness/Material_MetallicRoughness_05.bin -------------------------------------------------------------------------------- /Output/Positive/Material_MetallicRoughness/Material_MetallicRoughness_06.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_MetallicRoughness/Material_MetallicRoughness_06.bin -------------------------------------------------------------------------------- /Output/Positive/Material_MetallicRoughness/Material_MetallicRoughness_07.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_MetallicRoughness/Material_MetallicRoughness_07.bin -------------------------------------------------------------------------------- /Output/Positive/Material_MetallicRoughness/Material_MetallicRoughness_08.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_MetallicRoughness/Material_MetallicRoughness_08.bin -------------------------------------------------------------------------------- /Output/Positive/Material_MetallicRoughness/Material_MetallicRoughness_09.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_MetallicRoughness/Material_MetallicRoughness_09.bin -------------------------------------------------------------------------------- /Output/Positive/Material_MetallicRoughness/Material_MetallicRoughness_10.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_MetallicRoughness/Material_MetallicRoughness_10.bin -------------------------------------------------------------------------------- /Output/Positive/Material_MetallicRoughness/Material_MetallicRoughness_11.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_MetallicRoughness/Material_MetallicRoughness_11.bin -------------------------------------------------------------------------------- /Output/Positive/Material_MetallicRoughness/Textures/BaseColor_Plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_MetallicRoughness/Textures/BaseColor_Plane.png -------------------------------------------------------------------------------- /Output/Positive/Material_MetallicRoughness/Textures/MetallicRoughness_Plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_MetallicRoughness/Textures/MetallicRoughness_Plane.png -------------------------------------------------------------------------------- /Output/Positive/Material_Mixed/Figures/SampleImages/Material_Mixed_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_Mixed/Figures/SampleImages/Material_Mixed_00.png -------------------------------------------------------------------------------- /Output/Positive/Material_Mixed/Figures/SampleImages/Material_Mixed_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_Mixed/Figures/SampleImages/Material_Mixed_01.png -------------------------------------------------------------------------------- /Output/Positive/Material_Mixed/Figures/SampleImages/Material_Mixed_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_Mixed/Figures/SampleImages/Material_Mixed_02.png -------------------------------------------------------------------------------- /Output/Positive/Material_Mixed/Figures/Thumbnails/BaseColor_X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_Mixed/Figures/Thumbnails/BaseColor_X.png -------------------------------------------------------------------------------- /Output/Positive/Material_Mixed/Figures/Thumbnails/Material_Mixed_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_Mixed/Figures/Thumbnails/Material_Mixed_00.png -------------------------------------------------------------------------------- /Output/Positive/Material_Mixed/Figures/Thumbnails/Material_Mixed_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_Mixed/Figures/Thumbnails/Material_Mixed_01.png -------------------------------------------------------------------------------- /Output/Positive/Material_Mixed/Figures/Thumbnails/Material_Mixed_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_Mixed/Figures/Thumbnails/Material_Mixed_02.png -------------------------------------------------------------------------------- /Output/Positive/Material_Mixed/Figures/UVSpace2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_Mixed/Figures/UVSpace2.png -------------------------------------------------------------------------------- /Output/Positive/Material_Mixed/Figures/UVSpace3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_Mixed/Figures/UVSpace3.png -------------------------------------------------------------------------------- /Output/Positive/Material_Mixed/Material_Mixed_00.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_Mixed/Material_Mixed_00.bin -------------------------------------------------------------------------------- /Output/Positive/Material_Mixed/Material_Mixed_01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_Mixed/Material_Mixed_01.bin -------------------------------------------------------------------------------- /Output/Positive/Material_Mixed/Material_Mixed_02.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_Mixed/Material_Mixed_02.bin -------------------------------------------------------------------------------- /Output/Positive/Material_Mixed/Textures/BaseColor_X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_Mixed/Textures/BaseColor_X.png -------------------------------------------------------------------------------- /Output/Positive/Material_SpecularGlossiness/Figures/Thumbnails/BaseColor_X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_SpecularGlossiness/Figures/Thumbnails/BaseColor_X.png -------------------------------------------------------------------------------- /Output/Positive/Material_SpecularGlossiness/Figures/Thumbnails/Diffuse_Plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_SpecularGlossiness/Figures/Thumbnails/Diffuse_Plane.png -------------------------------------------------------------------------------- /Output/Positive/Material_SpecularGlossiness/Material_SpecularGlossiness_00.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_SpecularGlossiness/Material_SpecularGlossiness_00.bin -------------------------------------------------------------------------------- /Output/Positive/Material_SpecularGlossiness/Material_SpecularGlossiness_01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_SpecularGlossiness/Material_SpecularGlossiness_01.bin -------------------------------------------------------------------------------- /Output/Positive/Material_SpecularGlossiness/Material_SpecularGlossiness_02.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_SpecularGlossiness/Material_SpecularGlossiness_02.bin -------------------------------------------------------------------------------- /Output/Positive/Material_SpecularGlossiness/Material_SpecularGlossiness_03.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_SpecularGlossiness/Material_SpecularGlossiness_03.bin -------------------------------------------------------------------------------- /Output/Positive/Material_SpecularGlossiness/Material_SpecularGlossiness_04.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_SpecularGlossiness/Material_SpecularGlossiness_04.bin -------------------------------------------------------------------------------- /Output/Positive/Material_SpecularGlossiness/Material_SpecularGlossiness_05.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_SpecularGlossiness/Material_SpecularGlossiness_05.bin -------------------------------------------------------------------------------- /Output/Positive/Material_SpecularGlossiness/Material_SpecularGlossiness_06.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_SpecularGlossiness/Material_SpecularGlossiness_06.bin -------------------------------------------------------------------------------- /Output/Positive/Material_SpecularGlossiness/Material_SpecularGlossiness_07.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_SpecularGlossiness/Material_SpecularGlossiness_07.bin -------------------------------------------------------------------------------- /Output/Positive/Material_SpecularGlossiness/Material_SpecularGlossiness_08.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_SpecularGlossiness/Material_SpecularGlossiness_08.bin -------------------------------------------------------------------------------- /Output/Positive/Material_SpecularGlossiness/Material_SpecularGlossiness_09.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_SpecularGlossiness/Material_SpecularGlossiness_09.bin -------------------------------------------------------------------------------- /Output/Positive/Material_SpecularGlossiness/Material_SpecularGlossiness_10.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_SpecularGlossiness/Material_SpecularGlossiness_10.bin -------------------------------------------------------------------------------- /Output/Positive/Material_SpecularGlossiness/Material_SpecularGlossiness_11.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_SpecularGlossiness/Material_SpecularGlossiness_11.bin -------------------------------------------------------------------------------- /Output/Positive/Material_SpecularGlossiness/Material_SpecularGlossiness_12.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_SpecularGlossiness/Material_SpecularGlossiness_12.bin -------------------------------------------------------------------------------- /Output/Positive/Material_SpecularGlossiness/Material_SpecularGlossiness_13.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_SpecularGlossiness/Material_SpecularGlossiness_13.bin -------------------------------------------------------------------------------- /Output/Positive/Material_SpecularGlossiness/Textures/BaseColor_X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_SpecularGlossiness/Textures/BaseColor_X.png -------------------------------------------------------------------------------- /Output/Positive/Material_SpecularGlossiness/Textures/Diffuse_Plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_SpecularGlossiness/Textures/Diffuse_Plane.png -------------------------------------------------------------------------------- /Output/Positive/Material_SpecularGlossiness/Textures/SpecularGlossiness_Plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Material_SpecularGlossiness/Textures/SpecularGlossiness_Plane.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveAttribute/Figures/Thumbnails/BaseColor_Plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveAttribute/Figures/Thumbnails/BaseColor_Plane.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveAttribute/Figures/Thumbnails/Normal_Plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveAttribute/Figures/Thumbnails/Normal_Plane.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveAttribute/Mesh_PrimitiveAttribute_00.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveAttribute/Mesh_PrimitiveAttribute_00.bin -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveAttribute/Mesh_PrimitiveAttribute_01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveAttribute/Mesh_PrimitiveAttribute_01.bin -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveAttribute/Mesh_PrimitiveAttribute_02.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveAttribute/Mesh_PrimitiveAttribute_02.bin -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveAttribute/Mesh_PrimitiveAttribute_03.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveAttribute/Mesh_PrimitiveAttribute_03.bin -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveAttribute/Mesh_PrimitiveAttribute_04.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveAttribute/Mesh_PrimitiveAttribute_04.bin -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveAttribute/Mesh_PrimitiveAttribute_05.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveAttribute/Mesh_PrimitiveAttribute_05.bin -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveAttribute/Mesh_PrimitiveAttribute_06.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveAttribute/Mesh_PrimitiveAttribute_06.bin -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveAttribute/Textures/BaseColor_Plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveAttribute/Textures/BaseColor_Plane.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveAttribute/Textures/Normal_Plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveAttribute/Textures/Normal_Plane.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveMode/Figures/Indices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveMode/Figures/Indices.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveMode/Figures/Indices_Points.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveMode/Figures/Indices_Points.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveMode/Figures/SampleImages/Mesh_PrimitiveMode_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveMode/Figures/SampleImages/Mesh_PrimitiveMode_00.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveMode/Figures/SampleImages/Mesh_PrimitiveMode_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveMode/Figures/SampleImages/Mesh_PrimitiveMode_01.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveMode/Figures/SampleImages/Mesh_PrimitiveMode_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveMode/Figures/SampleImages/Mesh_PrimitiveMode_02.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveMode/Figures/SampleImages/Mesh_PrimitiveMode_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveMode/Figures/SampleImages/Mesh_PrimitiveMode_03.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveMode/Figures/SampleImages/Mesh_PrimitiveMode_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveMode/Figures/SampleImages/Mesh_PrimitiveMode_04.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveMode/Figures/SampleImages/Mesh_PrimitiveMode_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveMode/Figures/SampleImages/Mesh_PrimitiveMode_05.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveMode/Figures/SampleImages/Mesh_PrimitiveMode_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveMode/Figures/SampleImages/Mesh_PrimitiveMode_06.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveMode/Figures/SampleImages/Mesh_PrimitiveMode_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveMode/Figures/SampleImages/Mesh_PrimitiveMode_07.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveMode/Figures/SampleImages/Mesh_PrimitiveMode_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveMode/Figures/SampleImages/Mesh_PrimitiveMode_08.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveMode/Figures/SampleImages/Mesh_PrimitiveMode_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveMode/Figures/SampleImages/Mesh_PrimitiveMode_09.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveMode/Figures/SampleImages/Mesh_PrimitiveMode_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveMode/Figures/SampleImages/Mesh_PrimitiveMode_10.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveMode/Figures/SampleImages/Mesh_PrimitiveMode_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveMode/Figures/SampleImages/Mesh_PrimitiveMode_11.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveMode/Figures/SampleImages/Mesh_PrimitiveMode_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveMode/Figures/SampleImages/Mesh_PrimitiveMode_12.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveMode/Figures/SampleImages/Mesh_PrimitiveMode_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveMode/Figures/SampleImages/Mesh_PrimitiveMode_13.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveMode/Figures/SampleImages/Mesh_PrimitiveMode_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveMode/Figures/SampleImages/Mesh_PrimitiveMode_14.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveMode/Figures/SampleImages/Mesh_PrimitiveMode_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveMode/Figures/SampleImages/Mesh_PrimitiveMode_15.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveMode/Figures/Thumbnails/Mesh_PrimitiveMode_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveMode/Figures/Thumbnails/Mesh_PrimitiveMode_00.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveMode/Figures/Thumbnails/Mesh_PrimitiveMode_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveMode/Figures/Thumbnails/Mesh_PrimitiveMode_01.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveMode/Figures/Thumbnails/Mesh_PrimitiveMode_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveMode/Figures/Thumbnails/Mesh_PrimitiveMode_02.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveMode/Figures/Thumbnails/Mesh_PrimitiveMode_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveMode/Figures/Thumbnails/Mesh_PrimitiveMode_03.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveMode/Figures/Thumbnails/Mesh_PrimitiveMode_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveMode/Figures/Thumbnails/Mesh_PrimitiveMode_04.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveMode/Figures/Thumbnails/Mesh_PrimitiveMode_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveMode/Figures/Thumbnails/Mesh_PrimitiveMode_05.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveMode/Figures/Thumbnails/Mesh_PrimitiveMode_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveMode/Figures/Thumbnails/Mesh_PrimitiveMode_06.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveMode/Figures/Thumbnails/Mesh_PrimitiveMode_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveMode/Figures/Thumbnails/Mesh_PrimitiveMode_07.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveMode/Figures/Thumbnails/Mesh_PrimitiveMode_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveMode/Figures/Thumbnails/Mesh_PrimitiveMode_08.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveMode/Figures/Thumbnails/Mesh_PrimitiveMode_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveMode/Figures/Thumbnails/Mesh_PrimitiveMode_09.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveMode/Figures/Thumbnails/Mesh_PrimitiveMode_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveMode/Figures/Thumbnails/Mesh_PrimitiveMode_10.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveMode/Figures/Thumbnails/Mesh_PrimitiveMode_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveMode/Figures/Thumbnails/Mesh_PrimitiveMode_11.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveMode/Figures/Thumbnails/Mesh_PrimitiveMode_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveMode/Figures/Thumbnails/Mesh_PrimitiveMode_12.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveMode/Figures/Thumbnails/Mesh_PrimitiveMode_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveMode/Figures/Thumbnails/Mesh_PrimitiveMode_13.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveMode/Figures/Thumbnails/Mesh_PrimitiveMode_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveMode/Figures/Thumbnails/Mesh_PrimitiveMode_14.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveMode/Figures/Thumbnails/Mesh_PrimitiveMode_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveMode/Figures/Thumbnails/Mesh_PrimitiveMode_15.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveMode/Mesh_PrimitiveMode_00.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveMode/Mesh_PrimitiveMode_00.bin -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveMode/Mesh_PrimitiveMode_01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveMode/Mesh_PrimitiveMode_01.bin -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveMode/Mesh_PrimitiveMode_02.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveMode/Mesh_PrimitiveMode_02.bin -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveMode/Mesh_PrimitiveMode_03.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveMode/Mesh_PrimitiveMode_03.bin -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveMode/Mesh_PrimitiveMode_04.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveMode/Mesh_PrimitiveMode_04.bin -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveMode/Mesh_PrimitiveMode_05.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveMode/Mesh_PrimitiveMode_05.bin -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveMode/Mesh_PrimitiveMode_06.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveMode/Mesh_PrimitiveMode_06.bin -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveMode/Mesh_PrimitiveMode_07.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveMode/Mesh_PrimitiveMode_07.bin -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveMode/Mesh_PrimitiveMode_08.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveMode/Mesh_PrimitiveMode_08.bin -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveMode/Mesh_PrimitiveMode_09.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveMode/Mesh_PrimitiveMode_09.bin -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveMode/Mesh_PrimitiveMode_10.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveMode/Mesh_PrimitiveMode_10.bin -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveMode/Mesh_PrimitiveMode_11.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveMode/Mesh_PrimitiveMode_11.bin -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveMode/Mesh_PrimitiveMode_12.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveMode/Mesh_PrimitiveMode_12.bin -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveMode/Mesh_PrimitiveMode_13.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveMode/Mesh_PrimitiveMode_13.bin -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveMode/Mesh_PrimitiveMode_14.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveMode/Mesh_PrimitiveMode_14.bin -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveMode/Mesh_PrimitiveMode_15.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveMode/Mesh_PrimitiveMode_15.bin -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveVertexColor/Mesh_PrimitiveVertexColor_00.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveVertexColor/Mesh_PrimitiveVertexColor_00.bin -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveVertexColor/Mesh_PrimitiveVertexColor_01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveVertexColor/Mesh_PrimitiveVertexColor_01.bin -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveVertexColor/Mesh_PrimitiveVertexColor_02.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveVertexColor/Mesh_PrimitiveVertexColor_02.bin -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveVertexColor/Mesh_PrimitiveVertexColor_03.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveVertexColor/Mesh_PrimitiveVertexColor_03.bin -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveVertexColor/Mesh_PrimitiveVertexColor_04.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveVertexColor/Mesh_PrimitiveVertexColor_04.bin -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitiveVertexColor/Mesh_PrimitiveVertexColor_05.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitiveVertexColor/Mesh_PrimitiveVertexColor_05.bin -------------------------------------------------------------------------------- /Output/Positive/Mesh_Primitives/Figures/Indices_Primitive0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_Primitives/Figures/Indices_Primitive0.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_Primitives/Figures/Indices_Primitive1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_Primitives/Figures/Indices_Primitive1.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_Primitives/Figures/SampleImages/Mesh_Primitives_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_Primitives/Figures/SampleImages/Mesh_Primitives_00.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_Primitives/Figures/Thumbnails/Mesh_Primitives_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_Primitives/Figures/Thumbnails/Mesh_Primitives_00.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_Primitives/Mesh_Primitives_00.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_Primitives/Mesh_Primitives_00.bin -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitivesUV/Figures/Indices_Primitive0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitivesUV/Figures/Indices_Primitive0.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitivesUV/Figures/Indices_Primitive1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitivesUV/Figures/Indices_Primitive1.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitivesUV/Figures/SampleImages/Mesh_PrimitivesUV_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitivesUV/Figures/SampleImages/Mesh_PrimitivesUV_00.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitivesUV/Figures/SampleImages/Mesh_PrimitivesUV_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitivesUV/Figures/SampleImages/Mesh_PrimitivesUV_01.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitivesUV/Figures/SampleImages/Mesh_PrimitivesUV_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitivesUV/Figures/SampleImages/Mesh_PrimitivesUV_02.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitivesUV/Figures/SampleImages/Mesh_PrimitivesUV_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitivesUV/Figures/SampleImages/Mesh_PrimitivesUV_03.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitivesUV/Figures/SampleImages/Mesh_PrimitivesUV_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitivesUV/Figures/SampleImages/Mesh_PrimitivesUV_04.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitivesUV/Figures/SampleImages/Mesh_PrimitivesUV_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitivesUV/Figures/SampleImages/Mesh_PrimitivesUV_05.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitivesUV/Figures/SampleImages/Mesh_PrimitivesUV_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitivesUV/Figures/SampleImages/Mesh_PrimitivesUV_06.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitivesUV/Figures/SampleImages/Mesh_PrimitivesUV_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitivesUV/Figures/SampleImages/Mesh_PrimitivesUV_07.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitivesUV/Figures/SampleImages/Mesh_PrimitivesUV_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitivesUV/Figures/SampleImages/Mesh_PrimitivesUV_08.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitivesUV/Figures/Thumbnails/BaseColor_Plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitivesUV/Figures/Thumbnails/BaseColor_Plane.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitivesUV/Figures/Thumbnails/Mesh_PrimitivesUV_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitivesUV/Figures/Thumbnails/Mesh_PrimitivesUV_00.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitivesUV/Figures/Thumbnails/Mesh_PrimitivesUV_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitivesUV/Figures/Thumbnails/Mesh_PrimitivesUV_01.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitivesUV/Figures/Thumbnails/Mesh_PrimitivesUV_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitivesUV/Figures/Thumbnails/Mesh_PrimitivesUV_02.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitivesUV/Figures/Thumbnails/Mesh_PrimitivesUV_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitivesUV/Figures/Thumbnails/Mesh_PrimitivesUV_03.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitivesUV/Figures/Thumbnails/Mesh_PrimitivesUV_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitivesUV/Figures/Thumbnails/Mesh_PrimitivesUV_04.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitivesUV/Figures/Thumbnails/Mesh_PrimitivesUV_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitivesUV/Figures/Thumbnails/Mesh_PrimitivesUV_05.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitivesUV/Figures/Thumbnails/Mesh_PrimitivesUV_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitivesUV/Figures/Thumbnails/Mesh_PrimitivesUV_06.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitivesUV/Figures/Thumbnails/Mesh_PrimitivesUV_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitivesUV/Figures/Thumbnails/Mesh_PrimitivesUV_07.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitivesUV/Figures/Thumbnails/Mesh_PrimitivesUV_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitivesUV/Figures/Thumbnails/Mesh_PrimitivesUV_08.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitivesUV/Figures/Thumbnails/Normal_Plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitivesUV/Figures/Thumbnails/Normal_Plane.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitivesUV/Figures/UVSpace2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitivesUV/Figures/UVSpace2.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitivesUV/Figures/UVSpace3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitivesUV/Figures/UVSpace3.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitivesUV/Figures/UVSpace4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitivesUV/Figures/UVSpace4.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitivesUV/Figures/UVSpace5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitivesUV/Figures/UVSpace5.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitivesUV/Mesh_PrimitivesUV_00.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitivesUV/Mesh_PrimitivesUV_00.bin -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitivesUV/Mesh_PrimitivesUV_01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitivesUV/Mesh_PrimitivesUV_01.bin -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitivesUV/Mesh_PrimitivesUV_02.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitivesUV/Mesh_PrimitivesUV_02.bin -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitivesUV/Mesh_PrimitivesUV_03.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitivesUV/Mesh_PrimitivesUV_03.bin -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitivesUV/Mesh_PrimitivesUV_04.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitivesUV/Mesh_PrimitivesUV_04.bin -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitivesUV/Mesh_PrimitivesUV_05.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitivesUV/Mesh_PrimitivesUV_05.bin -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitivesUV/Mesh_PrimitivesUV_06.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitivesUV/Mesh_PrimitivesUV_06.bin -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitivesUV/Mesh_PrimitivesUV_07.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitivesUV/Mesh_PrimitivesUV_07.bin -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitivesUV/Mesh_PrimitivesUV_08.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitivesUV/Mesh_PrimitivesUV_08.bin -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitivesUV/Textures/BaseColor_Plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitivesUV/Textures/BaseColor_Plane.png -------------------------------------------------------------------------------- /Output/Positive/Mesh_PrimitivesUV/Textures/Normal_Plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Mesh_PrimitivesUV/Textures/Normal_Plane.png -------------------------------------------------------------------------------- /Output/Positive/Node_Attribute/Figures/SampleImages/Node_Attribute_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_Attribute/Figures/SampleImages/Node_Attribute_00.png -------------------------------------------------------------------------------- /Output/Positive/Node_Attribute/Figures/SampleImages/Node_Attribute_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_Attribute/Figures/SampleImages/Node_Attribute_01.png -------------------------------------------------------------------------------- /Output/Positive/Node_Attribute/Figures/SampleImages/Node_Attribute_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_Attribute/Figures/SampleImages/Node_Attribute_02.png -------------------------------------------------------------------------------- /Output/Positive/Node_Attribute/Figures/SampleImages/Node_Attribute_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_Attribute/Figures/SampleImages/Node_Attribute_03.png -------------------------------------------------------------------------------- /Output/Positive/Node_Attribute/Figures/SampleImages/Node_Attribute_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_Attribute/Figures/SampleImages/Node_Attribute_04.png -------------------------------------------------------------------------------- /Output/Positive/Node_Attribute/Figures/SampleImages/Node_Attribute_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_Attribute/Figures/SampleImages/Node_Attribute_05.png -------------------------------------------------------------------------------- /Output/Positive/Node_Attribute/Figures/SampleImages/Node_Attribute_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_Attribute/Figures/SampleImages/Node_Attribute_06.png -------------------------------------------------------------------------------- /Output/Positive/Node_Attribute/Figures/SampleImages/Node_Attribute_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_Attribute/Figures/SampleImages/Node_Attribute_07.png -------------------------------------------------------------------------------- /Output/Positive/Node_Attribute/Figures/SampleImages/Node_Attribute_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_Attribute/Figures/SampleImages/Node_Attribute_08.png -------------------------------------------------------------------------------- /Output/Positive/Node_Attribute/Figures/Thumbnails/BaseColor_Nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_Attribute/Figures/Thumbnails/BaseColor_Nodes.png -------------------------------------------------------------------------------- /Output/Positive/Node_Attribute/Figures/Thumbnails/MetallicRoughness_Nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_Attribute/Figures/Thumbnails/MetallicRoughness_Nodes.png -------------------------------------------------------------------------------- /Output/Positive/Node_Attribute/Figures/Thumbnails/Node_Attribute_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_Attribute/Figures/Thumbnails/Node_Attribute_00.png -------------------------------------------------------------------------------- /Output/Positive/Node_Attribute/Figures/Thumbnails/Node_Attribute_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_Attribute/Figures/Thumbnails/Node_Attribute_01.png -------------------------------------------------------------------------------- /Output/Positive/Node_Attribute/Figures/Thumbnails/Node_Attribute_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_Attribute/Figures/Thumbnails/Node_Attribute_02.png -------------------------------------------------------------------------------- /Output/Positive/Node_Attribute/Figures/Thumbnails/Node_Attribute_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_Attribute/Figures/Thumbnails/Node_Attribute_03.png -------------------------------------------------------------------------------- /Output/Positive/Node_Attribute/Figures/Thumbnails/Node_Attribute_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_Attribute/Figures/Thumbnails/Node_Attribute_04.png -------------------------------------------------------------------------------- /Output/Positive/Node_Attribute/Figures/Thumbnails/Node_Attribute_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_Attribute/Figures/Thumbnails/Node_Attribute_05.png -------------------------------------------------------------------------------- /Output/Positive/Node_Attribute/Figures/Thumbnails/Node_Attribute_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_Attribute/Figures/Thumbnails/Node_Attribute_06.png -------------------------------------------------------------------------------- /Output/Positive/Node_Attribute/Figures/Thumbnails/Node_Attribute_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_Attribute/Figures/Thumbnails/Node_Attribute_07.png -------------------------------------------------------------------------------- /Output/Positive/Node_Attribute/Figures/Thumbnails/Node_Attribute_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_Attribute/Figures/Thumbnails/Node_Attribute_08.png -------------------------------------------------------------------------------- /Output/Positive/Node_Attribute/Figures/Thumbnails/Normal_Nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_Attribute/Figures/Thumbnails/Normal_Nodes.png -------------------------------------------------------------------------------- /Output/Positive/Node_Attribute/Node_Attribute_00.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_Attribute/Node_Attribute_00.bin -------------------------------------------------------------------------------- /Output/Positive/Node_Attribute/Node_Attribute_01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_Attribute/Node_Attribute_01.bin -------------------------------------------------------------------------------- /Output/Positive/Node_Attribute/Node_Attribute_02.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_Attribute/Node_Attribute_02.bin -------------------------------------------------------------------------------- /Output/Positive/Node_Attribute/Node_Attribute_03.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_Attribute/Node_Attribute_03.bin -------------------------------------------------------------------------------- /Output/Positive/Node_Attribute/Node_Attribute_04.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_Attribute/Node_Attribute_04.bin -------------------------------------------------------------------------------- /Output/Positive/Node_Attribute/Node_Attribute_05.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_Attribute/Node_Attribute_05.bin -------------------------------------------------------------------------------- /Output/Positive/Node_Attribute/Node_Attribute_06.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_Attribute/Node_Attribute_06.bin -------------------------------------------------------------------------------- /Output/Positive/Node_Attribute/Node_Attribute_07.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_Attribute/Node_Attribute_07.bin -------------------------------------------------------------------------------- /Output/Positive/Node_Attribute/Node_Attribute_08.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_Attribute/Node_Attribute_08.bin -------------------------------------------------------------------------------- /Output/Positive/Node_Attribute/Textures/BaseColor_Nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_Attribute/Textures/BaseColor_Nodes.png -------------------------------------------------------------------------------- /Output/Positive/Node_Attribute/Textures/MetallicRoughness_Nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_Attribute/Textures/MetallicRoughness_Nodes.png -------------------------------------------------------------------------------- /Output/Positive/Node_Attribute/Textures/Normal_Nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_Attribute/Textures/Normal_Nodes.png -------------------------------------------------------------------------------- /Output/Positive/Node_NegativeScale/Figures/SampleImages/Node_NegativeScale_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_NegativeScale/Figures/SampleImages/Node_NegativeScale_00.png -------------------------------------------------------------------------------- /Output/Positive/Node_NegativeScale/Figures/SampleImages/Node_NegativeScale_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_NegativeScale/Figures/SampleImages/Node_NegativeScale_01.png -------------------------------------------------------------------------------- /Output/Positive/Node_NegativeScale/Figures/SampleImages/Node_NegativeScale_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_NegativeScale/Figures/SampleImages/Node_NegativeScale_02.png -------------------------------------------------------------------------------- /Output/Positive/Node_NegativeScale/Figures/SampleImages/Node_NegativeScale_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_NegativeScale/Figures/SampleImages/Node_NegativeScale_03.png -------------------------------------------------------------------------------- /Output/Positive/Node_NegativeScale/Figures/SampleImages/Node_NegativeScale_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_NegativeScale/Figures/SampleImages/Node_NegativeScale_04.png -------------------------------------------------------------------------------- /Output/Positive/Node_NegativeScale/Figures/SampleImages/Node_NegativeScale_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_NegativeScale/Figures/SampleImages/Node_NegativeScale_05.png -------------------------------------------------------------------------------- /Output/Positive/Node_NegativeScale/Figures/SampleImages/Node_NegativeScale_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_NegativeScale/Figures/SampleImages/Node_NegativeScale_06.png -------------------------------------------------------------------------------- /Output/Positive/Node_NegativeScale/Figures/SampleImages/Node_NegativeScale_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_NegativeScale/Figures/SampleImages/Node_NegativeScale_07.png -------------------------------------------------------------------------------- /Output/Positive/Node_NegativeScale/Figures/SampleImages/Node_NegativeScale_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_NegativeScale/Figures/SampleImages/Node_NegativeScale_08.png -------------------------------------------------------------------------------- /Output/Positive/Node_NegativeScale/Figures/SampleImages/Node_NegativeScale_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_NegativeScale/Figures/SampleImages/Node_NegativeScale_09.png -------------------------------------------------------------------------------- /Output/Positive/Node_NegativeScale/Figures/SampleImages/Node_NegativeScale_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_NegativeScale/Figures/SampleImages/Node_NegativeScale_10.png -------------------------------------------------------------------------------- /Output/Positive/Node_NegativeScale/Figures/SampleImages/Node_NegativeScale_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_NegativeScale/Figures/SampleImages/Node_NegativeScale_11.png -------------------------------------------------------------------------------- /Output/Positive/Node_NegativeScale/Figures/SampleImages/Node_NegativeScale_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_NegativeScale/Figures/SampleImages/Node_NegativeScale_12.png -------------------------------------------------------------------------------- /Output/Positive/Node_NegativeScale/Figures/Thumbnails/BaseColor_Nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_NegativeScale/Figures/Thumbnails/BaseColor_Nodes.png -------------------------------------------------------------------------------- /Output/Positive/Node_NegativeScale/Figures/Thumbnails/MetallicRoughness_Nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_NegativeScale/Figures/Thumbnails/MetallicRoughness_Nodes.png -------------------------------------------------------------------------------- /Output/Positive/Node_NegativeScale/Figures/Thumbnails/Node_NegativeScale_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_NegativeScale/Figures/Thumbnails/Node_NegativeScale_00.png -------------------------------------------------------------------------------- /Output/Positive/Node_NegativeScale/Figures/Thumbnails/Node_NegativeScale_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_NegativeScale/Figures/Thumbnails/Node_NegativeScale_01.png -------------------------------------------------------------------------------- /Output/Positive/Node_NegativeScale/Figures/Thumbnails/Node_NegativeScale_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_NegativeScale/Figures/Thumbnails/Node_NegativeScale_02.png -------------------------------------------------------------------------------- /Output/Positive/Node_NegativeScale/Figures/Thumbnails/Node_NegativeScale_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_NegativeScale/Figures/Thumbnails/Node_NegativeScale_03.png -------------------------------------------------------------------------------- /Output/Positive/Node_NegativeScale/Figures/Thumbnails/Node_NegativeScale_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_NegativeScale/Figures/Thumbnails/Node_NegativeScale_04.png -------------------------------------------------------------------------------- /Output/Positive/Node_NegativeScale/Figures/Thumbnails/Node_NegativeScale_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_NegativeScale/Figures/Thumbnails/Node_NegativeScale_05.png -------------------------------------------------------------------------------- /Output/Positive/Node_NegativeScale/Figures/Thumbnails/Node_NegativeScale_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_NegativeScale/Figures/Thumbnails/Node_NegativeScale_06.png -------------------------------------------------------------------------------- /Output/Positive/Node_NegativeScale/Figures/Thumbnails/Node_NegativeScale_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_NegativeScale/Figures/Thumbnails/Node_NegativeScale_07.png -------------------------------------------------------------------------------- /Output/Positive/Node_NegativeScale/Figures/Thumbnails/Node_NegativeScale_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_NegativeScale/Figures/Thumbnails/Node_NegativeScale_08.png -------------------------------------------------------------------------------- /Output/Positive/Node_NegativeScale/Figures/Thumbnails/Node_NegativeScale_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_NegativeScale/Figures/Thumbnails/Node_NegativeScale_09.png -------------------------------------------------------------------------------- /Output/Positive/Node_NegativeScale/Figures/Thumbnails/Node_NegativeScale_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_NegativeScale/Figures/Thumbnails/Node_NegativeScale_10.png -------------------------------------------------------------------------------- /Output/Positive/Node_NegativeScale/Figures/Thumbnails/Node_NegativeScale_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_NegativeScale/Figures/Thumbnails/Node_NegativeScale_11.png -------------------------------------------------------------------------------- /Output/Positive/Node_NegativeScale/Figures/Thumbnails/Node_NegativeScale_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_NegativeScale/Figures/Thumbnails/Node_NegativeScale_12.png -------------------------------------------------------------------------------- /Output/Positive/Node_NegativeScale/Figures/Thumbnails/Normal_Nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_NegativeScale/Figures/Thumbnails/Normal_Nodes.png -------------------------------------------------------------------------------- /Output/Positive/Node_NegativeScale/Node_NegativeScale_00.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_NegativeScale/Node_NegativeScale_00.bin -------------------------------------------------------------------------------- /Output/Positive/Node_NegativeScale/Node_NegativeScale_01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_NegativeScale/Node_NegativeScale_01.bin -------------------------------------------------------------------------------- /Output/Positive/Node_NegativeScale/Node_NegativeScale_02.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_NegativeScale/Node_NegativeScale_02.bin -------------------------------------------------------------------------------- /Output/Positive/Node_NegativeScale/Node_NegativeScale_03.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_NegativeScale/Node_NegativeScale_03.bin -------------------------------------------------------------------------------- /Output/Positive/Node_NegativeScale/Node_NegativeScale_04.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_NegativeScale/Node_NegativeScale_04.bin -------------------------------------------------------------------------------- /Output/Positive/Node_NegativeScale/Node_NegativeScale_05.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_NegativeScale/Node_NegativeScale_05.bin -------------------------------------------------------------------------------- /Output/Positive/Node_NegativeScale/Node_NegativeScale_06.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_NegativeScale/Node_NegativeScale_06.bin -------------------------------------------------------------------------------- /Output/Positive/Node_NegativeScale/Node_NegativeScale_07.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_NegativeScale/Node_NegativeScale_07.bin -------------------------------------------------------------------------------- /Output/Positive/Node_NegativeScale/Node_NegativeScale_08.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_NegativeScale/Node_NegativeScale_08.bin -------------------------------------------------------------------------------- /Output/Positive/Node_NegativeScale/Node_NegativeScale_09.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_NegativeScale/Node_NegativeScale_09.bin -------------------------------------------------------------------------------- /Output/Positive/Node_NegativeScale/Node_NegativeScale_10.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_NegativeScale/Node_NegativeScale_10.bin -------------------------------------------------------------------------------- /Output/Positive/Node_NegativeScale/Node_NegativeScale_11.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_NegativeScale/Node_NegativeScale_11.bin -------------------------------------------------------------------------------- /Output/Positive/Node_NegativeScale/Node_NegativeScale_12.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_NegativeScale/Node_NegativeScale_12.bin -------------------------------------------------------------------------------- /Output/Positive/Node_NegativeScale/Textures/BaseColor_Nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_NegativeScale/Textures/BaseColor_Nodes.png -------------------------------------------------------------------------------- /Output/Positive/Node_NegativeScale/Textures/MetallicRoughness_Nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_NegativeScale/Textures/MetallicRoughness_Nodes.png -------------------------------------------------------------------------------- /Output/Positive/Node_NegativeScale/Textures/Normal_Nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Node_NegativeScale/Textures/Normal_Nodes.png -------------------------------------------------------------------------------- /Output/Positive/Texture_Sampler/Figures/SampleImages/Texture_Sampler_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Texture_Sampler/Figures/SampleImages/Texture_Sampler_00.png -------------------------------------------------------------------------------- /Output/Positive/Texture_Sampler/Figures/SampleImages/Texture_Sampler_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Texture_Sampler/Figures/SampleImages/Texture_Sampler_01.png -------------------------------------------------------------------------------- /Output/Positive/Texture_Sampler/Figures/SampleImages/Texture_Sampler_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Texture_Sampler/Figures/SampleImages/Texture_Sampler_02.png -------------------------------------------------------------------------------- /Output/Positive/Texture_Sampler/Figures/SampleImages/Texture_Sampler_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Texture_Sampler/Figures/SampleImages/Texture_Sampler_03.png -------------------------------------------------------------------------------- /Output/Positive/Texture_Sampler/Figures/SampleImages/Texture_Sampler_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Texture_Sampler/Figures/SampleImages/Texture_Sampler_04.png -------------------------------------------------------------------------------- /Output/Positive/Texture_Sampler/Figures/SampleImages/Texture_Sampler_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Texture_Sampler/Figures/SampleImages/Texture_Sampler_05.png -------------------------------------------------------------------------------- /Output/Positive/Texture_Sampler/Figures/SampleImages/Texture_Sampler_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Texture_Sampler/Figures/SampleImages/Texture_Sampler_06.png -------------------------------------------------------------------------------- /Output/Positive/Texture_Sampler/Figures/SampleImages/Texture_Sampler_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Texture_Sampler/Figures/SampleImages/Texture_Sampler_07.png -------------------------------------------------------------------------------- /Output/Positive/Texture_Sampler/Figures/SampleImages/Texture_Sampler_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Texture_Sampler/Figures/SampleImages/Texture_Sampler_08.png -------------------------------------------------------------------------------- /Output/Positive/Texture_Sampler/Figures/SampleImages/Texture_Sampler_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Texture_Sampler/Figures/SampleImages/Texture_Sampler_09.png -------------------------------------------------------------------------------- /Output/Positive/Texture_Sampler/Figures/SampleImages/Texture_Sampler_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Texture_Sampler/Figures/SampleImages/Texture_Sampler_10.png -------------------------------------------------------------------------------- /Output/Positive/Texture_Sampler/Figures/SampleImages/Texture_Sampler_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Texture_Sampler/Figures/SampleImages/Texture_Sampler_11.png -------------------------------------------------------------------------------- /Output/Positive/Texture_Sampler/Figures/SampleImages/Texture_Sampler_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Texture_Sampler/Figures/SampleImages/Texture_Sampler_12.png -------------------------------------------------------------------------------- /Output/Positive/Texture_Sampler/Figures/SampleImages/Texture_Sampler_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Texture_Sampler/Figures/SampleImages/Texture_Sampler_13.png -------------------------------------------------------------------------------- /Output/Positive/Texture_Sampler/Figures/Thumbnails/BaseColor_Plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Texture_Sampler/Figures/Thumbnails/BaseColor_Plane.png -------------------------------------------------------------------------------- /Output/Positive/Texture_Sampler/Figures/Thumbnails/Texture_Sampler_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Texture_Sampler/Figures/Thumbnails/Texture_Sampler_00.png -------------------------------------------------------------------------------- /Output/Positive/Texture_Sampler/Figures/Thumbnails/Texture_Sampler_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Texture_Sampler/Figures/Thumbnails/Texture_Sampler_01.png -------------------------------------------------------------------------------- /Output/Positive/Texture_Sampler/Figures/Thumbnails/Texture_Sampler_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Texture_Sampler/Figures/Thumbnails/Texture_Sampler_02.png -------------------------------------------------------------------------------- /Output/Positive/Texture_Sampler/Figures/Thumbnails/Texture_Sampler_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Texture_Sampler/Figures/Thumbnails/Texture_Sampler_03.png -------------------------------------------------------------------------------- /Output/Positive/Texture_Sampler/Figures/Thumbnails/Texture_Sampler_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Texture_Sampler/Figures/Thumbnails/Texture_Sampler_04.png -------------------------------------------------------------------------------- /Output/Positive/Texture_Sampler/Figures/Thumbnails/Texture_Sampler_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Texture_Sampler/Figures/Thumbnails/Texture_Sampler_05.png -------------------------------------------------------------------------------- /Output/Positive/Texture_Sampler/Figures/Thumbnails/Texture_Sampler_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Texture_Sampler/Figures/Thumbnails/Texture_Sampler_06.png -------------------------------------------------------------------------------- /Output/Positive/Texture_Sampler/Figures/Thumbnails/Texture_Sampler_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Texture_Sampler/Figures/Thumbnails/Texture_Sampler_07.png -------------------------------------------------------------------------------- /Output/Positive/Texture_Sampler/Figures/Thumbnails/Texture_Sampler_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Texture_Sampler/Figures/Thumbnails/Texture_Sampler_08.png -------------------------------------------------------------------------------- /Output/Positive/Texture_Sampler/Figures/Thumbnails/Texture_Sampler_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Texture_Sampler/Figures/Thumbnails/Texture_Sampler_09.png -------------------------------------------------------------------------------- /Output/Positive/Texture_Sampler/Figures/Thumbnails/Texture_Sampler_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Texture_Sampler/Figures/Thumbnails/Texture_Sampler_10.png -------------------------------------------------------------------------------- /Output/Positive/Texture_Sampler/Figures/Thumbnails/Texture_Sampler_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Texture_Sampler/Figures/Thumbnails/Texture_Sampler_11.png -------------------------------------------------------------------------------- /Output/Positive/Texture_Sampler/Figures/Thumbnails/Texture_Sampler_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Texture_Sampler/Figures/Thumbnails/Texture_Sampler_12.png -------------------------------------------------------------------------------- /Output/Positive/Texture_Sampler/Figures/Thumbnails/Texture_Sampler_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Texture_Sampler/Figures/Thumbnails/Texture_Sampler_13.png -------------------------------------------------------------------------------- /Output/Positive/Texture_Sampler/Texture_Sampler_00.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Texture_Sampler/Texture_Sampler_00.bin -------------------------------------------------------------------------------- /Output/Positive/Texture_Sampler/Texture_Sampler_01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Texture_Sampler/Texture_Sampler_01.bin -------------------------------------------------------------------------------- /Output/Positive/Texture_Sampler/Texture_Sampler_02.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Texture_Sampler/Texture_Sampler_02.bin -------------------------------------------------------------------------------- /Output/Positive/Texture_Sampler/Texture_Sampler_03.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Texture_Sampler/Texture_Sampler_03.bin -------------------------------------------------------------------------------- /Output/Positive/Texture_Sampler/Texture_Sampler_04.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Texture_Sampler/Texture_Sampler_04.bin -------------------------------------------------------------------------------- /Output/Positive/Texture_Sampler/Texture_Sampler_05.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Texture_Sampler/Texture_Sampler_05.bin -------------------------------------------------------------------------------- /Output/Positive/Texture_Sampler/Texture_Sampler_06.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Texture_Sampler/Texture_Sampler_06.bin -------------------------------------------------------------------------------- /Output/Positive/Texture_Sampler/Texture_Sampler_07.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Texture_Sampler/Texture_Sampler_07.bin -------------------------------------------------------------------------------- /Output/Positive/Texture_Sampler/Texture_Sampler_08.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Texture_Sampler/Texture_Sampler_08.bin -------------------------------------------------------------------------------- /Output/Positive/Texture_Sampler/Texture_Sampler_09.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Texture_Sampler/Texture_Sampler_09.bin -------------------------------------------------------------------------------- /Output/Positive/Texture_Sampler/Texture_Sampler_10.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Texture_Sampler/Texture_Sampler_10.bin -------------------------------------------------------------------------------- /Output/Positive/Texture_Sampler/Texture_Sampler_11.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Texture_Sampler/Texture_Sampler_11.bin -------------------------------------------------------------------------------- /Output/Positive/Texture_Sampler/Texture_Sampler_12.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Texture_Sampler/Texture_Sampler_12.bin -------------------------------------------------------------------------------- /Output/Positive/Texture_Sampler/Texture_Sampler_13.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Texture_Sampler/Texture_Sampler_13.bin -------------------------------------------------------------------------------- /Output/Positive/Texture_Sampler/Textures/BaseColor_Plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Output/Positive/Texture_Sampler/Textures/BaseColor_Plane.png -------------------------------------------------------------------------------- /Source/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Source/ReadmeTemplates/Animation_Node.md: -------------------------------------------------------------------------------- 1 | These models are intended to test the basic attributes of an animation on a node. 2 | 3 | The following table shows the properties that are set for a given model. 4 | 5 | ~~Table~~ 6 | -------------------------------------------------------------------------------- /Source/ReadmeTemplates/Animation_NodeMisc.md: -------------------------------------------------------------------------------- 1 | These models are intended to test edge cases of an animation on a node. 2 | 3 | The following table shows the properties that are set for a given model. 4 | 5 | ~~Table~~ 6 | -------------------------------------------------------------------------------- /Source/ReadmeTemplates/Animation_SkinType.md: -------------------------------------------------------------------------------- 1 | These models are intended to test using different component types with skin joints and weights. 2 | 3 | The following table shows the properties that are set for a given model. 4 | 5 | ~~Table~~ 6 | -------------------------------------------------------------------------------- /Source/ReadmeTemplates/Instancing.md: -------------------------------------------------------------------------------- 1 | These models are intended to test instancing of various properties. 2 | 3 | The following table shows the properties that are set for a given model. 4 | 5 | ~~Table~~ 6 | -------------------------------------------------------------------------------- /Source/ReadmeTemplates/Material_MetallicRoughness.md: -------------------------------------------------------------------------------- 1 | These models are intended to test the various properties of metallic roughness. 2 | 3 | The following table shows the properties that are set for a given model. 4 | 5 | ~~Table~~ 6 | -------------------------------------------------------------------------------- /Source/ReadmeTemplates/Mesh_NoPosition.md: -------------------------------------------------------------------------------- 1 | These models are intended to test not having the `POSITION` attribute present. 2 | 3 | The following table shows the properties that are set for a given model. 4 | 5 | ~~Table~~ 6 | -------------------------------------------------------------------------------- /Source/Resources/Figures/CodeFlowchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Source/Resources/Figures/CodeFlowchart.png -------------------------------------------------------------------------------- /Source/Resources/Figures/Indices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Source/Resources/Figures/Indices.png -------------------------------------------------------------------------------- /Source/Resources/Figures/Indices_Points.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Source/Resources/Figures/Indices_Points.png -------------------------------------------------------------------------------- /Source/Resources/Figures/Indices_Primitive0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Source/Resources/Figures/Indices_Primitive0.png -------------------------------------------------------------------------------- /Source/Resources/Figures/Indices_Primitive1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Source/Resources/Figures/Indices_Primitive1.png -------------------------------------------------------------------------------- /Source/Resources/Figures/NYI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Source/Resources/Figures/NYI.png -------------------------------------------------------------------------------- /Source/Resources/Figures/SampleImages/Animation_Skin_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Source/Resources/Figures/SampleImages/Animation_Skin_12.png -------------------------------------------------------------------------------- /Source/Resources/Figures/Thumbnails/Animation_Skin_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Source/Resources/Figures/Thumbnails/Animation_Skin_12.png -------------------------------------------------------------------------------- /Source/Resources/Figures/Thumbnails/BaseColor_A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Source/Resources/Figures/Thumbnails/BaseColor_A.png -------------------------------------------------------------------------------- /Source/Resources/Figures/Thumbnails/BaseColor_B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Source/Resources/Figures/Thumbnails/BaseColor_B.png -------------------------------------------------------------------------------- /Source/Resources/Figures/Thumbnails/BaseColor_Cube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Source/Resources/Figures/Thumbnails/BaseColor_Cube.png -------------------------------------------------------------------------------- /Source/Resources/Figures/Thumbnails/BaseColor_Grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Source/Resources/Figures/Thumbnails/BaseColor_Grey.png -------------------------------------------------------------------------------- /Source/Resources/Figures/Thumbnails/BaseColor_Nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Source/Resources/Figures/Thumbnails/BaseColor_Nodes.png -------------------------------------------------------------------------------- /Source/Resources/Figures/Thumbnails/BaseColor_Plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Source/Resources/Figures/Thumbnails/BaseColor_Plane.png -------------------------------------------------------------------------------- /Source/Resources/Figures/Thumbnails/BaseColor_X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Source/Resources/Figures/Thumbnails/BaseColor_X.png -------------------------------------------------------------------------------- /Source/Resources/Figures/Thumbnails/Diffuse_Plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Source/Resources/Figures/Thumbnails/Diffuse_Plane.png -------------------------------------------------------------------------------- /Source/Resources/Figures/Thumbnails/Emissive_Plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Source/Resources/Figures/Thumbnails/Emissive_Plane.png -------------------------------------------------------------------------------- /Source/Resources/Figures/Thumbnails/MetallicRoughness_Nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Source/Resources/Figures/Thumbnails/MetallicRoughness_Nodes.png -------------------------------------------------------------------------------- /Source/Resources/Figures/Thumbnails/MetallicRoughness_Plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Source/Resources/Figures/Thumbnails/MetallicRoughness_Plane.png -------------------------------------------------------------------------------- /Source/Resources/Figures/Thumbnails/NYI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Source/Resources/Figures/Thumbnails/NYI.png -------------------------------------------------------------------------------- /Source/Resources/Figures/Thumbnails/Normal_Nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Source/Resources/Figures/Thumbnails/Normal_Nodes.png -------------------------------------------------------------------------------- /Source/Resources/Figures/Thumbnails/Normal_Plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Source/Resources/Figures/Thumbnails/Normal_Plane.png -------------------------------------------------------------------------------- /Source/Resources/Figures/Thumbnails/Occlusion_Plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Source/Resources/Figures/Thumbnails/Occlusion_Plane.png -------------------------------------------------------------------------------- /Source/Resources/Figures/Thumbnails/SpecularGlossiness_Plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Source/Resources/Figures/Thumbnails/SpecularGlossiness_Plane.png -------------------------------------------------------------------------------- /Source/Resources/Figures/UVSpace0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Source/Resources/Figures/UVSpace0.png -------------------------------------------------------------------------------- /Source/Resources/Figures/UVSpace1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Source/Resources/Figures/UVSpace1.png -------------------------------------------------------------------------------- /Source/Resources/Figures/UVSpace2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Source/Resources/Figures/UVSpace2.png -------------------------------------------------------------------------------- /Source/Resources/Figures/UVSpace3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Source/Resources/Figures/UVSpace3.png -------------------------------------------------------------------------------- /Source/Resources/Figures/UVSpace4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Source/Resources/Figures/UVSpace4.png -------------------------------------------------------------------------------- /Source/Resources/Figures/UVSpace5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Source/Resources/Figures/UVSpace5.png -------------------------------------------------------------------------------- /Source/Resources/Figures/skinA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Source/Resources/Figures/skinA.png -------------------------------------------------------------------------------- /Source/Resources/Figures/skinB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Source/Resources/Figures/skinB.png -------------------------------------------------------------------------------- /Source/Resources/Figures/skinC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Source/Resources/Figures/skinC.png -------------------------------------------------------------------------------- /Source/Resources/Figures/skinD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Source/Resources/Figures/skinD.png -------------------------------------------------------------------------------- /Source/Resources/Figures/skinE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Source/Resources/Figures/skinE.png -------------------------------------------------------------------------------- /Source/Resources/Figures/skinF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Source/Resources/Figures/skinF.png -------------------------------------------------------------------------------- /Source/Resources/Textures/BaseColor_A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Source/Resources/Textures/BaseColor_A.png -------------------------------------------------------------------------------- /Source/Resources/Textures/BaseColor_B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Source/Resources/Textures/BaseColor_B.png -------------------------------------------------------------------------------- /Source/Resources/Textures/BaseColor_Cube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Source/Resources/Textures/BaseColor_Cube.png -------------------------------------------------------------------------------- /Source/Resources/Textures/BaseColor_Grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Source/Resources/Textures/BaseColor_Grey.png -------------------------------------------------------------------------------- /Source/Resources/Textures/BaseColor_Nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Source/Resources/Textures/BaseColor_Nodes.png -------------------------------------------------------------------------------- /Source/Resources/Textures/BaseColor_Plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Source/Resources/Textures/BaseColor_Plane.png -------------------------------------------------------------------------------- /Source/Resources/Textures/BaseColor_X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Source/Resources/Textures/BaseColor_X.png -------------------------------------------------------------------------------- /Source/Resources/Textures/Diffuse_Plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Source/Resources/Textures/Diffuse_Plane.png -------------------------------------------------------------------------------- /Source/Resources/Textures/Emissive_Plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Source/Resources/Textures/Emissive_Plane.png -------------------------------------------------------------------------------- /Source/Resources/Textures/MetallicRoughness_Nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Source/Resources/Textures/MetallicRoughness_Nodes.png -------------------------------------------------------------------------------- /Source/Resources/Textures/MetallicRoughness_Plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Source/Resources/Textures/MetallicRoughness_Plane.png -------------------------------------------------------------------------------- /Source/Resources/Textures/Normal_Nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Source/Resources/Textures/Normal_Nodes.png -------------------------------------------------------------------------------- /Source/Resources/Textures/Normal_Plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Source/Resources/Textures/Normal_Plane.png -------------------------------------------------------------------------------- /Source/Resources/Textures/Occlusion_Plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Source/Resources/Textures/Occlusion_Plane.png -------------------------------------------------------------------------------- /Source/Resources/Textures/SpecularGlossiness_Plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bghgary/glTF-Asset-Generator/2acd746e6ccbf336861c4c50bbf3613e535011bd/Source/Resources/Textures/SpecularGlossiness_Plane.png -------------------------------------------------------------------------------- /Source/Runtime/AnimationChannel.cs: -------------------------------------------------------------------------------- 1 | namespace AssetGenerator.Runtime 2 | { 3 | internal class AnimationChannel 4 | { 5 | public AnimationSampler Sampler; 6 | public AnimationChannelTarget Target; 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Source/Runtime/Image.cs: -------------------------------------------------------------------------------- 1 | namespace AssetGenerator.Runtime 2 | { 3 | internal class Image 4 | { 5 | public string Name { get; set; } 6 | public string Uri { get; set; } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Tools/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "scripts": { 3 | "validate": "node validate.js", 4 | "generateScreenshots": "node generateScreenshots.js" 5 | }, 6 | "dependencies": { 7 | "gltf-validator": "^2.0.0-dev.2.7" 8 | } 9 | } 10 | --------------------------------------------------------------------------------