22 lines
1005 B
C#
22 lines
1005 B
C#
namespace AibisDream
|
|
{
|
|
/// <summary>
|
|
/// 项目自研编辑器菜单路径常量。新工具统一挂 <see cref="Root"/> 下扁平条目。
|
|
/// </summary>
|
|
public static class AibisEditorMenus
|
|
{
|
|
public const string Root = AibisAssetMenus.Root;
|
|
|
|
public const string AnimationClipGenerator = Root + "/动画片段生成器";
|
|
public const string JsonEditor = Root + "/JSON 编辑器";
|
|
public const string NameCollector = Root + "/名称收集器";
|
|
public const string ChapterGraphEditor = Root + "/章节 Graph 编辑器";
|
|
public const string FrameAnimationGraphEditor = Root + "/帧动画 Graph 编辑器";
|
|
public const string FrameClipEditor = Root + "/帧动画 Clip 编辑器";
|
|
public const string YarnLocalizationValidator = Root + "/Yarn 本地化校验";
|
|
|
|
public const string GameObjectRoot = "GameObject/" + Root;
|
|
public const string BlockPuzzleShape = GameObjectRoot + "/方块拼图 Shape";
|
|
}
|
|
}
|