mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-12 15:45:25 +01:00
f8f34e64df
* Adds explosion particles * Adds back the smoke explosion system * Removes whitespace * Fixes CI * Adds TGMC explosion * Fixes explosions, removes smoke explosions * More particle tweaks * Removes a random extra kickup * Fixes CI by properly removing kickups
21 lines
493 B
Plaintext
21 lines
493 B
Plaintext
// These are used to convery what kind of debris should spawn from being hit by something
|
|
#define DEBRIS_SPARKS "spark"
|
|
#define DEBRIS_WOOD "wood"
|
|
#define DEBRIS_ROCK "rock"
|
|
#define DEBRIS_GLASS "glass"
|
|
#define DEBRIS_LEAF "leaf"
|
|
#define DEBRIS_SNOW "snow"
|
|
|
|
/*
|
|
* Generator defines
|
|
*/
|
|
|
|
#define GEN_NUM "num"
|
|
#define GEN_VECTOR "vector"
|
|
#define GEN_BOX "box"
|
|
#define GEN_COLOR "color"
|
|
#define GEN_CIRCLE "circle"
|
|
#define GEN_SPHERE "sphere"
|
|
#define GEN_SQUARE "square"
|
|
#define GEN_CUBE "cube"
|