From d2bde1a805b8c2806d996461466f237d17394ee2 Mon Sep 17 00:00:00 2001 From: Serhii Snitsaruk Date: Wed, 27 Sep 2023 17:08:51 +0200 Subject: [PATCH] Improve BTParallel class doc --- doc_classes/BTParallel.xml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/doc_classes/BTParallel.xml b/doc_classes/BTParallel.xml index 3b74ff6..2ee1247 100644 --- a/doc_classes/BTParallel.xml +++ b/doc_classes/BTParallel.xml @@ -1,23 +1,23 @@ - BT composite that executes child tasks until one of the criteria is met. + BT composite that executes all of its child tasks simultaneously. - BTParallel executes its child tasks until one of the criterea is met. It will execute each task at least once, from the first to the last, before returning a result. - If set to [member repeat], the child tasks will be re-executed, regardless of whether they previously resulted in a [code]SUCCESS[/code] or [code]FAILURE[/code]. - Returns [code]FAILURE[/code] when the required number of tasks return [code]FAILURE[/code]. When [member repeat] is set to [code]false[/code], if none of the criteria were met, and all child tasks resulted in a [code]SUCCESS[/code] or [code]FAILURE[/code], BTParallel will return [code]FAILURE[/code]. - Returns [code]SUCCESS[/code] when the required number of tasks return [code]SUCCESS[/code]. + BTParallel executes all of its child tasks simultaneously. Note that BTParallel doesn't involve multithreading. It processes each task sequentially, from first to last, in the same tick before returning a result. If one of the abort criterea is met, any tasks currently [code]RUNNING[/code] will be terminated, and the result will be either [code]FAILURE[/code] or [code]SUCCESS[/code]. The [member num_failures_required] determines when BTParallel fails and [member num_successes_required] when it succeeds. When both are fullfilled, it gives priority to [member num_failures_required]. + If set to [member repeat], all child tasks will be re-executed each tick, regardless of whether they previously resulted in [code]SUCCESS[/code] or [code]FAILURE[/code]. + Returns [code]FAILURE[/code] when the required number of child tasks result in [code]FAILURE[/code]. When [member repeat] is set to [code]false[/code], if none of the criteria were met and all child tasks resulted in either [code]SUCCESS[/code] or [code]FAILURE[/code], BTParallel will return [code]FAILURE[/code]. + Returns [code]SUCCESS[/code] when the required number of child tasks result in [code]SUCCESS[/code]. Returns [code]RUNNING[/code] if none of the criterea were fulfilled, and either [member repeat] is set to [code]true[/code] or a child task resulted in [code]RUNNING[/code]. - When the specified number of child tasks return [code]SUCCESS[/code], BTParallel will also return [code]SUCCESS[/code]. + If the specified number of child tasks return [code]SUCCESS[/code], BTParallel will also return [code]SUCCESS[/code]. - When the specified number of child tasks return [code]FAILURE[/code], BTParallel will also return [code]FAILURE[/code]. + If the specified number of child tasks return [code]FAILURE[/code], BTParallel will also return [code]FAILURE[/code]. When [code]true[/code], the child tasks will be executed again, regardless of whether they previously resulted in a [code]SUCCESS[/code] or [code]FAILURE[/code].