diff --git a/doc_classes/BTCallMethod.xml b/doc_classes/BTCallMethod.xml index 522fc4d..180f8bb 100644 --- a/doc_classes/BTCallMethod.xml +++ b/doc_classes/BTCallMethod.xml @@ -4,20 +4,20 @@ BT action that calls a method on a specified [Node] or [Object]. - BTCallMethod calls a method on a specified [Node] or [Object] and returns [code]SUCCESS[/code]. - Returns [code]FAILURE[/code] if the action fails executing the method. + BTCallMethod action calls a [member method] on the specified [Node] or [Object] instance and returns [code]SUCCESS[/code]. + Returns [code]FAILURE[/code] if the action encounters an issue during the method execution. - Arguments to pass to the method call. + The arguments to be passed when calling the method. - Method that will be called. + The name of the method to be called. - Parameter that will be used to get the node/object instance. + Specifies the [Node] or [Object] instance containing the method to be called. diff --git a/doc_classes/BTConsolePrint.xml b/doc_classes/BTConsolePrint.xml index 4d3c1df..a8f75d6 100644 --- a/doc_classes/BTConsolePrint.xml +++ b/doc_classes/BTConsolePrint.xml @@ -1,18 +1,19 @@ - BT action task that prints text to console. + BT action task that outputs text to the console. - BT action task that prints text to console. Can contain placeholders for format arguments as in GDScript's % operator. + BTConsolePrint action outputs text to the console and returns [code]SUCCESS[/code]. It can include placeholders for format arguments similar to GDScript's % operator. + The values of format parameters are used as format arguments for the text that will be printed. - Text to print. Can contain multiple placeholders to be replaced with format arguments. Same as GDScript's % operator, placeholders start with '%' followed by a format specifier. For example: %s - string, %d - integer, %f - real. + The text to be printed, which can include multiple placeholders to be substituted with format arguments. These placeholders follow the same format as GDScript's % operator and typically start with '%' followed by a format specifier. For instance: %s for string, %d for integer, %f for real. diff --git a/doc_classes/BTFail.xml b/doc_classes/BTFail.xml index dabde12..84b0cae 100644 --- a/doc_classes/BTFail.xml +++ b/doc_classes/BTFail.xml @@ -1,7 +1,7 @@ - BT action that returns FAILURE. + BT action that always returns [code]FAILURE[/code].