mirror of
https://github.com/AxioDL/PrimeWorldEditor.git
synced 2025-08-08 04:59:23 +00:00
20 lines
401 B
C
20 lines
401 B
C
#ifndef FRENDEROPTIONS_H
|
|
#define FRENDEROPTIONS_H
|
|
|
|
#include <Common/Flags.h>
|
|
|
|
enum ERenderOption
|
|
{
|
|
eNoRenderOptions = 0x0,
|
|
eEnableUVScroll = 0x1,
|
|
eEnableBackfaceCull = 0x2,
|
|
eEnableOccluders = 0x4,
|
|
eNoMaterialSetup = 0x8,
|
|
eEnableBloom = 0x10,
|
|
eNoAlpha = 0x20
|
|
};
|
|
DECLARE_FLAGS(ERenderOption, FRenderOptions)
|
|
|
|
#endif // FRENDEROPTIONS_H
|
|
|