Aucune description
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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