Method RequestDecision
RequestDecision()
Requests a new decision for this agent.
Declaration
public void RequestDecision()
Remarks
Call RequestDecision() whenever an agent needs a decision. You often
want to request a decision every environment step. However, if an agent
cannot use the decision every step, then you can request a decision less
frequently.
You can add a DecisionRequester component to the agent's
GameObject to drive the agent's decision making. When you use this component,
do not call RequestDecision() separately.
Note that this function calls RequestAction(); you do not need to call both functions at the same time.