summaryrefslogtreecommitdiffstats
path: root/core/object/object.h
diff options
context:
space:
mode:
authorA Thousand Ships <96648715+AThousandShips@users.noreply.github.com>2024-01-18 17:20:56 +0100
committerA Thousand Ships <96648715+AThousandShips@users.noreply.github.com>2024-09-20 16:39:09 +0200
commit203d3be200c9b607e5eaba82d9a267813a6700cd (patch)
treeced60a02eabb92aca3759a2f7165fb78352e852c /core/object/object.h
parent2be730a05b7ff221b89c967981f7caee6e164ef0 (diff)
downloadredot-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.h1
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) {