mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-09 21:54:35 +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
|
|
@ -231,3 +231,4 @@
|
|||
|
||||
/// Password to use when opening encrypted zip files. Change this to whatever the password is for your zips.
|
||||
#define DEFAULT_ZIP_PASSWORD "@TORQUE_APP_PASSWORD@"
|
||||
#define TORQUE_DTS_VERSION @TORQUE_DTS_VERSION@
|
||||
|
|
@ -114,6 +114,12 @@ advanced_option(TORQUE_DISABLE_MEMORY_MANAGER "Disable memory manager" ON)
|
|||
set(TORQUE_ENTRY_FUNCTION "" CACHE STRING "Specify a console function to execute instead of looking for a main.tscript file")
|
||||
mark_as_advanced(TORQUE_ENTRY_FUNCTION)
|
||||
|
||||
set(TORQUE_DTS_VERSION "29" CACHE STRING "Device Tree Source version")
|
||||
|
||||
set_property(CACHE TORQUE_DTS_VERSION PROPERTY STRINGS
|
||||
28 29
|
||||
)
|
||||
|
||||
#fileIO
|
||||
set(TORQUE_APP_PASSWORD "changeme" CACHE STRING "zip file password")
|
||||
advanced_option(TORQUE_DISABLE_VIRTUAL_MOUNT_SYSTEM "Disable virtual mount system" OFF)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue