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:
authorCampbell Barton <ideasman42@gmail.com>2010-08-12 10:28:46 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-08-12 10:28:46 +0400
commit6be46efe6c5e8947facd5c99efc453a04b9da53e (patch)
treeeb679c1069feb64189aa493c0aa49ce6d46e4638 /source/blender/makesdna/DNA_curve_types.h
parent6827ac7e0dfe5e6489d0d30fa2b860b2a862b0f6 (diff)
fix for the rna curve interpolation enum, 'ease' was using the same value as Bezier.
Diffstat (limited to 'source/blender/makesdna/DNA_curve_types.h')
-rw-r--r--source/blender/makesdna/DNA_curve_types.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_curve_types.h b/source/blender/makesdna/DNA_curve_types.h
index 973ba896100..8537b703c69 100644
--- a/source/blender/makesdna/DNA_curve_types.h
+++ b/source/blender/makesdna/DNA_curve_types.h
@@ -346,5 +346,9 @@ typedef enum eBezTriple_KeyframeType {
#define CU_CHINFO_SMALLCAPS (1<<4)
#define CU_CHINFO_SMALLCAPS_CHECK (1<<5) /* set at runtime, checks if case switching is needed */
+/* mixed with KEY_LINEAR but define here since only curve supports */
+#define KEY_CU_EASE 3
+
+
#endif