fian46 / addons-btree

Visual Behavior Tree
MIT License
115 stars 19 forks source link

support "Succeeder" Node #44

Closed JustusPan closed 4 years ago

JustusPan commented 4 years ago

A succeeder will always return success, irrespective of what the child node actually returned. These are useful in cases where you want to process a branch of a tree where a failure is expected or anticipated, but you don’t want to abandon processing of a sequence that branch sits on. The opposite of this type of node is not required, as an inverter will turn a succeeder into a ‘failer’ if a failure is required for the parent.

davord45 commented 4 years ago

You have a mute node which does the same

JustusPan commented 4 years ago

Thank you for the information, that's exactly what I need. @davord45