xyi/Library/PackageCache/com.unity.shadergraph@bd938c0c5e52/Editor/Data/Attributes/SGPropertyDrawerAttribute.cs
Vladislav 2750530006 1
2025-09-18 15:33:57 +03:00

16 lines
355 B
C#

using System;
namespace UnityEditor.ShaderGraph.Drawing
{
[AttributeUsage(AttributeTargets.Class)]
public class SGPropertyDrawerAttribute : Attribute
{
public Type propertyType { get; private set; }
public SGPropertyDrawerAttribute(Type propertyType)
{
this.propertyType = propertyType;
}
}
}