浏览代码

Remove ForceReset from Agent. (#3575)

/bug-failed-api-check
GitHub 5 年前
当前提交
0f381ab9
共有 1 个文件被更改,包括 0 次插入10 次删除
  1. 10
      com.unity.ml-agents/Runtime/Agent.cs

10
com.unity.ml-agents/Runtime/Agent.cs


}
/// <summary>
/// This method will forcefully reset the agent and will also reset the hasAlreadyReset flag.
/// This way, even if the agent was already in the process of reseting, it will be reset again
/// and will not send a Done flag at the next step.
/// </summary>
void ForceReset()
{
_AgentReset();
}
/// <summary>
/// An internal reset method that updates internal data structures in
/// addition to calling <see cref="AgentReset"/>.
/// </summary>

正在加载...
取消
保存