1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-02-04 21:40:03 +00:00
OpenMW/apps/openmw/mwrender/vismask.hpp
2015-05-23 05:42:37 +02:00

25 lines
479 B
C++

#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,
Mask_Debug = 0x4,
Mask_Actor = 0x8,
// top level masks
Mask_Scene = 0x10,
Mask_GUI = 0x20
};
}
#endif