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>2008-05-21 23:24:35 +0400
committerCampbell Barton <ideasman42@gmail.com>2008-05-21 23:24:35 +0400
commit02f34de2b946412f50b3df625c01ce2b908d8c44 (patch)
treee38f954a1a06900c41cb0c3d55d703a879326f9f /source/blender/python/api2_2x/doc
parente1b298cad8a6125238f7331a86995918d288e74d (diff)
add missing flags for NLA strips
Diffstat (limited to 'source/blender/python/api2_2x/doc')
-rw-r--r--source/blender/python/api2_2x/doc/NLA.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/source/blender/python/api2_2x/doc/NLA.py b/source/blender/python/api2_2x/doc/NLA.py
index aeb5178f3d7..0e30bfb118f 100644
--- a/source/blender/python/api2_2x/doc/NLA.py
+++ b/source/blender/python/api2_2x/doc/NLA.py
@@ -19,7 +19,11 @@ It is a bitmask and settings are ORed together.
- ACTIVE: action strip is active in NLA window
- LOCK_ACTION: action start/end are automatically mapped to strip duration
- MUTE: action strip does not contribute to the NLA solution
-
+ - USEX: Turn off automatic single-axis cycling and use X as an offset axis. Note that you can use multiple axes at once.
+ - USEY: Turn off automatic single-axis cycling and use Y as an offset axis. Note that you can use multiple axes at once.
+ - USEZ: Turn off automatic single-axis cycling and use Z as an offset axis. Note that you can use multiple axes at once.
+ - AUTO_BLEND: Automatic calculation of blend in/out values
+
@type StrideAxes: readonly dictionary
@var StrideAxes: Constant dict used by the L{ActionStrip.strideAxis} attribute.
Values are STRIDEAXIS_X, STRIDEAXIS_Y, and STRIDEAXIS_Z.