class BehaviorTree::Decorators::Retry

Repeat N times while child has failure status.

Protected Instance Methods

repeat_while() click to toggle source
# File lib/behavior_tree/decorator_nodes/retry.rb, line 9
def repeat_while
  child.status.failure?
end