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:
authorJacques Lucke <mail@jlucke.com>2018-11-23 13:51:42 +0300
committerJacques Lucke <mail@jlucke.com>2018-11-23 13:52:09 +0300
commit4b06d0bf51c38c4358c07823358589ca1cdc6f47 (patch)
tree45f1b53cbd136385e2baec687dc1f4c699072601 /source/blender/blenlib/BLI_callbacks.h
parent2ded8fca7941a7092b80dc66d423056b1483afef (diff)
Python API: bpy.app.handlers.depsgraph_update_pre/post
Reviewers: brecht Differential Revision: https://developer.blender.org/D3978
Diffstat (limited to 'source/blender/blenlib/BLI_callbacks.h')
-rw-r--r--source/blender/blenlib/BLI_callbacks.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/blenlib/BLI_callbacks.h b/source/blender/blenlib/BLI_callbacks.h
index f53a4b385b4..c888152001e 100644
--- a/source/blender/blenlib/BLI_callbacks.h
+++ b/source/blender/blenlib/BLI_callbacks.h
@@ -53,6 +53,8 @@ typedef enum {
BLI_CB_EVT_UNDO_POST,
BLI_CB_EVT_REDO_PRE,
BLI_CB_EVT_REDO_POST,
+ BLI_CB_EVT_DEPSGRAPH_UPDATE_PRE,
+ BLI_CB_EVT_DEPSGRAPH_UPDATE_POST,
BLI_CB_EVT_VERSION_UPDATE,
BLI_CB_EVT_TOT
} eCbEvent;