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.
21
21
22
22
### Fixed
23
23
24
+ Fixed the math offsetting the iteration index of each Unity Simulation instance directly after they deserialize their app-params
25
+
24
26
## [ 0.7.0-preview.1] - 2021-02-01
25
27
26
28
### Upgrade Notes
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ protected sealed override void IncrementIteration()
30
30
public sealed override void DeserializeFromFile ( string configFilePath )
31
31
{
32
32
base . DeserializeFromFile ( configFilePath ) ;
33
- currentIteration = constants . instanceIndex * constants . instanceCount ;
33
+ currentIteration = constants . instanceIndex ;
34
34
}
35
35
}
36
36
}
You can’t perform that action at this time.
0 commit comments