feat: add gltf and glb as model dumping formats

This commit is contained in:
Jan
2024-04-01 01:45:29 +02:00
parent f2438bea12
commit 8a0c93d3d8
12 changed files with 2996 additions and 3002 deletions

View File

@ -20,14 +20,16 @@ public:
enum class ModelOutputFormat_e
{
XMODEL_EXPORT,
OBJ
OBJ,
GLTF,
GLB
};
bool Verbose = false;
std::vector<bool> AssetTypesToHandleBitfield;
ImageOutputFormat_e ImageOutputFormat = ImageOutputFormat_e::DDS;
ModelOutputFormat_e ModelOutputFormat = ModelOutputFormat_e::XMODEL_EXPORT;
ModelOutputFormat_e ModelOutputFormat = ModelOutputFormat_e::GLB;
bool MenuLegacyMode = false;
} Configuration;