├── .gitattributes ├── Binaries └── assimp-vc141-mt.dll ├── LICENSE ├── README.md ├── source ├── ImportedMesh.cpp ├── ImportedMesh.h ├── Importer.cpp └── Importer.h └── thirdparty └── assimp ├── include └── assimp │ ├── .editorconfig │ ├── BaseImporter.h │ ├── Bitmap.h │ ├── BlobIOSystem.h │ ├── ByteSwapper.h │ ├── Compiler │ ├── poppack1.h │ ├── pstdint.h │ └── pushpack1.h │ ├── CreateAnimMesh.h │ ├── DefaultIOStream.h │ ├── DefaultIOSystem.h │ ├── DefaultLogger.hpp │ ├── Defines.h │ ├── Exceptional.h │ ├── Exporter.hpp │ ├── GenericProperty.h │ ├── Hash.h │ ├── IOStream.hpp │ ├── IOStreamBuffer.h │ ├── IOSystem.hpp │ ├── Importer.hpp │ ├── LineSplitter.h │ ├── LogAux.h │ ├── LogStream.hpp │ ├── Logger.hpp │ ├── Macros.h │ ├── MathFunctions.h │ ├── MemoryIOWrapper.h │ ├── NullLogger.hpp │ ├── ParsingUtils.h │ ├── Profiler.h │ ├── ProgressHandler.hpp │ ├── RemoveComments.h │ ├── SGSpatialSort.h │ ├── SceneCombiner.h │ ├── SkeletonMeshBuilder.h │ ├── SmoothingGroups.h │ ├── SmoothingGroups.inl │ ├── SpatialSort.h │ ├── StandardShapes.h │ ├── StreamReader.h │ ├── StreamWriter.h │ ├── StringComparison.h │ ├── StringUtils.h │ ├── Subdivision.h │ ├── TinyFormatter.h │ ├── Vertex.h │ ├── XMLTools.h │ ├── ZipArchiveIOSystem.h │ ├── aabb.h │ ├── ai_assert.h │ ├── anim.h │ ├── camera.h │ ├── cexport.h │ ├── cfileio.h │ ├── cimport.h │ ├── color4.h │ ├── color4.inl │ ├── config.h │ ├── defs.h │ ├── fast_atof.h │ ├── importerdesc.h │ ├── irrXMLWrapper.h │ ├── light.h │ ├── material.h │ ├── material.inl │ ├── matrix3x3.h │ ├── matrix3x3.inl │ ├── matrix4x4.h │ ├── matrix4x4.inl │ ├── mesh.h │ ├── metadata.h │ ├── pbrmaterial.h │ ├── port │ └── AndroidJNI │ │ └── AndroidJNIIOSystem.h │ ├── postprocess.h │ ├── qnan.h │ ├── quaternion.h │ ├── quaternion.inl │ ├── scene.h │ ├── texture.h │ ├── types.h │ ├── vector2.h │ ├── vector2.inl │ ├── vector3.h │ ├── vector3.inl │ └── version.h └── lib └── assimp-vc141-mt.lib /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/.gitattributes -------------------------------------------------------------------------------- /Binaries/assimp-vc141-mt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/Binaries/assimp-vc141-mt.dll -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/README.md -------------------------------------------------------------------------------- /source/ImportedMesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/source/ImportedMesh.cpp -------------------------------------------------------------------------------- /source/ImportedMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/source/ImportedMesh.h -------------------------------------------------------------------------------- /source/Importer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/source/Importer.cpp -------------------------------------------------------------------------------- /source/Importer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/source/Importer.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/.editorconfig -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/BaseImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/BaseImporter.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/Bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/Bitmap.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/BlobIOSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/BlobIOSystem.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/ByteSwapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/ByteSwapper.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/Compiler/poppack1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/Compiler/poppack1.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/Compiler/pstdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/Compiler/pstdint.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/Compiler/pushpack1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/Compiler/pushpack1.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/CreateAnimMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/CreateAnimMesh.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/DefaultIOStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/DefaultIOStream.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/DefaultIOSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/DefaultIOSystem.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/DefaultLogger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/DefaultLogger.hpp -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/Defines.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/Exceptional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/Exceptional.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/Exporter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/Exporter.hpp -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/GenericProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/GenericProperty.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/Hash.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/IOStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/IOStream.hpp -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/IOStreamBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/IOStreamBuffer.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/IOSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/IOSystem.hpp -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/Importer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/Importer.hpp -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/LineSplitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/LineSplitter.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/LogAux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/LogAux.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/LogStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/LogStream.hpp -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/Logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/Logger.hpp -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/Macros.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/MathFunctions.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/MemoryIOWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/MemoryIOWrapper.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/NullLogger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/NullLogger.hpp -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/ParsingUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/ParsingUtils.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/Profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/Profiler.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/ProgressHandler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/ProgressHandler.hpp -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/RemoveComments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/RemoveComments.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/SGSpatialSort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/SGSpatialSort.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/SceneCombiner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/SceneCombiner.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/SkeletonMeshBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/SkeletonMeshBuilder.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/SmoothingGroups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/SmoothingGroups.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/SmoothingGroups.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/SmoothingGroups.inl -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/SpatialSort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/SpatialSort.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/StandardShapes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/StandardShapes.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/StreamReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/StreamReader.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/StreamWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/StreamWriter.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/StringComparison.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/StringComparison.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/StringUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/StringUtils.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/Subdivision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/Subdivision.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/TinyFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/TinyFormatter.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/Vertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/Vertex.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/XMLTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/XMLTools.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/ZipArchiveIOSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/ZipArchiveIOSystem.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/aabb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/aabb.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/ai_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/ai_assert.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/anim.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/camera.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/cexport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/cexport.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/cfileio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/cfileio.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/cimport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/cimport.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/color4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/color4.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/color4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/color4.inl -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/config.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/defs.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/fast_atof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/fast_atof.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/importerdesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/importerdesc.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/irrXMLWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/irrXMLWrapper.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/light.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/material.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/material.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/material.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/material.inl -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/matrix3x3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/matrix3x3.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/matrix3x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/matrix3x3.inl -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/matrix4x4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/matrix4x4.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/matrix4x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/matrix4x4.inl -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/mesh.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/metadata.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/pbrmaterial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/pbrmaterial.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/port/AndroidJNI/AndroidJNIIOSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/port/AndroidJNI/AndroidJNIIOSystem.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/postprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/postprocess.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/qnan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/qnan.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/quaternion.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/quaternion.inl -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/scene.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/texture.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/types.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/vector2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/vector2.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/vector2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/vector2.inl -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/vector3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/vector3.h -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/vector3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/vector3.inl -------------------------------------------------------------------------------- /thirdparty/assimp/include/assimp/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/include/assimp/version.h -------------------------------------------------------------------------------- /thirdparty/assimp/lib/assimp-vc141-mt.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subramanya1997/Import-3D-models-ingame/HEAD/thirdparty/assimp/lib/assimp-vc141-mt.lib --------------------------------------------------------------------------------