From 51c85a23cafdf90aa88d57faea60f6a8103d1c7a Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Thu, 29 Nov 2018 16:16:10 +0100 Subject: Cleanup: mark `PART_DRAW_EMITTER` of ParticleSetting drawflags as dreprecated. --- source/blender/makesdna/DNA_particle_types.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'source/blender/makesdna/DNA_particle_types.h') diff --git a/source/blender/makesdna/DNA_particle_types.h b/source/blender/makesdna/DNA_particle_types.h index ebccb36a671..5d830cf3d5f 100644 --- a/source/blender/makesdna/DNA_particle_types.h +++ b/source/blender/makesdna/DNA_particle_types.h @@ -347,7 +347,9 @@ typedef enum eParticleDrawFlag { PART_DRAW_VEL = (1 << 0), PART_DRAW_GLOBAL_OB = (1 << 1), PART_DRAW_SIZE = (1 << 2), - PART_DRAW_EMITTER = (1 << 3), /* render emitter also */ +#ifdef DNA_DEPRECATED + PART_DRAW_EMITTER = (1 << 3), /* render emitter also */ /* DEPRECATED */ +#endif PART_DRAW_HEALTH = (1 << 4), PART_ABS_PATH_TIME = (1 << 5), PART_DRAW_COUNT_GR = (1 << 6), -- cgit v1.2.3