111
This commit is contained in:
@@ -16,15 +16,14 @@ public static class CreatDomainDirectory
|
||||
|
||||
Debug.Log(" 自动运行 ");
|
||||
|
||||
if (!EditorPrefs.HasKey("StartUp"))
|
||||
if (!EditorPrefs.HasKey("ARMaz_StartUp"))
|
||||
{
|
||||
// 通过标记记录是否已经执行过该方法
|
||||
OnEditorStartUp();
|
||||
EditorPrefs.SetInt("StartUp", 1);
|
||||
|
||||
if (EditorPrefs.GetInt("CreatDomainDirectory") == 0)
|
||||
EditorPrefs.SetInt("ARMaz_StartUp", 1);
|
||||
if (EditorPrefs.GetInt("ARMaz_CreatDomainDirectory") == 0)
|
||||
{
|
||||
EditorPrefs.SetInt("CreatDomainDirectory", 1);
|
||||
EditorPrefs.SetInt("ARMaz_CreatDomainDirectory", 1);
|
||||
bool isOk = EditorUtility.DisplayDialog("提示", "发现目录存在缺失,是否检索并创建缺失目录", "是", "否");
|
||||
if (isOk)
|
||||
{
|
||||
@@ -44,7 +43,7 @@ public static class CreatDomainDirectory
|
||||
/// </summary>
|
||||
private static void OnEditorQuit()
|
||||
{
|
||||
EditorPrefs.DeleteKey("StartUp");
|
||||
EditorPrefs.DeleteKey("ARMaz_StartUp");
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
||||
@@ -9,7 +9,7 @@ public class EvoArtFolderCreator : EditorWindow
|
||||
static string[] moduleNames; // 下拉列表
|
||||
static int selectedIndex; // 当前选中的下标
|
||||
|
||||
[MenuItem("Evo/创建Art文件夹")]
|
||||
[MenuItem("Evo/ARMaz/创建Art文件夹")]
|
||||
static void OpenCreator()
|
||||
{
|
||||
var w = GetWindowWithRect<EvoArtFolderCreator>(new Rect(0, 0, 350, 110), true, "创建点位");
|
||||
|
||||
@@ -15,7 +15,7 @@ namespace Stary.Evo.Editor
|
||||
{
|
||||
get { return Application.dataPath + "/Modules"; }
|
||||
}
|
||||
[MenuItem("Evo/Hotfix/一键标记所有模块")]
|
||||
[MenuItem("Evo/ARMaz/一键标记所有模块")]
|
||||
/// <summary>
|
||||
/// 一键标记所有模块
|
||||
/// </summary>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "com.staryevo.armaztools",
|
||||
"version": "1.0.2",
|
||||
"version": "1.0.3",
|
||||
"displayName": "00.StaryEvo.ARMazTools",
|
||||
"description": "This is an ARMazTools package(后台服务器版本,端口9527)",
|
||||
"unity": "2021.3",
|
||||
|
||||
Reference in New Issue
Block a user