File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
Runtime/Randomization/Scenarios Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
2121
2222### Fixed
2323
24+ Fixed the math offsetting the iteration index of each Unity Simulation instance directly after they deserialize their app-params
25+
2426## [ 0.7.0-preview.1] - 2021-02-01
2527
2628### Upgrade Notes
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ protected sealed override void IncrementIteration()
3030 public sealed override void DeserializeFromFile ( string configFilePath )
3131 {
3232 base . DeserializeFromFile ( configFilePath ) ;
33- currentIteration = constants . instanceIndex * constants . instanceCount ;
33+ currentIteration = constants . instanceIndex ;
3434 }
3535 }
3636}
You can’t perform that action at this time.
0 commit comments