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:
authorAntonioya <blendergit@gmail.com>2019-05-16 15:00:31 +0300
committerAntonioya <blendergit@gmail.com>2019-05-16 15:01:48 +0300
commitc0d743238d022e12872549176257db8b9d602e3d (patch)
tree32b528aac836cf8265a2eee65d7b38f71c246d08 /source/blender/makesdna
parent86eefefdc1aae2a3ab4160770032671abf55aa30 (diff)
GPencil: New filter in Onion by keyframe type
This new filter allows to select only some type of keyframe (keyframe, breakdown, etc). This was a request of artists that are used to work with other 2D softwares. Also some cleanup to remove aninmatable option to some properties.
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_gpencil_types.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_gpencil_types.h b/source/blender/makesdna/DNA_gpencil_types.h
index bb38311cbac..007be021def 100644
--- a/source/blender/makesdna/DNA_gpencil_types.h
+++ b/source/blender/makesdna/DNA_gpencil_types.h
@@ -518,7 +518,8 @@ typedef struct bGPdata {
/** Draw mode for strokes (eGP_DrawMode). */
short draw_mode;
- char _pad3[2];
+ /** Keyframe type for onion filter (eBezTriple_KeyframeType plus All option) */
+ short onion_keytype;
bGPgrid grid;