mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-10 22:24:33 +00:00
TSShape loader refactor
final setup for assimp Added assimp importers and exporters, removed defaulting to all Added compression to tshape added dts version to tshape and cmake Update assimpShapeLoader.cpp quick fix fix previewing dsq ground work automatically export dsq files for animations Groundwork Adds the same sort of model for registering loaders and exporters as is set out on gbitmap Added a bit more safety around the assimp matrix fix to convert incoming models to torques coordinate system.
This commit is contained in:
parent
fdecae153d
commit
2895e98cbb
16 changed files with 466 additions and 414 deletions
|
|
@ -143,8 +143,15 @@ IF(MSVC)
|
|||
advanced_option( ASSIMP_INSTALL_PDB "Install MSVC debug files." ON )
|
||||
endif()
|
||||
advanced_option(ASSIMP_RAPIDJSON_NO_MEMBER_ITERATOR "Suppress rapidjson warning on MSVC (NOTE: breaks android build)" ON )
|
||||
advanced_option(ASSIMP_BUILD_ALL_IMPORTERS_BY_DEFAULT "default value of all ASSIMP_BUILD_XXX_IMPORTER values" ON)
|
||||
advanced_option(ASSIMP_BUILD_ALL_EXPORTERS_BY_DEFAULT "default value of all ASSIMP_BUILD_XXX_EXPORTER values" ON)
|
||||
advanced_option(ASSIMP_BUILD_ALL_IMPORTERS_BY_DEFAULT "default value of all ASSIMP_BUILD_XXX_IMPORTER values" OFF)
|
||||
advanced_option(ASSIMP_BUILD_FBX_IMPORTER "FBX Importer" ON)
|
||||
advanced_option(ASSIMP_BUILD_GLTF_IMPORTER "GLTF Importer" ON)
|
||||
advanced_option(ASSIMP_BUILD_OBJ_IMPORTER "OBJ Importer" ON)
|
||||
advanced_option(ASSIMP_BUILD_BLEND_IMPORTER "BLENDER Importer" ON)
|
||||
advanced_option(ASSIMP_BUILD_ALL_EXPORTERS_BY_DEFAULT "default value of all ASSIMP_BUILD_XXX_EXPORTER values" OFF)
|
||||
advanced_option(ASSIMP_BUILD_FBX_EXPORTER "FBX Importer" ON)
|
||||
advanced_option(ASSIMP_BUILD_GLTF_EXPORTER "GLTF Importer" ON)
|
||||
advanced_option(ASSIMP_BUILD_OBJ_EXPORTER "OBJ Importer" ON)
|
||||
mark_as_advanced(ASSIMP_ARCHIVE_OUTPUT_DIRECTORY)
|
||||
mark_as_advanced(ASSIMP_BIN_INSTALL_DIR)
|
||||
mark_as_advanced(ASSIMP_LIB_INSTALL_DIR)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue