Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastián Barschkis <sebbas@sebbas.org>2019-12-17 13:39:23 +0300
committerSebastián Barschkis <sebbas@sebbas.org>2019-12-17 13:39:23 +0300
commitbda4a284d20164fec2433f7c40f49fc903319400 (patch)
treea30de806282458376a5beffa8d474af2debf9ff4 /source/blender/makesdna/DNA_particle_types.h
parent4b62d989847b821f35443eb3704a5b8e78a5e3c2 (diff)
Fluid: Fix particle settings type
Diffstat (limited to 'source/blender/makesdna/DNA_particle_types.h')
-rw-r--r--source/blender/makesdna/DNA_particle_types.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/source/blender/makesdna/DNA_particle_types.h b/source/blender/makesdna/DNA_particle_types.h
index 8bbbc9fc85d..5012fbeca91 100644
--- a/source/blender/makesdna/DNA_particle_types.h
+++ b/source/blender/makesdna/DNA_particle_types.h
@@ -433,16 +433,16 @@ typedef enum eParticleDrawFlag {
* Hair is always baked static in object/geometry space.
* Other types (normal particles) are in global space and not static baked. */
enum {
- PART_EMITTER = (1 << 0),
+ PART_EMITTER = 0,
/* REACTOR type currently unused */
- /* PART_REACTOR = (1 << 1), */
- PART_HAIR = (1 << 2),
- PART_FLUID = (1 << 3), /* deprecated (belonged to elbeem) */
- PART_FLUID_FLIP = (1 << 4),
- PART_FLUID_SPRAY = (1 << 5),
- PART_FLUID_BUBBLE = (1 << 6),
- PART_FLUID_FOAM = (1 << 7),
- PART_FLUID_TRACER = (1 << 8),
+ /* PART_REACTOR = 1, */
+ PART_HAIR = 2,
+ PART_FLUID = 3, /* deprecated (belonged to elbeem) */
+ PART_FLUID_FLIP = 4,
+ PART_FLUID_SPRAY = 5,
+ PART_FLUID_BUBBLE = 6,
+ PART_FLUID_FOAM = 7,
+ PART_FLUID_TRACER = 8,
};
/* Mirroring Mantaflow particle types from particle.h (Mantaflow header). */