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>2014-04-28 17:59:15 +0400
committerJoshua Leung <aligorith@gmail.com>2014-04-28 17:59:42 +0400
commita3a3141f53e5341cc4c669297ed1d894ad1d89e1 (patch)
treee1aac5c36e1cc830de2940ab9c26adee94edfac3 /release
parent68c3b6350ad702195a86adfcde65687269820afd (diff)
NLA Editor: Make Single User for NLA Strips
This operator is used to make sure that if/when you have multiple strips using the same action, if you select these and run this operator, each strip will be given its own copy of the action. This is useful if you decide later that you want to start using an existing action as a base. NOTE: This does not recursively go inside meta's, so care is still advised in that case.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_nla.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/space_nla.py b/release/scripts/startup/bl_ui/space_nla.py
index ae5d308b0d3..06fe73a543c 100644
--- a/release/scripts/startup/bl_ui/space_nla.py
+++ b/release/scripts/startup/bl_ui/space_nla.py
@@ -147,6 +147,9 @@ class NLA_MT_edit(Menu):
layout.operator("nla.action_sync_length").active = False
layout.separator()
+ layout.operator("nla.make_single_user")
+
+ layout.separator()
layout.operator("nla.swap")
layout.operator("nla.move_up")
layout.operator("nla.move_down")