diff options
author | Kevin Choi <code.kchoi@gmail.com> | 2015-05-25 00:54:24 -0400 |
---|---|---|
committer | Kevin Choi <code.kchoi@gmail.com> | 2015-05-25 00:54:24 -0400 |
commit | ec93668f8d652f826b6e89861746bf655ec29234 (patch) | |
tree | 639099d471f574e38a6a3793e99240825385be83 /tools/editor/editor_node.cpp | |
parent | b210f52f4a090ba9a6bf60138b4e5222678ba98e (diff) | |
parent | f36e7dcb405ead38c33d808f732fd7b4e23d19e5 (diff) |
Merge pull request #1 from okamstudio/master
improved animation editor
Diffstat (limited to 'tools/editor/editor_node.cpp')
-rw-r--r-- | tools/editor/editor_node.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/editor/editor_node.cpp b/tools/editor/editor_node.cpp index 56b813344a..7157dbda96 100644 --- a/tools/editor/editor_node.cpp +++ b/tools/editor/editor_node.cpp @@ -2838,9 +2838,9 @@ void EditorNode::_instance_request(const String& p_path){ request_instance_scene(p_path); } -void EditorNode::_property_keyed(const String& p_keyed,const Variant& p_value) { +void EditorNode::_property_keyed(const String& p_keyed,const Variant& p_value,bool p_advance) { - animation_editor->insert_value_key(p_keyed,p_value); + animation_editor->insert_value_key(p_keyed,p_value,p_advance); } void EditorNode::_transform_keyed(Object *sp,const String& p_sub,const Transform& p_key) { |