zoukankan      html  css  js  c++  java
  • Unity编辑器扩展之RequireComponent等详解

    RequireComponent的使用:

    当你添加的一个用了RequireComponent组件的脚本,需要的组件将会自动被添加到game object(游戏物体)。这个可以有效的避免组装错误。举个例子一个脚本可能需要刚体总是被添加在相同的game object(游戏物体)上。用RequireComponent属性的话,这个过程将被自动完成,因此你可以永远不会犯组装错误。

    用法:在新建的类前面加 [RequireComponent(typeof(Rigidbody))]

    如图:使用前

    Unity编辑器扩展之RequireComponent等详解

       

    AddComponentMenu的使用:

    AddComponentMenu属性允许你在"Component"菜单中放置一个无论在哪的脚本,而不是仅仅在"Component->Scripts"菜单中。

    用法:[AddComponentMenu("NGUI/Examples/cubSpin")]

    Unity编辑器扩展之RequireComponent等详解

    MenuItem的使用:

    在工具栏上增加新的一列

    用法:如图[MenuItem("Test/Test")]  后面必须跟一个static的方法,需要引用头文件  using UnityEditor;:

    Unity编辑器扩展之RequireComponent等详解

     
    Unity编辑器扩展之RequireComponent等详解

    ContextMenu的使用:

    属性允许你去添加命令给上下文菜单

    用法:

    [ContextMenu("Test")]

    public void Test () 

    右键点击:会出现如图所示

    Unity编辑器扩展之RequireComponent等详解

    HideInInspector的使用:

    在Inspector面板中隐藏public变量

    用法:

    [HideInInspector]

    public Vector3 rotationsPerSecond = new Vector3(0f,0.1f,0f);

    使用前如图

    Unity编辑器扩展之RequireComponent等详解

    使用后;如图所示

    转百度经验:http://jingyan.baidu.com/article/1974b2899b9fb9f4b1f7749d.html

  • 相关阅读:
    教你如何上传项目到GitHub
    Spring Boot日志使用
    Github库名命名规范
    failed to resolve org.junit.platform
    SecureCRT 关键字高亮显示
    curl 命令
    idea中展开折叠的文件夹
    python官网打不开
    小工具下载地址汇总
    Navicat12 for Mysql激活
  • 原文地址:https://www.cnblogs.com/luxishi/p/6404449.html
Copyright © 2011-2022 走看看