From 9c234abdc934ecee7640f1b049cd65f0e45f388a Mon Sep 17 00:00:00 2001 From: Hugo Locurcio Date: Tue, 15 Dec 2020 00:51:45 +0100 Subject: [PATCH] Document the argument count limit in `SceneTree.call_group()` This limitation should be lifted in 4.0 thanks to the new method binding system, but it's still present in 3.2.x. --- doc/classes/SceneTree.xml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/doc/classes/SceneTree.xml b/doc/classes/SceneTree.xml index d3828c1b1f4..b1c1237b842 100644 --- a/doc/classes/SceneTree.xml +++ b/doc/classes/SceneTree.xml @@ -21,7 +21,8 @@ - Calls [code]method[/code] on each member of the given group. + Calls [code]method[/code] on each member of the given group. You can pass arguments to [code]method[/code] by specifying them at the end of the method call. + [b]Note:[/b] [code]method[/code] may only have 5 arguments at most (7 arguments passed to this method in total). @@ -34,7 +35,8 @@ - Calls [code]method[/code] on each member of the given group, respecting the given [enum GroupCallFlags]. + Calls [code]method[/code] on each member of the given group, respecting the given [enum GroupCallFlags]. You can pass arguments to [code]method[/code] by specifying them at the end of the method call. + [b]Note:[/b] [code]method[/code] may only have 5 arguments at most (8 arguments passed to this method in total).