您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
45 行
1.6 KiB
45 行
1.6 KiB
using System;
|
|
using UnityEngine;
|
|
|
|
namespace Unity.MLAgents
|
|
{
|
|
public partial class Agent
|
|
{
|
|
/// <summary>
|
|
/// Deprecated, use <see cref="WriteDiscreteActionMask"/> instead.
|
|
/// </summary>
|
|
/// <param name="actionMasker"></param>
|
|
public virtual void CollectDiscreteActionMasks(DiscreteActionMasker actionMasker)
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// This method passes in a float array that is to be populated with actions.
|
|
/// </summary>
|
|
/// <param name="actionsOut"></param>
|
|
public virtual void Heuristic(float[] actionsOut)
|
|
{
|
|
Debug.LogWarning("Heuristic method called but not implemented. Returning placeholder actions.");
|
|
Array.Clear(actionsOut, 0, actionsOut.Length);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Deprecated, use <see cref="OnActionReceived(ActionBuffers)"/> instead.
|
|
/// </summary>
|
|
/// <param name="vectorAction"></param>
|
|
public virtual void OnActionReceived(float[] vectorAction) { }
|
|
|
|
/// <summary>
|
|
/// Returns the last action that was decided on by the Agent.
|
|
/// </summary>
|
|
/// <returns>
|
|
/// The last action that was decided by the Agent (or null if no decision has been made).
|
|
/// </returns>
|
|
/// <seealso cref="OnActionReceived(float[])"/>
|
|
// [Obsolete("GetAction has been deprecated, please use GetStoredActionBuffers, Or GetStoredDiscreteActions.")]
|
|
public float[] GetAction()
|
|
{
|
|
return m_Info.storedVectorActions;
|
|
}
|
|
}
|
|
}
|