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
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')
-rw-r--r--release/scripts/ui/space_dopesheet.py1
-rw-r--r--release/scripts/ui/space_graph.py5
-rw-r--r--release/scripts/ui/space_nla.py2
3 files changed, 6 insertions, 2 deletions
diff --git a/release/scripts/ui/space_dopesheet.py b/release/scripts/ui/space_dopesheet.py
index d53443a3fb5..4416f3128a8 100644
--- a/release/scripts/ui/space_dopesheet.py
+++ b/release/scripts/ui/space_dopesheet.py
@@ -73,6 +73,7 @@ class DOPESHEET_MT_view(bpy.types.Menu):
layout.column()
+ layout.prop(st, "realtime_updates")
layout.prop(st, "show_cframe_indicator")
layout.prop(st, "show_sliders")
layout.prop(st, "automerge_keyframes")
diff --git a/release/scripts/ui/space_graph.py b/release/scripts/ui/space_graph.py
index d97fa2bfeed..c1d3b87a9de 100644
--- a/release/scripts/ui/space_graph.py
+++ b/release/scripts/ui/space_graph.py
@@ -68,9 +68,10 @@ class GRAPH_MT_view(bpy.types.Menu):
layout.column()
- layout.separator()
layout.operator("graph.properties", icon='MENU_PANEL')
-
+ layout.separator()
+
+ layout.prop(st, "realtime_updates")
layout.prop(st, "show_cframe_indicator")
layout.prop(st, "show_cursor")
layout.prop(st, "show_sliders")
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")