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:
authorJoseph Eagar <joeedh@gmail.com>2007-01-19 13:05:17 +0300
committerJoseph Eagar <joeedh@gmail.com>2007-01-19 13:05:17 +0300
commit048c7879fa3879068a85aacc5c0304715b86353c (patch)
tree6457f090e575d1f51774e36eeee0fe4ad3bb8143 /source/blender/makesdna/DNA_nla_types.h
parent6dd01e80c90af2ee270fa54f0ea27bb4acbe9935 (diff)
=Forward cycling fix=
Commit of patch #5385, to make forward cycling more user-controllable. Previously it only worked on one axis, which was auto-detected from movement. This allows forward cycling to work in more situations, such as stair stepping.
Diffstat (limited to 'source/blender/makesdna/DNA_nla_types.h')
-rw-r--r--source/blender/makesdna/DNA_nla_types.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_nla_types.h b/source/blender/makesdna/DNA_nla_types.h
index 457e667018e..c1fce2772cd 100644
--- a/source/blender/makesdna/DNA_nla_types.h
+++ b/source/blender/makesdna/DNA_nla_types.h
@@ -91,7 +91,9 @@ typedef struct bActionStrip {
#define ACTSTRIP_LOCK_ACTION 0x20
#define ACTSTRIP_MUTE 0x40
#define ACTSTRIP_REVERSE 0x80
-
+#define ACTSTRIP_CYCLIC_USEX 0x100
+#define ACTSTRIP_CYCLIC_USEY 0x200
+#define ACTSTRIP_CYCLIC_USEZ 0x400
#endif