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:
authorSebastian Parborg <darkdefende@gmail.com>2019-11-21 13:58:35 +0300
committerSebastian Parborg <darkdefende@gmail.com>2019-11-21 13:58:35 +0300
commit8bc57e5b91eb80f4625b7e64eafa5aa43964ca2a (patch)
treec338937119bf8f7c02cf488a5c4d0b268a242887 /release/scripts/startup/bl_ui/space_graph.py
parent122ba774e024bca0819bbaa56cdfa3c47dd49f0a (diff)
Add curve decimate in the graph editor
Added a animation curve decimate operator in the graph editor Reviewed By: Sybren Differential Revision: http://developer.blender.org/D4841
Diffstat (limited to 'release/scripts/startup/bl_ui/space_graph.py')
-rw-r--r--release/scripts/startup/bl_ui/space_graph.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/space_graph.py b/release/scripts/startup/bl_ui/space_graph.py
index 1a3ef82efa1..15ef7b0ef82 100644
--- a/release/scripts/startup/bl_ui/space_graph.py
+++ b/release/scripts/startup/bl_ui/space_graph.py
@@ -285,6 +285,7 @@ class GRAPH_MT_key(Menu):
layout.operator_menu_enum("graph.easing_type", "type", text="Easing Type")
layout.separator()
+ layout.operator("graph.decimate")
layout.operator("graph.clean").channels = False
layout.operator("graph.clean", text="Clean Channels").channels = True
layout.operator("graph.smooth")