Skip to content

Commit 5b8cbd2

Browse files
authored
Fix xml docs. (#5057)
1 parent 7862a29 commit 5b8cbd2

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

com.unity.ml-agents/Runtime/Policies/BehaviorParameters.cs

+7
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,15 @@ public class BehaviorParameters : MonoBehaviour
7474
[HideInInspector, SerializeField]
7575
BrainParameters m_BrainParameters = new BrainParameters();
7676

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>
7781
public delegate void PolicyUpdated(bool isInHeuristicMode);
7882

83+
/// <summary>
84+
/// Event that fires when an Agent's policy is updated.
85+
/// </summary>
7986
internal event PolicyUpdated OnPolicyUpdated;
8087

8188
/// <summary>

0 commit comments

Comments
 (0)