]> git.mxchange.org Git - simgear.git/commitdiff
Update node masks
authorfrohlich <frohlich>
Fri, 9 Nov 2007 05:52:58 +0000 (05:52 +0000)
committerfrohlich <frohlich>
Fri, 9 Nov 2007 05:52:58 +0000 (05:52 +0000)
simgear/scene/util/SGNodeMasks.hxx

index 7a81a82379c2ddb6edbdc9aacde852078550d3d7..79ac6eb94f0236b06f0f22b651e04011f1762c3e 100644 (file)
 #define SG_NODEMASK_CASTSHADOW_BIT     (1<<2)
 /// If set, cast recieves shadows
 #define SG_NODEMASK_RECIEVESHADOW_BIT  (1<<3)
-/// If set, the node is pickable
-#define SG_NODEMASK_PICK_BIT           (1<<4)
-
 /// If set, the node is a gui element
-#define SG_NODEMASK_GUI_BIT            (1<<5)
+#define SG_NODEMASK_GUI_BIT            (1<<4)
+/// If set, the node is a 2D panel
+#define SG_NODEMASK_2DPANEL_BIT        (1<<5)
+/// If set, the node is pickable
+#define SG_NODEMASK_PICK_BIT           (1<<6)
 
 #endif