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.

LabelSlotControlView.cs 321B

123456789101112131415
  1. using System;
  2. using UnityEngine;
  3. using UnityEngine.UIElements;
  4. namespace UnityEditor.ShaderGraph.Drawing.Slots
  5. {
  6. class LabelSlotControlView : VisualElement
  7. {
  8. public LabelSlotControlView(string label)
  9. {
  10. var labelField = new Label(label);
  11. Add(labelField);
  12. }
  13. }
  14. }