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

@ -31,9 +31,11 @@ PUBLISHED:
// At the moment, we only have this one set of flags. Maybe one day // At the moment, we only have this one set of flags. Maybe one day
// there will be more options. // there will be more options.
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);