Geen omschrijving
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.

ShaderGraphToolbarExtension.cs 290B

123456789101112
  1. using System;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. using Node = UnityEditor.Experimental.GraphView.Node;
  5. namespace UnityEditor.ShaderGraph.Drawing
  6. {
  7. internal interface IShaderGraphToolbarExtension
  8. {
  9. abstract void OnGUI(MaterialGraphView graphView);
  10. }
  11. }