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:
authorJoshua Leung <aligorith@gmail.com>2008-01-30 13:43:44 +0300
committerJoshua Leung <aligorith@gmail.com>2008-01-30 13:43:44 +0300
commite0a625937ba132cd1629dc307082f2f7abf93705 (patch)
treecbe8480bc95f39c29190d6858b7d11007f57427e /source/blender/makesdna/DNA_action_types.h
parent5714c84c54b73ceb67f8eb2d73dfc8783e98b1d4 (diff)
Bugfix for Action Editor Optimisations:
Horizontal keyframe filtering is now optional per editor (off by default). This option may be removed in future, but currently it's there so that users can use it at their own risk. Apparently this has been causing people grief.
Diffstat (limited to 'source/blender/makesdna/DNA_action_types.h')
-rw-r--r--source/blender/makesdna/DNA_action_types.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_action_types.h b/source/blender/makesdna/DNA_action_types.h
index 15e88ea0b86..03b546f42f1 100644
--- a/source/blender/makesdna/DNA_action_types.h
+++ b/source/blender/makesdna/DNA_action_types.h
@@ -221,7 +221,9 @@ typedef enum SACTION_FLAG {
/* don't filter action channels according to visibility */
SACTION_NOHIDE = (1<<3),
/* don't kill overlapping keyframes after transform */
- SACTION_NOTRANSKEYCULL = (1<<4)
+ SACTION_NOTRANSKEYCULL = (1<<4),
+ /* don't include keyframes that are out of view */
+ SACTION_HORIZOPTIMISEON = (1<<5)
} SACTION_FLAG;
/* SpaceAction AutoSnap Settings (also used by SpaceNLA) */