diff options
author | A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> | 2024-01-18 17:20:56 +0100 |
---|---|---|
committer | A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> | 2024-09-20 16:39:09 +0200 |
commit | 203d3be200c9b607e5eaba82d9a267813a6700cd (patch) | |
tree | ced60a02eabb92aca3759a2f7165fb78352e852c /core/object/object.h | |
parent | 2be730a05b7ff221b89c967981f7caee6e164ef0 (diff) | |
download | redot-engine-203d3be200c9b607e5eaba82d9a267813a6700cd.tar.gz |
[Core] Add way to check if a signal has any connections
Added to `Object` and `Signal`
Diffstat (limited to 'core/object/object.h')
-rw-r--r-- | core/object/object.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/object/object.h b/core/object/object.h index 1274247d71..763e2974b9 100644 --- a/core/object/object.h +++ b/core/object/object.h @@ -932,6 +932,7 @@ public: MTVIRTUAL Error connect(const StringName &p_signal, const Callable &p_callable, uint32_t p_flags = 0); MTVIRTUAL void disconnect(const StringName &p_signal, const Callable &p_callable); MTVIRTUAL bool is_connected(const StringName &p_signal, const Callable &p_callable) const; + MTVIRTUAL bool has_connections(const StringName &p_signal) const; template <typename... VarArgs> void call_deferred(const StringName &p_name, VarArgs... p_args) { |