You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
610 B
20 lines
610 B
namespace UnityEditor.Rendering.HighDefinition
|
|
{
|
|
class SerializedGlobalPostProcessSettings
|
|
{
|
|
public SerializedProperty root;
|
|
|
|
public SerializedProperty lutSize;
|
|
public SerializedProperty lutFormat;
|
|
public SerializedProperty bufferFormat;
|
|
|
|
public SerializedGlobalPostProcessSettings(SerializedProperty root)
|
|
{
|
|
this.root = root;
|
|
|
|
lutSize = root.FindPropertyRelative("m_LutSize");
|
|
lutFormat = root.FindPropertyRelative("lutFormat");
|
|
bufferFormat = root.FindPropertyRelative("bufferFormat");
|
|
}
|
|
}
|
|
}
|