We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7862a29 commit 5b8cbd2Copy full SHA for 5b8cbd2
com.unity.ml-agents/Runtime/Policies/BehaviorParameters.cs
@@ -74,8 +74,15 @@ public class BehaviorParameters : MonoBehaviour
74
[HideInInspector, SerializeField]
75
BrainParameters m_BrainParameters = new BrainParameters();
76
77
+ /// <summary>
78
+ /// Delegate for receiving events about Policy Updates.
79
+ /// </summary>
80
+ /// <param name="isInHeuristicMode">Whether or not the current policy is running in heuristic mode.</param>
81
public delegate void PolicyUpdated(bool isInHeuristicMode);
82
83
84
+ /// Event that fires when an Agent's policy is updated.
85
86
internal event PolicyUpdated OnPolicyUpdated;
87
88
/// <summary>
0 commit comments