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

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