语言英语
  • C#

AddComponentMenu

UnityEngine 中的类

/

实现于:UnityEngine.CoreModule

描述

AddComponentMenu 属性允许您将脚本放置在“组件”菜单中的任何位置,而不仅仅是“组件->脚本”菜单。

您可以使用它来更好地组织组件菜单并改进添加脚本的工作流程。

using UnityEngine;

[AddComponentMenu("Transform/Follow Transform")] public class FollowTransform : MonoBehaviour { }

属性

componentOrder组件在组件菜单中的顺序(值越低,在菜单中显示的位置越高)。

构造函数

AddComponentMenu在组件菜单中添加一个项目。

Did you find this page useful? Please give it a rating: