diff options
author | Andreas Haas <liu.gam3@gmail.com> | 2016-09-25 19:21:21 +0200 |
---|---|---|
committer | Andreas Haas <liu.gam3@gmail.com> | 2016-09-25 19:26:01 +0200 |
commit | 276087e92dd707d990565a373ab9f51a3a52ef2d (patch) | |
tree | 33b0647079614a9468d2ac7d5d5fe385c778d374 /core | |
parent | 20c7b65b7e3630ada9f2e8b6b64926ec05d68c4c (diff) |
Throw error when trying to emit a non-existing signal.
closes #6017
Diffstat (limited to 'core')
-rw-r--r-- | core/object.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/core/object.cpp b/core/object.cpp index 8cd4e07097..9a1e9be8d5 100644 --- a/core/object.cpp +++ b/core/object.cpp @@ -1215,6 +1215,15 @@ void Object::emit_signal(const StringName& p_name,const Variant** p_args,int p_a Signal *s = signal_map.getptr(p_name); if (!s) { +#ifdef DEBUG_ENABLED + bool signal_is_valid = ObjectTypeDB::has_signal(get_type_name(),p_name); + //check in script + if (!signal_is_valid && !script.is_null() && !Ref<Script>(script)->has_script_signal(p_name)) { + ERR_EXPLAIN("Can't emit non-existing signal " + String("\"")+p_name+"\"."); + ERR_FAIL(); + } +#endif + //not connected? just return return; } |