1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-26 09:35:28 +00:00
OpenMW/apps/openmw/mwrender/vismask.hpp

24 lines
453 B
C++
Raw Normal View History

2015-04-19 01:57:52 +02:00
#ifndef OPENMW_MWRENDER_VISMASK_H
#define OPENMW_MWRENDER_VISMASK_H
namespace MWRender
{
/// Node masks used for controlling visibility of game objects.
enum VisMask
{
Mask_UpdateVisitor = 0x1, // reserved for separating UpdateVisitors from CullVisitors
// child of Scene
Mask_Effect = 0x2,
2015-05-02 22:45:27 +02:00
Mask_Debug = 0x4,
// top level masks
Mask_Scene = 0x10,
Mask_GUI = 0x20
2015-04-19 01:57:52 +02:00
};
}
#endif