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@blender.org>2020-09-18 17:57:33 +0300
committerSergey Sharybin <sergey@blender.org>2020-09-21 13:25:45 +0300
commit216a2218768d005c18032df370c19c1c0f571797 (patch)
tree20ec81038b82e567fc67f225bc1f7057dcaccb1f /source/blender/makesdna/DNA_scene_types.h
parent3791dbea1e796f96440437333e4318066f26bde2 (diff)
Implement ID properties support for TimeMarker
Allows scripters to store additional information in the marker itself instead of using work-around approach based on marker names and such. Differential Revision: https://developer.blender.org/D8944
Diffstat (limited to 'source/blender/makesdna/DNA_scene_types.h')
-rw-r--r--source/blender/makesdna/DNA_scene_types.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_scene_types.h b/source/blender/makesdna/DNA_scene_types.h
index 1a63c532c68..9d1af5a2cdc 100644
--- a/source/blender/makesdna/DNA_scene_types.h
+++ b/source/blender/makesdna/DNA_scene_types.h
@@ -837,6 +837,7 @@ typedef struct TimeMarker {
char name[64];
unsigned int flag;
struct Object *camera;
+ struct IDProperty *prop;
} TimeMarker;
/* *************************************************************** */