Gameplay Ingredients是一组用于 Unity 游戏的运行时和编辑器工具:一组脚本的集合,可在制作游戏和原型时简化简单的任务。
您最多选择25个主题 主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

27 行
1.1 KiB

using UnityEngine;
namespace GameplayIngredients
{
static class ComponentMenu
{
public const string basePath = "Gameplay Ingredients/";
public const string actionsPath = basePath + "Actions/";
public const string cinemachinePath = basePath + "Cinemachine/";
public const string controllerPath = basePath + "Controllers/";
public const string counterPath = basePath + "Counters/";
public const string eventsPath = basePath + "Events/";
public const string factoryPath = basePath + "Factories/";
public const string interactivePath = basePath + "Interactive/";
public const string logicPath = basePath + "Logic/";
public const string managersPath = basePath + "Managers/";
public const string miscPath = basePath + "Misc./";
public const string pickupPath = basePath + "Pickups/";
public const string rigsPath = basePath + "Rigs/";
public const string timerPath = basePath + "Timers/";
public const string stateMachinePath = basePath + "State Machines/";
public const string vfxPath = basePath + "VFX/";
}
}