VR4RoboticArm2/VR4RoboticArm/Library/PackageCache/com.unity.shadergraph/Editor/Drawing/Controls/IControlAttribute.cs
IonutMocanu 48cccc22ad Main2
2025-09-08 11:13:29 +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);
}
}