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>2018-06-27 15:36:37 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2018-06-27 17:35:06 +0300
commit05bcb2d5f55240edf2855176d98be697ab540254 (patch)
tree6ed3f448d96809a3ea9f00bbdf2cb01981dc3d31 /source/blender/depsgraph/intern/builder/deg_builder_nodes.h
parentc3594f6469fbbdd433ee20923cab62c33c271946 (diff)
Depsgraph: Fix missing relation from action to animation when it's shared
Diffstat (limited to 'source/blender/depsgraph/intern/builder/deg_builder_nodes.h')
-rw-r--r--source/blender/depsgraph/intern/builder/deg_builder_nodes.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/depsgraph/intern/builder/deg_builder_nodes.h b/source/blender/depsgraph/intern/builder/deg_builder_nodes.h
index 487b834bd07..6899a86b3e9 100644
--- a/source/blender/depsgraph/intern/builder/deg_builder_nodes.h
+++ b/source/blender/depsgraph/intern/builder/deg_builder_nodes.h
@@ -37,6 +37,7 @@
struct Base;
struct bArmature;
+struct bAction;
struct CacheFile;
struct Camera;
struct bGPdata;
@@ -185,6 +186,7 @@ struct DepsgraphNodeBuilder {
void build_particle_settings(ParticleSettings *part);
void build_cloth(Object *object);
void build_animdata(ID *id);
+ void build_action(bAction *action);
void build_driver(ID *id, FCurve *fcurve, int driver_index);
void build_driver_variables(ID *id, FCurve *fcurve);
void build_driver_id_property(ID *id, const char *rna_path);