BT composite that sequentially executes tasks as long as they return [code]SUCCESS[/code]. BTSequence executes its child tasks sequentially, from first to last, as long as they return [code]SUCCESS[/code]. Returns [code]RUNNING[/code] if any child task returns [code]RUNNING[/code]. The composite will also remember the last child task that returned [code]RUNNING[/code], ensuring it resumes from that point in the next execution tick. Returns [code]FAILURE[/code] if a child task returns [code]FAILURE[/code]. Returns [code]SUCCESS[/code] if all child tasks return [code]SUCCESS[/code].