From fb33644652dcc8fd1b0fa27336669729e4b41ca1 Mon Sep 17 00:00:00 2001 From: Jakub Grzesik Date: Mon, 17 Jul 2017 20:22:38 +0200 Subject: [PATCH] missing object.get_incoming_connections() documentation --- doc/base/classes.xml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/doc/base/classes.xml b/doc/base/classes.xml index d6ee2ab0c5..5e8eaffa33 100644 --- a/doc/base/classes.xml +++ b/doc/base/classes.xml @@ -27894,6 +27894,11 @@ + Returns an [Array] of dictionaries with informations about signals that are connected to this object. + Inside each [Dictionary] there are 3 fields: + - "source" is a reference to signal emitter. + - "signal_name" is name of connected signal. + - "method_name" is a name of method to which signal is connected.