- addd OsgNodeMask.h

git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@6768 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: f357e13db1a816b16d7a5c1fa3a9e4bb0d9bb8b0
Former-commit-id: 610fa21a92d43f3b9849850c82d3e27c977720ef
This commit is contained in:
torcs-ng 2019-11-16 22:23:41 +00:00
parent 91f2518856
commit ecca3031fd

View file

@ -0,0 +1,35 @@
/***************************************************************************
file : OsgNodeMask.h
created : Wen Nov 13 15:52:56 UTC 2019
......... : ... 2019 by Ivan Mahonin
email : bh@icystar.com
version : $Id$
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef _OSGNODEMASK_H
#define _OSGNODEMASK_H 1
enum NodeMask
{
NODE_MASK_NONE = 0,
NODE_MASK_ALL = 0xffffffff,
NODE_MASK_SHADOW_RECV = 1 << 0,
NODE_MASK_SHADOW_CAST = 1 << 1,
NODE_MASK_CAR_CURRENT = 1 << 2,
NODE_MASK_CAR_DRIVER = 1 << 3,
NODE_MASK_SKY_BACKGROUND = 1 << 4,
NODE_MASK_SKY_MODEL = 1 << 5,
};
#endif // _OSGNODEMASK_H