Struct GlobalPostProcessSettings
Project-wide settings related to post-processing.
Namespace: UnityEngine.Rendering.HighDefinition
Syntax
[Serializable]
public struct GlobalPostProcessSettings
Fields
default
Default GlobalPostProcessSettings
Declaration
[Obsolete("Since 2019.3, use GlobalPostProcessSettings.NewDefault() instead.")]
public static readonly GlobalPostProcessSettings default
Field Value
Type | Description |
---|---|
GlobalPostProcessSettings |
k_MaxLutSize
The maximum allowed size for the color grading LUT.
Declaration
public const int k_MaxLutSize = 65
Field Value
Type | Description |
---|---|
Int32 |
k_MinLutSize
The minimum allowed size for the color grading LUT.
Declaration
public const int k_MinLutSize = 16
Field Value
Type | Description |
---|---|
Int32 |
lutFormat
The texture format to use to store the internal color gradint LUT.
Declaration
public GradingLutFormat lutFormat
Field Value
Type | Description |
---|---|
GradingLutFormat |
See Also
Properties
lutSize
Project-wide LUT size used for the internal color grading LUT and external LUTs.
Declaration
public int lutSize { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
Methods
NewDefault()
Returns a new instance of the default GlobalPostProcessSettings
.
Declaration
public static GlobalPostProcessSettings NewDefault()
Returns
Type | Description |
---|---|
GlobalPostProcessSettings | A new instance of the default |