mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2025-02-19 08:25:46 +01:00
24 lines
803 B
Text
24 lines
803 B
Text
![]() |
/// @macro {Real} The supported major version of BBMOD and BBANIM files.
|
||
|
#macro BBMOD_VERSION_MAJOR 3
|
||
|
|
||
|
/// @macro {Real} The current minor version of BBMOD and BBANIM files.
|
||
|
#macro BBMOD_VERSION_MINOR 4
|
||
|
|
||
|
/// @macro {Real} A value used to tell that no normals should be generated
|
||
|
/// if the model does not have any.
|
||
|
/// @see BBMOD_NORMALS_FLAT
|
||
|
/// @see BBMOD_NORMALS_SMOOTH
|
||
|
#macro BBMOD_NORMALS_NONE 0
|
||
|
|
||
|
/// @macro {Real} A value used to tell that flat normals should be generated
|
||
|
/// if the model does not have any.
|
||
|
/// @see BBMOD_NORMALS_NONE
|
||
|
/// @see BBMOD_NORMALS_SMOOTH
|
||
|
#macro BBMOD_NORMALS_FLAT 1
|
||
|
|
||
|
/// @macro {Real} A value used to tell that smooth normals should be generated
|
||
|
/// if the model does not have any.
|
||
|
/// @see BBMOD_NORMALS_NONE
|
||
|
/// @see BBMOD_NORMALS_FLAT
|
||
|
#macro BBMOD_NORMALS_SMOOTH 2
|