码迷,mamicode.com
首页 > 其他好文 > 详细

创建有提示的ui组件

时间:2017-08-03 16:55:56      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:content   UI   cloud   class   logs   spec   操作   技术   nat   

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组件

标签:content   UI   cloud   class   logs   spec   操作   技术   nat   

原文地址:http://www.cnblogs.com/luxishi/p/7280156.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!