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

IGraphDataAction.cs 304B

123456789101112
  1. using System;
  2. using GraphData = UnityEditor.ShaderGraph.GraphData;
  3. namespace UnityEditor.ShaderGraph
  4. {
  5. // An action takes in a reference to a GraphData object and performs some modification on it
  6. interface IGraphDataAction
  7. {
  8. Action<GraphData> modifyGraphDataAction { get; }
  9. }
  10. }