Fix GLTF exporting invalid meshes and attempting to export gizmo meshes

(cherry picked from commit 2d38c980ee)
This commit is contained in:
Aaron Franke
2024-02-03 21:41:00 -06:00
committed by Rémi Verschelde
parent 7513a79555
commit 16d154e8fd
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.
/**