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

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