创建有提示的ui组件
Posted 露夕逝
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了创建有提示的ui组件相关的知识,希望对你有一定的参考价值。
using UnityEditor; using UnityEngine; using System.Collections; using Edelweiss.CloudSystem; namespace Edelweiss.CloudSystemEditor { public class OutputModeEditor{ private GUIContent m_OutputButton; public void Initialize()//这个必须先调用 { m_OutputButton = new GUIContent("导出","导出当前云的网格模型"); } public void InspectorGUI() { EditorGUILayout.Space(); InspectorSupport.Explanation("Output", "导出云相关操作", null); EditorGUILayout.Space(); if (GUILayout.Button(m_OutputButton)) { //... } } } }
以上是关于创建有提示的ui组件的主要内容,如果未能解决你的问题,请参考以下文章