浏览代码

fixed usim nodes generating an empty first image

/main
Steven Leal 4 年前
当前提交
ad75fa43
共有 2 个文件被更改,包括 6 次插入0 次删除
  1. 2
      com.unity.perception/CHANGELOG.md
  2. 4
      com.unity.perception/Runtime/Randomization/Scenarios/ScenarioBase.cs

2
com.unity.perception/CHANGELOG.md


USimScenario now correctly deserializes app-params before offsetting the current scenario iteration when executing on Unity Simulation
Fixed Unity Simulation nodes generating one extra empty image before generating their share of the randomization scenario iterations
## [0.5.0-preview.1] - 2020-10-14
### Known Issues

4
com.unity.perception/Runtime/Randomization/Scenarios/ScenarioBase.cs


foreach (var randomizer in m_Randomizers)
randomizer.Create();
ValidateParameters();
// Don't skip the first frame if executing on Unity Simulation
if (Configuration.Instance.IsSimulationRunningInCloud())
m_SkipFrame = false;
}
void OnEnable()

正在加载...
取消
保存