What does SetNodesExploredAutomatically do?
When it is enabled it doesnt explore all Nodes and also couldn't find a scene. boxSize 10 and tolerance 0.05.
After SetNodesExploredAutomatically=false the bot have found the scene.
When it is enabled it doesnt explore all Nodes and also couldn't find a scene. boxSize 10 and tolerance 0.05.
After SetNodesExploredAutomatically=false the bot have found the scene.
Code:
new Action(ret => Logger.Log("Visited all nodes but objective not complete, forcing grid reset!")),
new DecoratorContinue(ret => BrainBehavior.DungeonExplorer.SetNodesExploredAutomatically,
new Sequence(
new Action(ret => Logger.Log("Disabling SetNodesExploredAutomatically")),
new Action(ret => BrainBehavior.DungeonExplorer.[B]SetNodesExploredAutomatically = false[/B])
)
),