Няма описание
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

IControlAttribute.cs 252B

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. }