Rasagar/Library/PackageCache/com.unity.render-pipelines.high-definition/Editor/Compositor/SeriallizedShaderProperty.cs
2024-08-26 23:07:20 +03:00

21 lines
688 B
C#

using UnityEditor;
namespace UnityEditor.Rendering.HighDefinition.Compositor
{
internal class SerializedShaderProperty
{
public SerializedProperty propertyName;
public SerializedProperty propertyType;
public SerializedProperty propertyValue;
public SerializedProperty rangeLimits;
public SerializedShaderProperty(SerializedProperty root)
{
propertyName = root.FindPropertyRelative("propertyName");
propertyType = root.FindPropertyRelative("propertyType");
propertyValue = root.FindPropertyRelative("value");
rangeLimits = root.FindPropertyRelative("rangeLimits");
}
}
}