Skip to content

Commit

Permalink
[bug fix] Fix warning using demo recorder (#5216)
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentpierre committed Apr 1, 2021
1 parent 18ff7bc commit 272899a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion com.unity.ml-agents/Runtime/Agent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -572,14 +572,15 @@ void NotifyAgentDone(DoneReason doneReason)
// Request the last decision with no callbacks
// We request a decision so Python knows the Agent is done immediately
m_Brain?.RequestDecision(m_Info, sensors);
ResetSensors();

// We also have to write any to any DemonstationStores so that they get the "done" flag.
foreach (var demoWriter in DemonstrationWriters)
{
demoWriter.Record(m_Info, sensors);
}

ResetSensors();

if (doneReason != DoneReason.Disabled)
{
// We don't want to update the reward stats when the Agent is disabled, because this will make
Expand Down

0 comments on commit 272899a

Please sign in to comment.