docs.unity3d.com
Search Results for

    Show / Hide Table of Contents

    Class BooleanParameter

    A numeric parameter for generating boolean samples

    Inheritance
    object
    Parameter
    NumericParameter<bool>
    BooleanParameter
    Inherited Members
    NumericParameter<bool>.sampleType
    NumericParameter<bool>.GenericSample()
    NumericParameter<bool>.Validate()
    Parameter.GetDisplayName(Type)
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: UnityEngine.Perception.Randomization.Parameters
    Assembly: Unity.Perception.Runtime.dll
    Syntax
    [Serializable]
    public class BooleanParameter : NumericParameter<bool>

    Fields

    threshold

    A threshold value that transforms random values within the range [0, 1] to boolean values. Values greater than the threshold are true, and values less than the threshold are false.

    Declaration
    [Range(0, 1)]
    public float threshold
    Field Value
    Type Description
    float

    value

    The sampler used as a source of random values for this parameter

    Declaration
    [HideInInspector]
    [SerializeReference]
    public ISampler value
    Field Value
    Type Description
    ISampler

    Properties

    samplers

    Returns an IEnumerable that iterates over each sampler field in this parameter

    Declaration
    public override IEnumerable<ISampler> samplers { get; }
    Property Value
    Type Description
    IEnumerable<ISampler>
    Overrides
    Parameter.samplers

    Methods

    Sample()

    Generates a boolean sample

    Declaration
    public override bool Sample()
    Returns
    Type Description
    bool

    The generated sample

    Overrides
    NumericParameter<bool>.Sample()
    In This Article
    Back to top
    Copyright © 2024 Unity Technologies — Trademarks and terms of use
    • Legal
    • Privacy Policy
    • Cookie Policy
    • Do Not Sell or Share My Personal Information
    • Your Privacy Choices (Cookie Settings)