diff options
author | Juan Linietsky <reduzio@gmail.com> | 2016-07-19 21:26:12 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2016-07-19 21:26:12 -0300 |
commit | 0988970c1fca780f51ba4f2dce6afebdfef7f292 (patch) | |
tree | 60d17bcf2424784f14c8a5f603d828c3053636cb /scene/resources/packed_scene.h | |
parent | 9de33e18f14f78165754e97ed0f7827b2e50d560 (diff) | |
download | redot-engine-0988970c1fca780f51ba4f2dce6afebdfef7f292.tar.gz |
Fixed properly not save signals that already exist in their base scenes, closes #5656
Diffstat (limited to 'scene/resources/packed_scene.h')
-rw-r--r-- | scene/resources/packed_scene.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/resources/packed_scene.h b/scene/resources/packed_scene.h index 08a5bb237d..f0e530f88a 100644 --- a/scene/resources/packed_scene.h +++ b/scene/resources/packed_scene.h @@ -163,7 +163,7 @@ public: int get_connection_flags(int p_idx) const; Array get_connection_binds(int p_idx) const; - bool has_connection(int p_node_from, int p_signal, int p_node_to, int p_method) const; + bool has_connection(const NodePath &p_node_from, const StringName& p_signal, const NodePath &p_node_to, const StringName& p_method) const; Vector<NodePath> get_editable_instances() const; |