暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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