16 lines
366 B
C#
16 lines
366 B
C#
|
using UnityEngine.UIElements;
|
||
|
|
||
|
namespace UnityEditor.Tilemaps
|
||
|
{
|
||
|
internal class TilePaletteClipboardPanelPopup : BoolFieldOverlayPopupWindow
|
||
|
{
|
||
|
private BaseField<bool> trigger;
|
||
|
|
||
|
public void CreateGUI()
|
||
|
{
|
||
|
var clipboardElement = new TilePaletteElement();
|
||
|
rootVisualElement.Add(clipboardElement);
|
||
|
}
|
||
|
}
|
||
|
}
|