Fix GLTF exporting invalid meshes and attempting to export gizmo meshes

This commit is contained in:
Aaron Franke
2024-02-03 21:41:00 -06:00
parent b4e2a24c1f
commit 2d38c980ee
2 changed files with 21 additions and 6 deletions

View File

@ -730,6 +730,16 @@ void _err_flush_stdout();
} else \
((void)0)
/**
* Warns about `m_msg` only when verbose mode is enabled.
*/
#define WARN_VERBOSE(m_msg) \
{ \
if (is_print_verbose_enabled()) { \
WARN_PRINT(m_msg); \
} \
}
// Print deprecated warning message macros.
/**