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:
authorCampbell Barton <ideasman42@gmail.com>2010-01-07 01:42:13 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-01-07 01:42:13 +0300
commitd3a718dc2f556fd8a0dbf6e89e5317d7e85a44f2 (patch)
tree2d209e0604f766caa9e74db4d45d041604a1f353 /source/blender/makesdna/DNA_anim_types.h
parente49e9289f088022e3dc0b23edd1d2a8bcec70dab (diff)
fix for own but in recent driver optimization [#20580] Driver Crasher rev [25763]
recalculate names when needed
Diffstat (limited to 'source/blender/makesdna/DNA_anim_types.h')
-rw-r--r--source/blender/makesdna/DNA_anim_types.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_anim_types.h b/source/blender/makesdna/DNA_anim_types.h
index 5b0dfbdd574..958add428a4 100644
--- a/source/blender/makesdna/DNA_anim_types.h
+++ b/source/blender/makesdna/DNA_anim_types.h
@@ -371,7 +371,9 @@ typedef enum eDriver_Flags {
// TODO: this needs to be implemented at some stage or left out...
//DRIVER_FLAG_LAYERING = (1<<2),
/* use when the expression needs to be recompiled */
- DRIVER_FLAG_RECOMPILE = (1<<3),
+ DRIVER_FLAG_RECOMPILE = (1<<3),
+ /* the names are cached so they dont need have python unicode versions created each time */
+ DRIVER_FLAG_RENAMEVAR = (1<<4),
} eDriver_Flags;
/* F-Curves -------------------------------------- */