miduo_client/Assets/Scripts/Editor/UGUIFontEditor/EditorHelper.cs

14 lines
264 B
C#

using UnityEngine;
using System.Collections;
using UnityEditor;
using System.IO;
public class EditorHelper : MonoBehaviour {
[MenuItem("Assets/BatchCreateArtistFont")]
static public void BatchCreateArtistFont()
{
ArtistFont.BatchCreateArtistFont();
}
}