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:
authorSergey Sharybin <sergey.vfx@gmail.com>2019-02-20 13:32:22 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2019-02-20 13:32:22 +0300
commite6bdc950d25ca9f57effaebe0d4505038901a610 (patch)
tree1a43f506293deadf1cb2edd28d1bcdef3778db1c /source/blender/depsgraph/intern/node/deg_node_operation.h
parentc57f1f3d2786ede19946ef77cd4d10e2b676dc0d (diff)
Fix T61689: Crash when having image and regular animation
Was caused by ambiguity in entry/exit operation for animation channel. Made those explicit now,
Diffstat (limited to 'source/blender/depsgraph/intern/node/deg_node_operation.h')
-rw-r--r--source/blender/depsgraph/intern/node/deg_node_operation.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/depsgraph/intern/node/deg_node_operation.h b/source/blender/depsgraph/intern/node/deg_node_operation.h
index da823595705..8ec71d1829f 100644
--- a/source/blender/depsgraph/intern/node/deg_node_operation.h
+++ b/source/blender/depsgraph/intern/node/deg_node_operation.h
@@ -51,7 +51,9 @@ enum class OperationCode {
/* Animation, Drivers, etc. --------------------------------------------- */
/* NLA + Action */
- ANIMATION,
+ ANIMATION_ENTRY,
+ ANIMATION_EVAL,
+ ANIMATION_EXIT,
/* Driver */
DRIVER,