diff options
Diffstat (limited to 'tools/trackeditor/code/main/shapeconstants.h')
-rw-r--r-- | tools/trackeditor/code/main/shapeconstants.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/tools/trackeditor/code/main/shapeconstants.h b/tools/trackeditor/code/main/shapeconstants.h new file mode 100644 index 0000000..c6c777d --- /dev/null +++ b/tools/trackeditor/code/main/shapeconstants.h @@ -0,0 +1,34 @@ +#ifndef SHAPE_CONSTANTS_H +#define SHAPE_CONSTANTS_H + +#define LEAD_COLOR 1 // green +#define ACTIVE_COLOR 1 // white +#define ACTIVE_AFFECTED_COLOR 1 // purple +#define DORMANT_COLOR 1 // blue +#define HILITE_COLOR 1 // pale blue + +#define P3D_BILLBOARD_QUAD_ID 0x040260 +#define P3D_BILLBOARD_QUAD_GROUP_ID 0x040261 +#define MAYA_LAMBERT_ID 1380729165 +#define MAYA_PHONG_ID 1380993103 +#define MAYA_LAYERED_SHADER_ID 1280922195 + +namespace TETreeLine +{ + +const float MIN_DISPLAY_SIZE=0.001f; + +enum { + WIREFRAME, + WIREFRAME_SHADED, + SMOOTH_SHADED, + FLAT_SHADED, + VERTICES, + LAST_TOKEN +}; + +}; //namespace TETreeLine + + +#endif //SHAPE_CONSTANTS_H + |