Class MinIntParameter
A VolumeParameter that holds an int
value clamped to a
minimum value.
Inherited Members
Namespace: UnityEngine.Rendering
Syntax
public class MinIntParameter : IntParameter, IEquatable<VolumeParameter<int>>
Constructors
MinIntParameter(Int32, Int32, Boolean)
Creates a new MinIntParameter instance.
Declaration
public MinIntParameter(int value, int min, bool overrideState = false)
Parameters
Type | Name | Description |
---|---|---|
Int32 | value | The initial value to store in the parameter. |
Int32 | min | The minimum value to clamp the parameter to. |
Boolean | overrideState | The initial override state for the parameter. |
Fields
min
The minimum value to clamp this parameter to.
Declaration
public int min
Field Value
Type | Description |
---|---|
Int32 |
Properties
value
The value that this parameter stores.
Declaration
public override int value { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
Overrides
UnityEngine.Rendering.VolumeParameter<System.Int32>.value
Remarks
You can override this property to define custom behaviors when the value is changed.