add more loader options

This commit is contained in:
David Rose 2006-01-14 00:43:50 +00:00
parent 3f87411790
commit dced1a00cb

View File

@ -33,7 +33,9 @@ PUBLISHED:
enum LoaderFlags { enum LoaderFlags {
LF_search = 0x0001, LF_search = 0x0001,
LF_report_errors = 0x0002, LF_report_errors = 0x0002,
LF_convert_anim = 0x0004, LF_convert_skeleton = 0x0004,
LF_convert_channels = 0x0008,
LF_convert_anim = 0x000c, // skeleton + channels
}; };
INLINE LoaderOptions(int flags = LF_search | LF_report_errors); INLINE LoaderOptions(int flags = LF_search | LF_report_errors);