您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
29 行
1.0 KiB
29 行
1.0 KiB
using System;
|
|
|
|
namespace UnityEngine.Perception.Randomization.Scenarios
|
|
{
|
|
/// <summary>
|
|
/// A scenario that runs for a fixed number of frames during each iteration
|
|
/// </summary>
|
|
[AddComponentMenu("Perception/Scenarios/Fixed Length Scenario")]
|
|
public class FixedLengthScenario: UnitySimulationScenario<FixedLengthScenario.Constants>
|
|
{
|
|
/// <summary>
|
|
/// Constants describing the execution of this scenario
|
|
/// </summary>
|
|
[Serializable]
|
|
public class Constants : UnitySimulationScenarioConstants
|
|
{
|
|
/// <summary>
|
|
/// The number of frames to render per iteration.
|
|
/// </summary>
|
|
[Tooltip("The number of frames to render per iteration.")]
|
|
public int framesPerIteration = 1;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns whether the current scenario iteration has completed
|
|
/// </summary>
|
|
public override bool isIterationComplete => currentIterationFrame >= constants.framesPerIteration;
|
|
}
|
|
}
|