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

12 lines
252 B
C#

using System.Reflection;
using UnityEngine.UIElements;
namespace UnityEditor.ShaderGraph.Drawing.Controls
{
interface IControlAttribute
{
VisualElement InstantiateControl(AbstractMaterialNode node, PropertyInfo propertyInfo);
}
}