您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
32 行
949 B
32 行
949 B
using System.Collections.Generic;
|
|
using UIWidgetsGallery.gallery;
|
|
using Unity.UIWidgets.Editor;
|
|
using Unity.UIWidgets.engine;
|
|
using Unity.UIWidgets.widgets;
|
|
using UnityEditor;
|
|
using UnityEngine;
|
|
|
|
namespace UIWidgetsEditorWindowSample
|
|
{
|
|
public class EditorWindowGallery : UIWidgetsEditorPanel
|
|
{
|
|
|
|
[MenuItem("UIWidgets/EditorSample/GalleryMain")]
|
|
public static void CountDemo()
|
|
{
|
|
CreateWindow<EditorWindowGallery>();
|
|
}
|
|
|
|
protected override void onEnable()
|
|
{
|
|
AddFont("Material Icons", new List<string> {"MaterialIcons-Regular.ttf"}, new List<int> {0});
|
|
AddFont("CupertinoIcons", new List<string> {"CupertinoIcons.ttf"}, new List<int> {0});
|
|
AddFont("GalleryIcons", new List<string> {"gallery/GalleryIcons.ttf"}, new List<int> {0});
|
|
}
|
|
|
|
protected override void main()
|
|
{
|
|
ui_.runApp(new GalleryApp());
|
|
}
|
|
}
|
|
}
|