xyi/Library/PackageCache/com.unity.shadergraph@bd938c0c5e52/Editor/Drawing/Views/Slots/LabelSlotControlView.cs
Vladislav 2750530006 1
2025-09-18 15:33:57 +03:00

16 lines
321 B
C#

using System;
using UnityEngine;
using UnityEngine.UIElements;
namespace UnityEditor.ShaderGraph.Drawing.Slots
{
class LabelSlotControlView : VisualElement
{
public LabelSlotControlView(string label)
{
var labelField = new Label(label);
Add(labelField);
}
}
}