Add support for FPS snap in Animation Editor.

(cherry picked from commit 4203266923)
This commit is contained in:
Juan Linietsky
2019-04-14 16:43:38 -03:00
committed by Hein-Pieter van Braam-Stewart
parent 0064d26517
commit 6fac922bff
3 changed files with 175 additions and 20 deletions

View File

@ -670,6 +670,7 @@ Dictionary AnimationPlayerEditor::get_state() const {
if (EditorNode::get_singleton()->get_edited_scene() && is_visible_in_tree() && player) {
d["player"] = EditorNode::get_singleton()->get_edited_scene()->get_path_to(player);
d["animation"] = player->get_assigned_animation();
d["track_editor_state"] = track_editor->get_state();
}
return d;
@ -696,6 +697,10 @@ void AnimationPlayerEditor::set_state(const Dictionary &p_state) {
_animation_edit();
}
}
if (p_state.has("track_editor_state")) {
track_editor->set_state(p_state["track_editor_state"]);
}
}
}