IShaderNodeView.cs 497 B

12345678910111213141516171819
  1. using System;
  2. using UnityEditor.Experimental.GraphView;
  3. using UnityEditor.Graphing;
  4. using UnityEngine;
  5. using UnityEngine.UIElements;
  6. namespace UnityEditor.ShaderGraph
  7. {
  8. interface IShaderNodeView : IDisposable
  9. {
  10. Node gvNode { get; }
  11. AbstractMaterialNode node { get; }
  12. VisualElement colorElement { get; }
  13. void SetColor(Color newColor);
  14. void ResetColor();
  15. void UpdatePortInputTypes();
  16. void OnModified(ModificationScope scope);
  17. }
  18. }