Update node masks

This commit is contained in:
frohlich
2007-11-09 05:52:58 +00:00
parent 7ed51be4e6
commit cd9e3648e9

View File

@@ -30,10 +30,11 @@
#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