Class NoInterpMinIntParameter
A VolumeParameter that holds a non-interpolating int
value that
clamped to a minimum value.
Inherited Members
Namespace: UnityEngine.Rendering
Assembly: Unity.RenderPipelines.Core.Runtime.dll
Syntax
[Serializable]
public class NoInterpMinIntParameter : VolumeParameter<int>, ICloneable, IEquatable<VolumeParameter<int>>
Constructors
NoInterpMinIntParameter(int, int, bool)
Creates a new NoInterpMinIntParameter instance.
Declaration
public NoInterpMinIntParameter(int value, int min, bool overrideState = false)
Parameters
Type | Name | Description |
---|---|---|
int | value | The initial value to store in the parameter. |
int | min | The minimum value to clamp the parameter to. |
bool | overrideState | The initial override state for the parameter. |
See Also
Fields
min
The minimum value to clamp this parameter to.
Declaration
[NonSerialized]
public int min
Field Value
Type | Description |
---|---|
int |
See Also
Properties
value
The value that this parameter stores.
Declaration
public override int value { get; set; }
Property Value
Type | Description |
---|---|
int |
Overrides
Remarks
You can override this property to define custom behaviors when the value is changed.