Files
xash3d-fwgs/utils/mdldec/settings.h
Andrey Akhmichin 7bfcd4cef0 utils: mdldec: add options to:
- disable log output.
 - use separate directories for smd and texture files.
 - avoid to write paranoia 2 motion types.
 - ignore filesize checks.
 - enable UV coords shifting.
 - show decompiler version.
 - show help.
2025-04-02 12:07:41 +03:00

17 lines
274 B
C

#pragma once
#ifndef SETTINGS_H
#define SETTINGS_H
extern int globalsettings;
enum
{
SETTINGS_LEGACYMOTION = BIT(0),
SETTINGS_UVSHIFTING = BIT(1),
SETTINGS_NOLOGS = BIT(2),
SETTINGS_NOVALIDATION = BIT(3),
SETTINGS_SEPARATERESOURCES = BIT(4),
};
#endif // VERSION_H