remove useless const

This commit is contained in:
Mikhail 2024-03-10 23:34:00 +08:00
parent da92392f3d
commit 2ab8fc695b
3 changed files with 1 additions and 19 deletions

View File

@ -1,7 +0,0 @@
namespace DCFApixels.DragonECS
{
public static class EcsUnityConsts
{
public const string INFO_MARK = "[D]";
}
}

View File

@ -1,11 +0,0 @@
fileFormatVersion: 2
guid: b33e303fef8298b4db42987fe9b94e45
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -54,7 +54,7 @@ namespace DCFApixels.DragonECS.Unity.Editors
if (string.IsNullOrEmpty(description) == false)
{
name = $"{name} {EcsUnityConsts.INFO_MARK}";
name = $"{name} [i]";
}
_genericMenu.AddItem(new GUIContent(name, description), false, OnAddComponent, dummy);
}