您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
26 行
822 B
26 行
822 B
using System;
|
|
|
|
namespace UnityEngine.Experimental.Perception.Randomization.Scenarios
|
|
{
|
|
/// <summary>
|
|
/// A class encapsulating the scenario constants fields required for Unity Simulation cloud execution
|
|
/// </summary>
|
|
[Serializable]
|
|
public class UnitySimulationScenarioConstants : ScenarioConstants
|
|
{
|
|
/// <summary>
|
|
/// The total number of iterations to run a scenario for
|
|
/// </summary>
|
|
public int totalIterations = 100;
|
|
|
|
/// <summary>
|
|
/// The number of Unity Simulation instances assigned to executed this scenario
|
|
/// </summary>
|
|
public int instanceCount = 1;
|
|
|
|
/// <summary>
|
|
/// The Unity Simulation instance index of the currently executing worker
|
|
/// </summary>
|
|
public int instanceIndex;
|
|
}
|
|
}
|