설명 없음
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.

IPropertyFromNode.cs 208B

12345678910
  1. using UnityEditor.ShaderGraph.Internal;
  2. namespace UnityEditor.ShaderGraph
  3. {
  4. interface IPropertyFromNode
  5. {
  6. AbstractShaderProperty AsShaderProperty();
  7. int outputSlotId { get; }
  8. }
  9. }