浏览代码

added xmldocs to ConstantSampler

/main
Steven Leal 4 年前
当前提交
4cf0fb7e
共有 1 个文件被更改,包括 11 次插入0 次删除
  1. 11
      com.unity.perception/Runtime/Randomization/Samplers/SamplerTypes/ConstantSampler.cs

11
com.unity.perception/Runtime/Randomization/Samplers/SamplerTypes/ConstantSampler.cs


/// </summary>
public float value;
/// <summary>
/// The base seed used to initialize this sampler's state.
/// Note that ConstantSamplers do not utilize a baseSeed.
/// </summary>
public uint baseSeed
{
get => SamplerUtility.largePrime;

/// <summary>
/// The current random state of this sampler.
/// Note that ConstantSamplers do not utilize a random state.
/// </summary>
public uint state
{
get => SamplerUtility.largePrime;

/// <summary>
/// A range bounding the values generated by this sampler
/// </summary>
public FloatRange range
{
get => new FloatRange(value, value);

正在加载...
取消
保存