IControlAttribute.cs 252 B

1234567891011
  1. using System.Reflection;
  2. using UnityEngine.UIElements;
  3. namespace UnityEditor.ShaderGraph.Drawing.Controls
  4. {
  5. interface IControlAttribute
  6. {
  7. VisualElement InstantiateControl(AbstractMaterialNode node, PropertyInfo propertyInfo);
  8. }
  9. }