From 7fc3aa43ce39d8d12e57ec0585a9aed716f1ec24 Mon Sep 17 00:00:00 2001 From: "Guilherme Felipe de C. G. da Silva" Date: Tue, 7 Jun 2022 23:06:45 -0300 Subject: Fix ObjectDB instances leaked on state machine when editor closes --- scene/animation/animation_node_state_machine.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'scene/animation/animation_node_state_machine.h') diff --git a/scene/animation/animation_node_state_machine.h b/scene/animation/animation_node_state_machine.h index 9eeac6a183..20f2d6f858 100644 --- a/scene/animation/animation_node_state_machine.h +++ b/scene/animation/animation_node_state_machine.h @@ -166,7 +166,7 @@ private: StringName playback = "playback"; StringName state_machine_name; - Ref prev_state_machine; + AnimationNodeStateMachine *prev_state_machine = nullptr; bool updating_transitions = false; Vector2 graph_offset; @@ -174,7 +174,7 @@ private: void _tree_changed(); void _remove_transition(const Ref p_transition); void _rename_transition(const StringName &p_name, const StringName &p_new_name); - bool _can_connect(const StringName &p_name, const Vector> p_parents = Vector>()) const; + bool _can_connect(const StringName &p_name, Vector p_parents = Vector()); StringName _get_shortest_path(const StringName &p_path) const; protected: @@ -221,7 +221,7 @@ public: bool can_edit_node(const StringName &p_name) const; - Ref get_prev_state_machine() const; + AnimationNodeStateMachine *get_prev_state_machine() const; void set_graph_offset(const Vector2 &p_offset); Vector2 get_graph_offset() const; -- cgit v1.2.3