diff options
author | Ian <ianb96@gmail.com> | 2017-11-10 21:06:34 -0500 |
---|---|---|
committer | Ian <ianb96@gmail.com> | 2017-11-13 17:44:58 -0500 |
commit | 12b4e232b279161afbc6b0f6805f49f6f0d91074 (patch) | |
tree | 6d0133079c9fcab56945f5cb84f85355cec0a076 /scene | |
parent | af6f096427c27303a8c791ea0737a34f879711ea (diff) |
fix signals disconnecting on changing target node type
Diffstat (limited to 'scene')
-rwxr-xr-x | scene/main/node.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scene/main/node.cpp b/scene/main/node.cpp index 1889c09d9e..d38c688241 100755 --- a/scene/main/node.cpp +++ b/scene/main/node.cpp @@ -2411,7 +2411,9 @@ void Node::_replace_connections_target(Node *p_new_target) { if (c.flags & CONNECT_PERSIST) { c.source->disconnect(c.signal, this, c.method); - ERR_CONTINUE(!p_new_target->has_method(c.method)); + bool valid = p_new_target->has_method(c.method) || p_new_target->get_script().is_null() || Ref<Script>(p_new_target->get_script())->has_method(c.method); + ERR_EXPLAIN("Attempt to connect signal \'" + c.source->get_class() + "." + c.signal + "\' to nonexistent method \'" + c.target->get_class() + "." + c.method + "\'"); + ERR_CONTINUE(!valid); c.source->connect(c.signal, p_new_target, c.method, c.binds, c.flags); } } |