Implement remaining graphics functions for particles

This commit is contained in:
Simon Robertshaw
2011-10-12 18:40:00 +01:00
parent bd986eb92d
commit 7a62500eb3
3 changed files with 642 additions and 40 deletions

View File

@@ -1,7 +1,7 @@
#ifndef PGRAPHICS_H
#define PGRAPHICS_H
#define PMODE 0x000000FF
#define PMODE 0x00000FFF
#define PMODE_NONE 0x00000000
#define PMODE_FLAT 0x00000001
#define PMODE_BLOB 0x00000002
@@ -10,9 +10,17 @@
#define PMODE_SPARK 0x00000010
#define PMODE_FLARE 0x00000020
#define PMODE_LFLARE 0x00000040
#define PMODE_ADD 0x00000080
#define PMODE_BLEND 0x00000100
#define FIREMODE 0x0000FF00
#define FIRE_ADD 0x00000100
#define FIRE_BLEND 0x00000200
#define NO_DECO 0x00001000
#define FIREMODE 0x00FF0000
#define FIRE_ADD 0x00010000
#define FIRE_BLEND 0x00020000
#define EFFECT 0xFF000000
#define EFFECT_GRAVIN 0x01000000
#define EFFECT_GRAVOUT 0x02000000
#endif