initial commit

This commit is contained in:
2026-03-16 13:53:01 +02:00
parent 631dc7df36
commit 81e6e0a7a2
23381 changed files with 8224173 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
/**
* @class Parallel
* @extends jibo.bt.ParentBehavior
* @memberof jibo.bt.behaviors
* @description Runs its child nodes in parallel. Returns with `Status.FAILED` if one of the children failed
* and `Status.SUCCEEDED` if all children succeeded.
* @param {Object} options See {@link jibo.bt.Behavior} for all options.
* @param {boolean} options.succeedOnOne If the Parallel should succeed when the first child succeeds.
* @param {Array<jibo.bt.Behavior>} [options.children=[]] An array of the Parallel's child behaviors.
*/