暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

TilePaletteClipboardPanelPopup.cs 366B

123456789101112131415
  1. using UnityEngine.UIElements;
  2. namespace UnityEditor.Tilemaps
  3. {
  4. internal class TilePaletteClipboardPanelPopup : BoolFieldOverlayPopupWindow
  5. {
  6. private BaseField<bool> trigger;
  7. public void CreateGUI()
  8. {
  9. var clipboardElement = new TilePaletteElement();
  10. rootVisualElement.Add(clipboardElement);
  11. }
  12. }
  13. }