|
|
|
|
|
|
Time.timeScale = trainingConfiguration.timeScale; |
|
|
|
Application.targetFrameRate = trainingConfiguration.targetFrameRate; |
|
|
|
QualitySettings.vSyncCount = 0; |
|
|
|
Time.captureFramerate = 60; |
|
|
|
Monitor.SetActive(false); |
|
|
|
} |
|
|
|
else |
|
|
|
|
|
|
Time.timeScale = inferenceConfiguration.timeScale; |
|
|
|
Application.targetFrameRate = inferenceConfiguration.targetFrameRate; |
|
|
|
Time.captureFramerate = 60; |
|
|
|
Monitor.SetActive(true); |
|
|
|
} |
|
|
|
} |
|
|
|