├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ └── issue.md ├── .gitignore ├── ApiSupport.cs ├── ConsoleWarn.cs ├── Converter.cs ├── DestinyColladaGenerator.csproj ├── DestinyColladaGenerator.sln ├── ObjectExtensions.cs ├── Parsers.cs ├── Program.cs ├── PublishAll.ps1 ├── README.md ├── ReadLocal.cs ├── Resources ├── Blank_API_Shader.py ├── Blank_API_Shader2.py ├── Gray25_Dummy.png ├── Iridescence Lookup.dds ├── Iridescence Lookup.png ├── NormalMap_Dummy.png ├── armor.dae ├── bow.dae ├── ghost.dae ├── handcannon.dae ├── hgl.dae ├── io_import_collada_normals.py ├── lfr.dae ├── lgl.dae ├── lmg.dae ├── localManifest.json ├── maglauncher.dae ├── sparrow.dae ├── template.dae ├── template.old.py ├── template.old.shader ├── template.old2.py ├── template.py ├── template.shader ├── template.vmat └── tubelauncher.dae ├── Shaders.cs ├── ShadersGame.cs ├── TGXMUtils.cs ├── WriteCOLLADA.cs ├── appicon.ico ├── collada_schema_1_4.cs └── jokeIcon.ico /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiredHobgoblin/Destiny-Collada-Generator/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiredHobgoblin/Destiny-Collada-Generator/HEAD/.github/ISSUE_TEMPLATE/issue.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiredHobgoblin/Destiny-Collada-Generator/HEAD/.gitignore -------------------------------------------------------------------------------- /ApiSupport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiredHobgoblin/Destiny-Collada-Generator/HEAD/ApiSupport.cs -------------------------------------------------------------------------------- /ConsoleWarn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiredHobgoblin/Destiny-Collada-Generator/HEAD/ConsoleWarn.cs -------------------------------------------------------------------------------- /Converter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiredHobgoblin/Destiny-Collada-Generator/HEAD/Converter.cs -------------------------------------------------------------------------------- /DestinyColladaGenerator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiredHobgoblin/Destiny-Collada-Generator/HEAD/DestinyColladaGenerator.csproj -------------------------------------------------------------------------------- /DestinyColladaGenerator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiredHobgoblin/Destiny-Collada-Generator/HEAD/DestinyColladaGenerator.sln -------------------------------------------------------------------------------- /ObjectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiredHobgoblin/Destiny-Collada-Generator/HEAD/ObjectExtensions.cs -------------------------------------------------------------------------------- /Parsers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiredHobgoblin/Destiny-Collada-Generator/HEAD/Parsers.cs -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiredHobgoblin/Destiny-Collada-Generator/HEAD/Program.cs -------------------------------------------------------------------------------- /PublishAll.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiredHobgoblin/Destiny-Collada-Generator/HEAD/PublishAll.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiredHobgoblin/Destiny-Collada-Generator/HEAD/README.md -------------------------------------------------------------------------------- /ReadLocal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiredHobgoblin/Destiny-Collada-Generator/HEAD/ReadLocal.cs -------------------------------------------------------------------------------- /Resources/Blank_API_Shader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiredHobgoblin/Destiny-Collada-Generator/HEAD/Resources/Blank_API_Shader.py -------------------------------------------------------------------------------- /Resources/Blank_API_Shader2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiredHobgoblin/Destiny-Collada-Generator/HEAD/Resources/Blank_API_Shader2.py -------------------------------------------------------------------------------- /Resources/Gray25_Dummy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiredHobgoblin/Destiny-Collada-Generator/HEAD/Resources/Gray25_Dummy.png -------------------------------------------------------------------------------- /Resources/Iridescence Lookup.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiredHobgoblin/Destiny-Collada-Generator/HEAD/Resources/Iridescence Lookup.dds -------------------------------------------------------------------------------- /Resources/Iridescence Lookup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiredHobgoblin/Destiny-Collada-Generator/HEAD/Resources/Iridescence Lookup.png -------------------------------------------------------------------------------- /Resources/NormalMap_Dummy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiredHobgoblin/Destiny-Collada-Generator/HEAD/Resources/NormalMap_Dummy.png -------------------------------------------------------------------------------- /Resources/armor.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiredHobgoblin/Destiny-Collada-Generator/HEAD/Resources/armor.dae -------------------------------------------------------------------------------- /Resources/bow.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiredHobgoblin/Destiny-Collada-Generator/HEAD/Resources/bow.dae -------------------------------------------------------------------------------- /Resources/ghost.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiredHobgoblin/Destiny-Collada-Generator/HEAD/Resources/ghost.dae -------------------------------------------------------------------------------- /Resources/handcannon.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiredHobgoblin/Destiny-Collada-Generator/HEAD/Resources/handcannon.dae -------------------------------------------------------------------------------- /Resources/hgl.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiredHobgoblin/Destiny-Collada-Generator/HEAD/Resources/hgl.dae -------------------------------------------------------------------------------- /Resources/io_import_collada_normals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiredHobgoblin/Destiny-Collada-Generator/HEAD/Resources/io_import_collada_normals.py -------------------------------------------------------------------------------- /Resources/lfr.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiredHobgoblin/Destiny-Collada-Generator/HEAD/Resources/lfr.dae -------------------------------------------------------------------------------- /Resources/lgl.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiredHobgoblin/Destiny-Collada-Generator/HEAD/Resources/lgl.dae -------------------------------------------------------------------------------- /Resources/lmg.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiredHobgoblin/Destiny-Collada-Generator/HEAD/Resources/lmg.dae -------------------------------------------------------------------------------- /Resources/localManifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiredHobgoblin/Destiny-Collada-Generator/HEAD/Resources/localManifest.json -------------------------------------------------------------------------------- /Resources/maglauncher.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiredHobgoblin/Destiny-Collada-Generator/HEAD/Resources/maglauncher.dae -------------------------------------------------------------------------------- /Resources/sparrow.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiredHobgoblin/Destiny-Collada-Generator/HEAD/Resources/sparrow.dae -------------------------------------------------------------------------------- /Resources/template.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiredHobgoblin/Destiny-Collada-Generator/HEAD/Resources/template.dae -------------------------------------------------------------------------------- /Resources/template.old.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiredHobgoblin/Destiny-Collada-Generator/HEAD/Resources/template.old.py -------------------------------------------------------------------------------- /Resources/template.old.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiredHobgoblin/Destiny-Collada-Generator/HEAD/Resources/template.old.shader -------------------------------------------------------------------------------- /Resources/template.old2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiredHobgoblin/Destiny-Collada-Generator/HEAD/Resources/template.old2.py -------------------------------------------------------------------------------- /Resources/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiredHobgoblin/Destiny-Collada-Generator/HEAD/Resources/template.py -------------------------------------------------------------------------------- /Resources/template.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiredHobgoblin/Destiny-Collada-Generator/HEAD/Resources/template.shader -------------------------------------------------------------------------------- /Resources/template.vmat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiredHobgoblin/Destiny-Collada-Generator/HEAD/Resources/template.vmat -------------------------------------------------------------------------------- /Resources/tubelauncher.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiredHobgoblin/Destiny-Collada-Generator/HEAD/Resources/tubelauncher.dae -------------------------------------------------------------------------------- /Shaders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiredHobgoblin/Destiny-Collada-Generator/HEAD/Shaders.cs -------------------------------------------------------------------------------- /ShadersGame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiredHobgoblin/Destiny-Collada-Generator/HEAD/ShadersGame.cs -------------------------------------------------------------------------------- /TGXMUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiredHobgoblin/Destiny-Collada-Generator/HEAD/TGXMUtils.cs -------------------------------------------------------------------------------- /WriteCOLLADA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiredHobgoblin/Destiny-Collada-Generator/HEAD/WriteCOLLADA.cs -------------------------------------------------------------------------------- /appicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiredHobgoblin/Destiny-Collada-Generator/HEAD/appicon.ico -------------------------------------------------------------------------------- /collada_schema_1_4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiredHobgoblin/Destiny-Collada-Generator/HEAD/collada_schema_1_4.cs -------------------------------------------------------------------------------- /jokeIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiredHobgoblin/Destiny-Collada-Generator/HEAD/jokeIcon.ico --------------------------------------------------------------------------------