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>2010-01-20 14:20:20 +0300
committerJoshua Leung <aligorith@gmail.com>2010-01-20 14:20:20 +0300
commit6307c65534f6d5cf29d08220cea0dbcca9a0e118 (patch)
treeddfe6aff3abd1b49156029c84504d3e753fd624b /release/scripts/ui/space_nla.py
parent09424badda213ea71aaded574b8004bae6fae4f6 (diff)
Animation Editors: Restored 'Realtime Updates' toggle
- In 2.4x, this setting was the lock button in the headers. - Now, this option can be found in the View menus of all relevant editors - Basically, this option toggles whether objects (using animation data that's being edited) get updated during animation editor transforms to give realtime feedback on the effects of tweaks. - By default, this is enabled, since this fits in nicer with 2.5's everything 'live' paradigm. However, it is recommended to disable this on slower computers or when updates for heavy rigs are causing too much workflow lag - Also, removed some old crufty settings from action editor data
Diffstat (limited to 'release/scripts/ui/space_nla.py')
-rw-r--r--release/scripts/ui/space_nla.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/release/scripts/ui/space_nla.py b/release/scripts/ui/space_nla.py
index 0060941b476..b83e2d12625 100644
--- a/release/scripts/ui/space_nla.py
+++ b/release/scripts/ui/space_nla.py
@@ -58,6 +58,8 @@ class NLA_MT_view(bpy.types.Menu):
layout.operator("nla.properties", icon='MENU_PANEL')
layout.separator()
+
+ layout.prop(st, "realtime_updates")
layout.prop(st, "show_cframe_indicator")
layout.operator("anim.time_toggle", text="Show Frames" if st.show_seconds else "Show Seconds")