mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
AnimationTrackEditor Fix signal connection on root exiting the tree
This commit is contained in:
parent
a88e82078d
commit
2ede2bac0b
2 changed files with 2 additions and 2 deletions
|
@ -3188,7 +3188,7 @@ Ref<Animation> AnimationTrackEditor::get_current_animation() const {
|
||||||
return animation;
|
return animation;
|
||||||
}
|
}
|
||||||
|
|
||||||
void AnimationTrackEditor::_root_removed(Node *p_root) {
|
void AnimationTrackEditor::_root_removed() {
|
||||||
root = nullptr;
|
root = nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -372,7 +372,7 @@ class AnimationTrackEditor : public VBoxContainer {
|
||||||
TrackIndices _confirm_insert(InsertData p_id, TrackIndices p_next_tracks, bool p_create_reset, Ref<Animation> p_reset_anim, bool p_create_beziers);
|
TrackIndices _confirm_insert(InsertData p_id, TrackIndices p_next_tracks, bool p_create_reset, Ref<Animation> p_reset_anim, bool p_create_beziers);
|
||||||
void _insert_delay(bool p_create_reset, bool p_create_beziers);
|
void _insert_delay(bool p_create_reset, bool p_create_beziers);
|
||||||
|
|
||||||
void _root_removed(Node *p_root);
|
void _root_removed();
|
||||||
|
|
||||||
PropertyInfo _find_hint_for_track(int p_idx, NodePath &r_base_path, Variant *r_current_val = nullptr);
|
PropertyInfo _find_hint_for_track(int p_idx, NodePath &r_base_path, Variant *r_current_val = nullptr);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue