home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 November / Chip_2003-11_cd2.bin / 3d / bodypaint / BodyPaint_3D_Demo.exe / resource / res / description / BPlayer.h < prev    next >
C/C++ Source or Header  |  2003-04-10  |  533b  |  27 lines

  1. #ifndef _BPLAYER_H_
  2. #define _BPLAYER_H_
  3.  
  4. #include "BPbitmap.h"
  5.  
  6. enum
  7. {
  8.     // object properties
  9.     ID_PAINTLAYER_OPACITY                = 2000,
  10.     ID_PAINTLAYER_SHOW                    = 2001,
  11.     ID_PAINTLAYER_BLEND                    = 2002,
  12.         LAYER_NORMAL             = 0,
  13.         LAYER_DISSOLVE         = 1,
  14.         LAYER_DIFFERENCE     = 2,
  15.         LAYER_LIGHTEN             = 3,
  16.         LAYER_DARKEN             = 4,
  17.         LAYER_MULTIPLY         = 5,
  18.         LAYER_SCREEN             = 6,
  19.         LAYER_ADD                     = 7,
  20.         LAYER_EXCLUSION         = 8,
  21.     ID_PAINTLAYER_TEXTURE_LINK    = 2003,
  22.     ID_PAINTLAYER_TEXTURE_NAME    = 2004,
  23.  
  24.     ID_PAINTLAYER_END
  25. };
  26.  
  27. #endif