unity gui button可以像falsh控件一样拼界面吗

今天看啥 热点:
Unity3D基础--常用的GUI控件,unity3dgui控件
&&&&&& Unity3D中的GUI部分是每帧擦除重绘的,只应该在OnGUI中绘制GUI,每一次在OnGUI方法中声明的变量值都不会保存下来,例如,在Unity中画一个文本编辑框可以调用如下代码:GUILayout.TextField(&text&);但是运行后会发现,不论我们输入什么都还是只会显示text字符串。这是因为:我们在上一帧中输入的字符串没有被保存,在下一帧中会全部擦除重绘,即重新绘制一个&text&字符串。解决方法:我们可以在该类的成员变量中保存下来输入值,在Start方法中进行初始化
text = GUILayout.TextField(text);接下来介绍几个比较常用的控件。
&&&&& 1.按钮:GUILayout.Button(&Hello&);该方法返回一个布尔类型值,只有在按下Button抬起的时候返回true,在按下的过程中仍然返回false。
&&&&& 2.重复按钮:GUILayout.RepeatButton(&Hello&);与Button不同的时,该方法只要是我们按下Button期间会一直返回true,适合做子弹反射按钮。
&&&&& 3.密码框:pwd = GUILayout.PasswordField(pwd,‘*’),第二个参数为掩码字符。
&&&&& 4.Tab页:&selectedToolBarId = GUILayout.Toolbar(selectedToolBarId,new string[]{“Tab1”,“Tab2”,“Tab3”}); 返回值为激活的按钮的序号。根据得到标签序号,我们可以绘制相应的Tab页。using UnityE
using System.C
public class GUITest : MonoBehaviour {
private int selectedToolBarId;
// Use this for initialization
void Start () {
selectedToolBarId = 0;
// Update is called once per frame
void Update () {
void OnGUI(){
selectedToolBarId = GUILayout.Toolbar(selectedToolBarId,new string[]{&Tab1&, &Tab2&, &Tab3&});
switch(selectedToolBarId){
GUILayout.Label(&selected tab1&);//在这里绘制Tab1中的内容
GUILayout.Label(&selected tab2&);//在这里绘制Tab2中的内容
GUILayout.Label(&selected tab3&);//在这里绘制Tab3中的内容
&&&&&& 5.单选框Toggle,返回布尔值表示当前选中的情况。if (isMuted) {
isMuted = GUILayout.Toggle(isMuted, &Yes&);
isMuted = GUILayout.Toggle(isMuted, &No&);
}&&&&&&& 6.滑动条:纵向, sliderValue = GUILayout.VerticalSlider(sliderValue,0,100);返回值为当前值,第二个参数为最小值,第三个为最大值。
HorizontalSlider()横向。
&&&&&&& 7.区域Area,相当于一个控件的盒子, Area中的控件跟着Area移动, BeginArea()开始一个区域,参数指定区域的大小和坐标, EndArea()结束区域;GUILayout.BeginArea (new Rect (50, 50, 100, 100));
GUILayout.Label(&Area&);
GUILayout.EndArea ();&&&&&&& 8.窗口,区域是没有边框和标题的,也不可以拖放。 GUILayout.Window(0, new Rect(50,50,200,200),AddWindow1,“我的窗口”);& 第一个参数为窗口的编号,第二个为窗口大小,第三个为void WindowFunction(int
windowId)委托,用来绘制窗口内容。
&&&&&&&&& 窗口拖拽,在WindowFunction的最后调用GUI.DragWindow()可以启用全屏拖放(给DragWindow传Rect参数可以设定可拖放的区域)。考虑帧刷新的问题,要在OnGUI把Window()的返回Rect保存才可以可拖动,Start()中设定初始位置。using UnityE
using System.C
public class GUITest : MonoBehaviour {
private Rect positionR
// Use this for initialization
void Start () {
positionRect = new Rect (50, 50, 200, 150);
// Update is called once per frame
void Update () {
void OnGUI(){
positionRect =
GUILayout.Window(0, positionRect, WinFunc1, &Title&);
void WinFunc1(int id){
GUILayout.Button(&WinButton&);
GUILayout.Label (&WinLabel&);
GUI.DragWindow();
相关搜索:
相关阅读:
相关频道:
Android教程最近更新unity3d 与flash结合开发的进来看看_unity3d吧_百度贴吧
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&签到排名:今日本吧第个签到,本吧因你更精彩,明天继续来努力!
本吧签到人数:0成为超级会员,使用一键签到本月漏签0次!成为超级会员,赠送8张补签卡连续签到:天&&累计签到:天超级会员单次开通12个月以上,赠送连续签到卡3张
关注:38,673贴子:
unity3d 与flash结合开发的进来看看收藏
由于公司当前项目是flash制作的页游,我想复刻一个unity版本在手机上,可是游戏资源都是swf。这两天研究了关于swf转unity资源集合开发的两个框架,uniswf和scaleForm,不知国内是否有人深入研究过,目前我做的测试比较:uniswf优点:开发方便,api基本完全和flash相同缺点:性能瓶颈,目前测试6个角色动画同时播放还行,超过8个就开始卡了scaleForm目前只做了个入门测试,可以播放动画,但是scaleForm我在官方demo里面没有找到对swf中动画的 帧控制api,这个比较头疼,希望有大牛用过的来发表下看法。
没研究过~ 只知道Scaleform是相对比较强劲的一款swf工具但是进入unity也只是打散为位图序列而已~。所以不如直接从swf提取资源到Unity里用2D工具制作更加方便呢~~~~~~ 只是建议~~~
话说unity 4.1.5可以增加flash平台了
放弃这思路吧,unity已放弃对flash的继续研发,今后的版本中只会保持现有的技术支持状态!
uniswf是将flash的mc转为位图作为资源在unity中调用,仅支持部分as1与as2,就是个废柴!你转到手机上为毛不是用air发布?
flash一般导出什么格式的文件能导入unity?在unity里是怎么样的?仅仅是一个面而已吗?谢大神~
登录百度帐号推荐应用
为兴趣而生,贴吧更懂你。或unity使用AnimationCurve实现RPG中攻打与受伤时的分数的动态效果ScoreFlash - Flash当前位置:& &&&unity使用AnimationCurve实现RPG中攻打与受伤时的分unity使用AnimationCurve实现RPG中攻打与受伤时的分数的动态效果ScoreFlash&&网友分享于:&&浏览:0次unity使用AnimationCurve实现RPG中攻击与受伤时的分数的动态效果ScoreFlash孙广东:/2:19& 转载请注明出处:http://blog.csdn.net/u更全的内容请看我的游戏蛮牛地址:/space-uid-18602.html& 先看一下很普通的实现方式:随便命名一个javascript脚本。然后复制如下的代码之后随便挂在一个对象上,观察效果。var Point :
//要显示的分数
private var GetHitEffect :
private var targY :
//分数所要显示的位置Y值
private var PointPosition : Vector3;
//分数的显示位置
var PointSkin : GUIS
var PointSkinShadow : GUIS
function Start() {
Point = Mathf.Round(Random.Range(Point/2,Point*2));
PointPosition = transform.position + Vector3(Random.Range(-1,1),0,Random.Range(-1,1));
targY = Screen.height /2;
function OnGUI() {
var screenPos2 : Vector3 = Camera.main.camera.WorldToScreenPoint (PointPosition);
GetHitEffect += Time.deltaTime*30;
GUI.color = new Color (1.0f,1.0f,1.0f,1.0f - (GetHitEffect - 50) / 7);//改变分数的透明度逐渐消失
GUI.skin = PointSkinS
GUI.Label (Rect (screenPos2.x+8 , targY-2, 80, 70), &+& + Point.ToString());
GUI.skin = PointS
GUI.Label (Rect (screenPos2.x+10 , targY, 120, 120), &+& + Point.ToString());
function Update() {
//分数向上移动
targY -= Time.deltaTime*200;
然后来介绍 曲线的运动方式。新建一个脚本如下:// -------------------------------------------------------------------------------------
// &copyright file = &MyTween.cs& company = &Game Developer&&
// &author = Sunguangdong&
// &/copyright&
// &summary&
// 可以挂在UI上,进行砍杀时受击,分数的动态显示
// &/summary&
// -------------------------------------------------------------------------------------
using UnityE
using System.C
public class MyTween : MonoBehaviour {
public bool m_Pingpong =
public bool UseTweenPos =
public bool PosSpeedCurve =
public AnimationCurve PosC
public Vector3 m_BeginPos = Vector3.
public Vector3 m_EndPos = Vector3.
public bool UseTweenScale =
public AnimationCurve ScaleC
public Vector3 m_BeginScale = Vector3.
public Vector3 m_EndScale = Vector3.
public bool UseTweenRot =
public AnimationCurve RotC
public Vector3 m_BeginRot = Vector3.
public Vector3 m_EndRot = Vector3.
/// &summary&
/// tween的持续时间
/// &/summary&
public float TweenTime = 1f;
// 接口区域
public void Play(Vector3 offset, bool reverse = false , Transform target = null, Action callback = null )
m_BeginTime = Time.
m_Reverse =
m_Target =
m_EndCallback =
m_Offset =
m_PlayTween =
/// &summary&
/// tween的起始时间
/// &/summary&
private float m_BeginTime = 0f;
private Vector3 PosDist
return ToPos - FromP
private Vector3 ScaleDist
return ToScale - FromS
private Vector3 RotDist
return ToRot - FromR
private Vector3 UILocalPos
return m_Target == null ? Vector3.zero : m_Offset + UITool.PosToLocal(m_Target.position, m_RootScale);
private Vector3 FromPos
return m_Reverse ? UILocalPos + m_EndPos : UILocalPos + m_BeginP
private Vector3 ToPos
return m_Reverse ? UILocalPos + m_BeginPos : UILocalPos + m_EndP
private Vector3 FromScale
return m_Reverse ? m_EndScale : m_BeginS
private Vector3 ToScale
return m_Reverse ? m_BeginScale : m_EndS
private Vector3 FromRot
return m_Reverse ? m_EndRot : m_BeginR
private Vector3 ToRot
return m_Reverse ? m_BeginRot : m_EndR
private float EndTime
return m_BeginTime + TweenT
private float PosVal
return m_Reverse ? 1 - PosCurve.Evaluate(CurTime) : PosCurve.Evaluate(CurTime);
private float ScaleVal
return m_Reverse ? 1 - ScaleCurve.Evaluate(CurTime) : ScaleCurve.Evaluate(CurTime);
private float RotVal
return m_Reverse ? 1 - RotCurve.Evaluate(CurTime) : RotCurve.Evaluate(CurTime);
private float CurTime
return m_Reverse ? (EndTime - Time.time) / TweenTime : (Time.time - m_BeginTime) / TweenT
private void UpdatePos()
if( !UseTweenPos || PosCurve == null )
if (PosSpeedCurve )
transform.localPosition = FromPos + PosDist * PosV
m_CurVect.x = FromPos.x + PosDist.x * (Time.time - m_BeginTime) / TweenT
m_CurVect.y = FromPos.y + PosDist.y * PosV
m_CurVect.z = FromPos.z + PosDist.z * (Time.time - m_BeginTime) / TweenT
transform.localPosition = m_CurV
private void UpdateScale()
if (!UseTweenScale || ScaleCurve == null )
transform.localScale = FromScale + ScaleDist * ScaleV
private void UpdateRot()
if(!UseTweenRot || RotCurve == null)
transform.localRotation = Quaternion.Euler(FromRot + RotDist * RotVal);
void Start()
m_BeginTime = Time.
m_RootScale = UIRoot.FindObjectOfType&UIRoot&().transform.localS
void Update()
if(m_PlayTween)
if(Time.time & EndTime)
m_PlayTween =
if(m_Pingpong)
m_Reverse = !m_R
m_PlayTween =
m_BeginTime = Time.
if(m_EndCallback != null)
m_EndCallback();
UpdatePos();
UpdateRot();
UpdateScale();
}注意、:程序是针对NGUI的设置曲线如下:效果从图片中是看不出来的。& 自己动手吧!
12345678910
12345678910
12345678910 上一篇:下一篇:文章评论相关解决方案 1234567891011 Copyright & &&版权所有unity3D游戏开发之图形游戏界面_百度文库
两大类热门资源免费畅读
续费一年阅读会员,立省24元!
unity3D游戏开发之图形游戏界面
上传于||文档简介
&&关​于​u​n​i​t​y​游​戏​开​发​的​一​些​资​料
阅读已结束,如果下载本文需要使用
想免费下载本文?
你可能喜欢二次元同好交流新大陆
扫码下载App
汇聚2000万达人的兴趣社区下载即送20张免费照片冲印
扫码下载App
温馨提示!由于新浪微博认证机制调整,您的新浪微博帐号绑定已过期,请重新绑定!&&|&&
游戏编程博客欢迎大家关注。我对生活充满激情和热爱,现在从事游戏编程行业,希望做一款自己满意的游戏!
LOFTER精选
网易考拉推荐
用微信&&“扫一扫”
将文章分享到朋友圈。
用易信&&“扫一扫”
将文章分享到朋友圈。
简介 Introduction
这个教程将让你学会如何创建一个星型控件以及如何制作这个控件的自定义编辑器。你将学会:
动态的建立Mesh。
使用一个嵌套类。
建立一个自定义编辑器。
使用SerializedObject。
支持所见即所得。
对Undo、Redo、Reset和prefab提供支持。
支持多对象编辑。
支持场景视图内编辑。
我们假设你已经学会了Unity C#的基础编程知识,以及Unity 编辑器的基础知识。如果你已经完成了相关的学习,Let's Go!
建立Star类 Creating the star
我们建立一个全新的Unity工程,然后建立一个新的C#脚本,将它命名为Star。我们将用这个脚本,建立一个由三角面拼接成的星,这里需要一个Mesh。
什么是Mesh?
3D模型是由多边形拼接而成,一个复杂的多边形,实际上是由多个三角面拼接而成。所以一个3D模型的表面是由多个彼此相连的三角面构成。三维空间中,构成这些三角面的点以及三角形的边的集合就是Mesh。using UnityE
public class Star : MonoBehaviour {
任何对于Mesh的使用,都必须搭配一个MeshFilter组件,而MeshFilter又被用于MeshRenderer组件。只有这样,才能被Unity绘制。所以,这些组件都必须被加载到GameObject对象上,我们的Star对象也必须这么做。
当然,我们可以手动添加这些组件,但默认的自动添加是一个更好的办法。所以我们需要添加一个RequireComponent类作为Star对象的一个特性。
什么是类的特性?
特性像对类附加一个标签,用来告诉编译器这个类需要如何处理。是除了类声明的代码之外,对类做的附加说明。另外,特性不止针对类,对方法和属性同样适用。
typeof有什么用?
typeof是一种运算符,能够获得任何类的类型描述数据,数据里最常用的就是类的名字。那为什么不直接在代码里写类的名字就好呢?因为代码中所有的赋值和运算都需要变量,直接使用类的名字会导致编译错误。using UnityE
[RequireComponent(typeof(MeshFilter), typeof(MeshRenderer))]
public class Star : MonoBehaviour {
现在,我们建立一个新的空GameObject,将它命名为My First Star,然后拖拽我们的脚本Star到My First Star上。你可以看到,My First Star拥有了两个组件,MeshRenderer和Star。
拖动一个,得到三个
下一个步骤是建立一个Mesh。我们需要在Unity的Start事件里来做这些事,Start事件将在程序启动的时候发生。我们还需要在MeshFilter中给这个新的Mesh起一个名字。using UnityE
[RequireComponent(typeof(MeshFilter), typeof(MeshRenderer))]
public class Star : MonoBehaviour {
void Start () {
GetComponent&MeshFilter&().mesh = mesh = new Mesh();
mesh.name = "Star Mesh";
无编辑器模式与实时预览模式
当然,现在我们在预览模式下还看不到任何东西,因为Mesh还是空的。所以让我们开始编辑顶点数组吧,我们的Star类需要一个用来设置顶点数量的属性,以及这些定点与中心的相对距离。
第一个顶点是Star的中心点,其余的顶点将顺时针排列。我们将使用四元数来计算这些点的排列。因为我们假设俯视Z轴,所以,轮转的角度是负数,否则,将使这些点做逆时针排列。我们不需要设置第一个点,因为vector默认会被设置成0, Mesh中使用本地坐标系。using UnityE
[RequireComponent(typeof(MeshFilter), typeof(MeshRenderer))]
public class Star : MonoBehaviour {
public Vector3 point = Vector3.
public int numberOfPoints = 10;
private Vector3[]
void Start () {
GetComponent&MeshFilter&().mesh = mesh = new Mesh();
mesh.name = "Star Mesh";
vertices = new Vector3[numberOfPoints + 1];
float angle = -360f / numberOfP
for(int v = 1; v & vertices.L v++){
vertices[v] = Quaternion.Euler(0f, 0f, angle * (v - 1)) *
mesh.vertices =
新的编辑器属性
三角面会被保存成顶点数组,每个面三个顶点。因为我们使用三角形来描述多边形,每个三角形都起始于相同的中点,并且与其他的三角形相连。最后一个三角形与第一个三角形相连。例如,如果有四个三角形,那么顶点数组如下{0, 1, 2, 0, 2, 3, 0, 3, 4, 0, 4, 1}。using UnityE
[RequireComponent(typeof(MeshFilter), typeof(MeshRenderer))]
public class Star : MonoBehaviour {
public Vector3 point = Vector3.
public int numberOfPoints = 10;
private Vector3[]
private int[]
void Start () {
GetComponent&MeshFilter&().mesh = mesh = new Mesh();
mesh.name = "Star Mesh";
vertices = new Vector3[numberOfPoints + 1];
triangles = new int[numberOfPoints * 3];
float angle = -360f / numberOfP
for(int v = 1, t = 1; v & vertices.L v++, t += 3){
vertices[v] = Quaternion.Euler(0f, 0f, angle * (v - 1)) *
triangles[t] =
triangles[t + 1] = v + 1;
triangles[triangles.Length - 1] = 1;
mesh.vertices =
mesh.triangles =
一个简单的星星
现在,我们的星星看起来还只是一个简单的多边形。Unity也提示说丢失材质坐标,因为默认的Shader需要这些坐标。我们不会使用一个纹理来描绘所有的星星,让我们通过建立我们自己的Shader来消除这个警告,这个Shader将只使用顶点着色。
我们建立一个新的Shader将它命名为Star,然后写入以下代码。
什么是CGPROGRAM?
Basically, data flows from the Unity engine into the graphics card, where it's processed per vertex. Then interpolated data flows from the vertices down to the individual pixels. In this case, we pass position and color data all the way down. The only additional thing we do is convert vertex positions from world space to screen space.The statements above the CGPROGRAM switch off default lighting and depth buffer writing. Culling is switched off so we can see the triangles from both sides, not just the front. "Blend SrcAlpha OneMinusSrcAlpha" is default alpha blending, allowing for transparency.
为什么不使用fixed-function shader?
fixed-function shader已经属于过时的技术了。 CGPROGRAM 在将数据转化成屏幕像素方面拥有更强大的功能。Shader "Star"{
SubShader{
Tags{ "Queue"="Transparent" "IgnoreProjector"="True" "RenderType"="Transparent"}
Blend SrcAlpha OneMinusSrcAlpha
Lighting Off
ZWrite Off
#pragma vertex vert
#pragma fragment frag
struct data {
float4 vertex : POSITION;
fixed4 color: COLOR;
data vert (data v) {
v.vertex = mul(UNITY_MATRIX_MVP, v.vertex);
fixed4 frag(data f) : COLOR {
现在我们建立一个新的材质球,命名为Star,将Shader设置为我们刚刚编写的Star,并且将这个材质球赋予My First Star。
添加材质球之后
顶点着色默认是白色,所以我们的多边形现在变成了白色。我们想要一个更漂亮的星星。所以我们来为每个点定义一种颜色。
我们再添加一个frequency属性,这样我们就能让程序自动重复点的序列,而不用我们逐个定义全部的点。这个选项取代了numberOfPoints。
我们在最后需要确认frequency属性是否正确,并且星星至少拥有一个点。如果没有,我们的代码就可能出错。
Why check both for null and the length?
When freshly created, our star component won't have an array yet. It's also technically possible for scripts to explicitly set our array to null later on. We need to watch out for that, to prevent errors. Only if the array does exists do we go ahead and check its length as well. using UnityE
[RequireComponent(typeof(MeshFilter), typeof(MeshRenderer))]
public class Star : MonoBehaviour {
public Vector3[]
public int frequency = 1;
private Vector3[]
private int[]
void Start () {
GetComponent&MeshFilter&().mesh = mesh = new Mesh();
mesh.name = "Star Mesh";
if(frequency & 1){
frequency = 1;
if(points == null || points.Length == 0){
points = new Vector3[]{ Vector3.up};
int numberOfPoints = frequency * points.L
vertices = new Vector3[numberOfPoints + 1];
triangles = new int[numberOfPoints * 3];
float angle = -360f / numberOfP
for(int iF = 0, v = 1, t = 1; iF & iF++){
for(int iP = 0; iP & points.L iP += 1, v += 1, t += 3){
vertices[v] = Quaternion.Euler(0f, 0f, angle * (v - 1)) * points[iP];
triangles[t] =
triangles[t + 1] = v + 1;
triangles[triangles.Length - 1] = 1;
mesh.vertices =
mesh.triangles =
配置好的点
我们需要些颜色!如果把全部的顶点都指定相同的颜色就很简单,但这样太无聊了。我们来试试给每个顶点分配一个颜色。我们需要一个数组来保存这些颜色数据,而且必须保持颜色和顶点的数量一致。这有点小麻烦,我们干脆换成另外一种方式,在Star类中建立一个新的类,这个类可以保存一个顶点的颜色和位置。然后我们可以用这个类的数组来代替vector数组。
这类叫Point,如果在Star类之外使用,就是Star.Point。在Star里面Point就可以了。为了让Unity能够将Point序列化,我们为Point添加System.Serializable特性。
为什么不用结构体?
Because Star.Point is so lightweight and its data is always needed all at once, it would make sense to use a struct type and avoid the overhead that objects add. However, Unity does not support serialization of custom struct types. So you're stuck using classes to bundle data you want to store.If you're really concerned about the object overhead and possible null errors, you can always store the offset and color data in two separate arrays. However, then you would need to make sure that these arrays always stay synchronized. While that is definitely doable, the class approach is simpler. That's why I use it in this tutorial. using S
using UnityE
[RequireComponent(typeof(MeshFilter), typeof(MeshRenderer))]
public class Star : MonoBehaviour {
[Serializable]
public class Point {
public Vector3
public Point[]
public int frequency = 1;
private Vector3[]
private Color[]
private int[]
void Start () {
GetComponent&MeshFilter&().mesh = mesh = new Mesh();
mesh.name = "Star Mesh";
if(frequency & 1){
frequency = 1;
if(points == null || points.Length == 0){
points = new Point[]{ new Point()};
int numberOfPoints = frequency * points.L
vertices = new Vector3[numberOfPoints + 1];
colors = new Color[numberOfPoints + 1];
triangles = new int[numberOfPoints * 3];
float angle = -360f / numberOfP
for(int iF = 0, v = 1, t = 1; iF & iF++){
for(int iP = 0; iP & points.L iP += 1, v += 1, t += 3){
vertices[v] = Quaternion.Euler(0f, 0f, angle * (v - 1)) * points[iP].offset;
colors[v] = points[iP].
triangles[t] =
triangles[t + 1] = v + 1;
triangles[triangles.Length - 1] = 1;
mesh.vertices =
mesh.colors =
mesh.triangles =
有了颜色之后
最后是关于中心点的。现在,我们还没有给它设置颜色,所以它一直保持着透明。让我们来为它添加一个颜色属性,最终,这个星星看上去变漂亮了。using S
using UnityE
[RequireComponent(typeof(MeshFilter), typeof(MeshRenderer))]
public class Star : MonoBehaviour {
[Serializable]
public class Point {
public Vector3
public Point[]
public int frequency = 1;
public Color centerC
private Vector3[]
private Color[]
private int[]
void Start () {
GetComponent&MeshFilter&().mesh = mesh = new Mesh();
mesh.name = "Star Mesh";
if(frequency & 1){
frequency = 1;
if(points == null || points.Length == 0){
points = new Point[]{ new Point()};
int numberOfPoints = frequency * points.L
vertices = new Vector3[numberOfPoints + 1];
colors = new Color[numberOfPoints + 1];
triangles = new int[numberOfPoints * 3];
float angle = -360f / numberOfP
colors[0] = centerC
for(int iF = 0, v = 1, t = 1; iF & iF++){
for(int iP = 0; iP & points.L iP += 1, v += 1, t += 3){
vertices[v] = Quaternion.Euler(0f, 0f, angle * (v - 1)) * points[iP].
colors[v] = points[iP].
triangles[t] =
triangles[t + 1] = v + 1;
triangles[triangles.Length - 1] = 1;
mesh.vertices =
mesh.colors =
mesh.triangles =
漂亮的星星,麻烦的编辑器
建立编辑器 Creating the Inspector
现在Star看起来不错,但设计起来有些麻烦。默认的编辑器有点蛋疼,让我们自己做一个!
所有编辑器类的代码,都需要放在Editor文件夹下,只有这样Unity才能正确的识别这代码。Editor的名字对就行,放在哪倒无所谓。我们现在把Editor建立在根目录也就是Assets下。然后再建一个StarInspector类的代码文件,放在Editor里面。
编辑器的类型?
需要了解的是,编辑器面板不只有一个类型。我们这个例子里面使用的是属性面板——Inspector,其余还有 EditorWindow——编辑对话框,可以实现一个完全自定义的弹出式对话框,还有ScriptableWizard——向导对话框,以及编辑器菜单。
因为我们的类是一个编辑器类,它需要继承Editor类而不是MonoBehaviour。我们还需要添加一个属性来告诉Unity,这个类是为Star类定义编辑器的。using UnityE
using UnityE
[CustomEditor(typeof(Star))]
public class StarInspector : Editor {}
到目前为止,我们没有改变Star的编辑器。我们需要替换默认的编辑器。我们可以通过重载Editor 类的OnInspectorGUI事件来实现。using UnityE
using UnityE
[CustomEditor(typeof(Star))]
public class StarInspector : Editor {
public override void OnInspectorGUI () {}
一个空的编辑器
默认的编辑器捏?没了?
因为我们没有在OnInspectorGUI事件里写任何代码,所以一切都是空白的。DrawDefaultInspector方法可以用来绘制默认的编辑器界面,但我们本来就不想要这个,还是试试别的吧。
我们首先要确认是哪个Star对象被选中,应该在编辑器中被显示。我们可以使用target属性来表示这个对象,target属性是Editor的一个属性,我们继承了Editor,所以也继承了这个属性,可以直接使用它,非常方便。虽然这不是必须的,我们可以用 SerializedObject来包装target,这么做会很方便,因为会使对很多编辑器的操作支持变得简单,比如undo。
我们使用了SerializedObject,可以通过SerializedProperty对象来提取它的数据。我们要在OnEnable事件里初始化所有的star类的变量。这个事件会在一个添加Star组件的GameObject被选中时发生。
What's a SerializedObject?
SerializedObject is a class that acts as a wrapper or proxy for Unity objects. You can use it to extract data from the object even if you don't have a clue what's inside it. This is how the Unity inspector can show default inspectors for anything you create yourself. As a bonus, you get undo support for free. using UnityE
using UnityE
[CustomEditor(typeof(Star))]
public class StarInspector : Editor {
private SerializedO
private SerializedProperty
frequency,
void OnEnable () {
star = new SerializedObject(target);
points = star.FindProperty("points");
frequency = star.FindProperty("frequency");
centerColor = star.FindProperty("centerColor");
public override void OnInspectorGUI () {}
每一次编辑器更新的时候,我们都需要确定SerializedObject被实时更新了。这就是我们要在OnInspectorGUI事件里做的第一件事。之后我们可以简单的调用EditorGUILayout.PropertyField来显示我们的属性,显示points及其内部的所有元素。之后我们结束所有属性修改并应用到选定的组件。
What's EditorGUILayout?
EditorGUILayout is a utility class for displaying stuff in the Unity editor. It contains methods for drawing all kinds of things, in this case we're simply using the default method for drawing a SerializedProperty.There's also an EditorGUI utility class which does that same thing, but requires you to perform your own GUI layout.using UnityE
using UnityE
[CustomEditor(typeof(Star))]
public class StarInspector : Editor {
private SerializedO
private SerializedProperty
frequency,
void OnEnable () { … }
public override void OnInspectorGUI () {
star.Update();
EditorGUILayout.PropertyField(points, true);
EditorGUILayout.PropertyField(frequency);
EditorGUILayout.PropertyField(centerColor);
star.ApplyModifiedProperties();
一个被重建的编辑器
现在的编辑器和默认的差不多,我们可以做的更好。我们需要重新整理一下points的显示格式,让每个点的颜色和位移信息合并为一组显示。 using UnityE
using UnityE
[CustomEditor(typeof(Star))]
public class StarInspector : Editor {
private SerializedO
private SerializedProperty
frequency,
void OnEnable () { … }
public override void OnInspectorGUI () {
star.Update();
for(int i = 0; i & points.arrayS i++){
EditorGUILayout.BeginHorizontal();
SerializedProperty point = points.GetArrayElementAtIndex(i);
EditorGUILayout.PropertyField(point.FindPropertyRelative("offset"));
EditorGUILayout.PropertyField(point.FindPropertyRelative("color"));
EditorGUILayout.EndHorizontal();
EditorGUILayout.PropertyField(frequency);
EditorGUILayout.PropertyField(centerColor);
star.ApplyModifiedProperties();
排版不良的编辑器
我们需要修正这个排版。让我们去掉颜色和位置的标签,设置颜色条的最大长度为50像素。我们通过EditorGUILayout.PropertyField方法的额外参数能够实现。因为我们对所有的对象都使用相同的配置,所以我们使用静态变量来保存这些设置。
然后再通过GUILayout.Label方法来给所有的points添加一个统一的标签。
What's a GUIContent?
GUIContent is a wrapper object for text, textures, and tooltips that you typically use as labels.
Why use GUILayout instead of EditorGUILayout?
You use the same Unity GUI system for editors that you can use for your games. GUILayout provided basic functionality like labels and buttons, while EditorGUILayout provides extra editor-specific stuff like input fields.using UnityE
using UnityE
[CustomEditor(typeof(Star))]
public class StarInspector : Editor {
private static GUIContent pointContent = GUIContent.
private static GUILayoutOption colorWidth = GUILayout.MaxWidth(50f);
private SerializedO
private SerializedProperty
frequency,
void OnEnable () { … }
public override void OnInspectorGUI () {
star.Update();
GUILayout.Label("Points");
for(int i = 0; i & points.arrayS i++){
EditorGUILayout.BeginHorizontal();
SerializedProperty point = points.GetArrayElementAtIndex(i);
EditorGUILayout.PropertyField(point.FindPropertyRelative("offset"), pointContent);
EditorGUILayout.PropertyField(point.FindPropertyRelative("color"), pointContent, colorWidth);
EditorGUILayout.EndHorizontal();
EditorGUILayout.PropertyField(frequency);
EditorGUILayout.PropertyField(centerColor);
star.ApplyModifiedProperties();
一个紧凑的编辑器
最终,看上去好多了!现在,如果我们能方便的添加和删除points就更好了。让我们试试添加这些按钮吧。
我们为每个point添加两个按钮,一个是“+”用来插入point,一个是"-"用来删除point。我们再添加一些说明使用户能够了解这些按钮的用途。我们还需要控制按钮宽度,将样式设置成mini buttons,因为这些按钮要小一些。
How does GUILayout.Button work?
The method GUILayout.Button both shows a button and returns whether it was clicked. So you typically call it inside an if statement and perform the necessary work in the corresponding code block.What actually happens is that your own GUI method, in this case OnInspectorGUI, gets called far more often than just once. It gets called when performing layout, when repainting, and whenever a significant GUI event happens, which is quite often. Only when a mouse click event comes along that is consumed by the button, will it return true.To get an idea, put Debug.Log(Event.current); at the start of your OnInspectorGUI method and fool around a bit.Usually you need not worry about this, but be aware of it when performing heavy work like generating textures. You don't want to do that dozens of times per second if you don't need to.
What are the contents of a new item?
If you insert a new array element via a SerializedProperty, the new element will be a duplicate of the element just above it. If there's no other element, it gets default values.using UnityE
using UnityE
[CustomEditor(typeof(Star))]
public class StarInspector : Editor {
private static GUIContent
insertContent = new GUIContent("+", "duplicate this point"),
deleteContent = new GUIContent("-", "delete this point"),
pointContent = GUIContent.
private static GUILayoutOption
buttonWidth = GUILayout.MaxWidth(20f),
colorWidth = GUILayout.MaxWidth(50f);
private SerializedO
private SerializedProperty
frequency,
void OnEnable () { … }
public override void OnInspectorGUI () {
star.Update();
GUILayout.Label("Points");
for(int i = 0; i & points.arrayS i++){
EditorGUILayout.BeginHorizontal();
SerializedProperty point = points.GetArrayElementAtIndex(i);
EditorGUILayout.PropertyField(point.FindPropertyRelative("offset"), pointContent);
EditorGUILayout.PropertyField(point.FindPropertyRelative("color"), pointContent, colorWidth);
if(GUILayout.Button(insertContent, EditorStyles.miniButtonLeft, buttonWidth)){
points.InsertArrayElementAtIndex(i);
if(GUILayout.Button(deleteContent, EditorStyles.miniButtonRight, buttonWidth)){
points.DeleteArrayElementAtIndex(i);
EditorGUILayout.EndHorizontal();
EditorGUILayout.PropertyField(frequency);
EditorGUILayout.PropertyField(centerColor);
star.ApplyModifiedProperties();
添加了传送按钮和提示
看上去不错,但是怎么移动points?如果我们能够直接拖动这些点来排列它们,那就太棒了。虽然这肯定是整齐的,让我们用一个简单办法来解决它。
我们可以给每个point添加一个传送按钮。点一下,你就激活了这个point的显示。点另一个,就会跳转到另一个point,同时移动视角到当前point。
这种方式需要我们来记录哪个point是当前的焦点。我们可以使用point的索引值来记录焦点,用-1表示焦点为空。我们将改变按钮的提示信息,信息将根据按钮的状态而定,并添加一个标签来告诉用户该做什么。using UnityE
using UnityE
[CustomEditor(typeof(Star))]
public class StarInspector : Editor {
private static GUIContent
insertContent = new GUIContent("+", "duplicate this point"),
deleteContent = new GUIContent("-", "delete this point"),
pointContent = GUIContent.none,
teleportContent = new GUIContent("T");
private static GUILayoutOption
buttonWidth = GUILayout.MaxWidth(20f),
colorWidth = GUILayout.MaxWidth(50f);
private SerializedO
private SerializedProperty
frequency,
private int teleportingE
void OnEnable () {
star = new SerializedObject(target);
points = star.FindProperty("points");
frequency = star.FindProperty("frequency");
centerColor = star.FindProperty("centerColor");
teleportingElement = -1;
teleportContent.tooltip = "start teleporting this point";
public override void OnInspectorGUI () {
star.Update();
GUILayout.Label("Points");
for(int i = 0; i & points.arrayS i++){
EditorGUILayout.BeginHorizontal();
SerializedProperty point = points.GetArrayElementAtIndex(i);
EditorGUILayout.PropertyField(point.FindPropertyRelative("offset"), pointContent);
EditorGUILayout.PropertyField(point.FindPropertyRelative("color"), pointContent, colorWidth);
if(GUILayout.Button(teleportContent, EditorStyles.miniButtonLeft, buttonWidth)){
if(teleportingElement &= 0){
points.MoveArrayElement(teleportingElement, i);
teleportingElement = -1;
teleportContent.tooltip = "start teleporting this point";
teleportingElement =
teleportContent.tooltip = "teleport here";
if(GUILayout.Button(insertContent, EditorStyles.miniButtonMid, buttonWidth)){
points.InsertArrayElementAtIndex(i);
if(GUILayout.Button(deleteContent, EditorStyles.miniButtonRight, buttonWidth)){
points.DeleteArrayElementAtIndex(i);
EditorGUILayout.EndHorizontal();
if(teleportingElement &= 0){
GUILayout.Label("teleporting point " + teleportingElement);
EditorGUILayout.PropertyField(frequency);
EditorGUILayout.PropertyField(centerColor);
star.ApplyModifiedProperties();
有传送按钮的编辑器
所见即所得 WYSIWYG
我们的编辑器对point已经很友好了,但我们还不能实时看到我们编辑过程中的结果。是时候改变这一切了!
第一件事是让Unity了解,我们的组件需要在编辑模式下被激活。我们通过ExecuteInEditMode类来声明这一属性。此后,star在编辑中的任何显示,都会调用Start方法。
因为我们建立了一个Mesh在Start方法中,它将在编辑模式下被创建。正如我们把Mesh存放在MeshFilter中,它将被保存于场景中。我们不希望这样,因为我们需要动态的创建Mesh。我们可以设置HideFlags来阻止Unity保存Mesh。于是,我们还需要确认Mesh被清理时,编辑器已经不再需要它。OnDisable事件会在每一个组件实效时被调用,它可以帮我们处理这些事情。我们需要在OnDisable中清理MeshFilter来阻止它发出缺少Mesh的警告。using S
using UnityE
[ExecuteInEditMode, RequireComponent(typeof(MeshFilter), typeof(MeshRenderer))]
public class Star : MonoBehaviour {
[Serializable]
public class Point { … }
public Point[]
public int frequency = 1;
public Color centerC
private Vector3[]
private Color[]
private int[]
void Start () {
GetComponent&MeshFilter&().mesh = mesh = new Mesh();
mesh.name = "Star Mesh";
mesh.hideFlags = HideFlags.HideAndDontS
if(frequency & 1){
frequency = 1;
if(points == null || points.Length == 0){
points = new Point[]{ new Point()};
int numberOfPoints = frequency * points.L
vertices = new Vector3[numberOfPoints + 1];
colors = new Color[numberOfPoints + 1];
triangles = new int[numberOfPoints * 3];
float angle = -360f / numberOfP
colors[0] = centerC
for(int iF = 0, v = 1, t = 1; iF & iF++){
for(int iP = 0; iP & points.L iP += 1, v += 1, t += 3){
vertices[v] = Quaternion.Euler(0f, 0f, angle * (v - 1)) * points[iP].
colors[v] = points[iP].
triangles[t] =
triangles[t + 1] = v + 1;
triangles[triangles.Length - 1] = 1;
mesh.vertices =
mesh.colors =
mesh.triangles =
void OnDisable () {
if(Application.isEditor){
GetComponent&MeshFilter&().mesh =
DestroyImmediate(mesh);
编辑模式下的星星
我们的星星已经显示在了编辑模式中!当我们在一个对象上关闭Star组件,星星的Mesh将被消除。当我们启用Star组件,它将不再恢复。因为Start方法仅在组件第一次激活时被调用。解决的办法是将我们的初始化代码移动到OnEnable事件中去。
做好之后,我们进一步重构代码,让我们能随时初始化Mesh。为了在不需要的时候不进行初始化,我们还需要添加少量的检查。 using S
using UnityE
[ExecuteInEditMode, RequireComponent(typeof(MeshFilter), typeof(MeshRenderer))]
public class Star : MonoBehaviour {
[Serializable]
public class Point { … }
public Point[]
public int frequency = 1;
public Color centerC
private Vector3[]
private Color[]
private int[]
public void UpdateStar () {
if(mesh == null){
GetComponent&MeshFilter&().mesh = mesh = new Mesh();
mesh.name = "Star Mesh";
mesh.hideFlags = HideFlags.HideAndDontS
if(frequency & 1){
frequency = 1;
if(points.Length == 0){
points = new Point[]{ new Point()};
int numberOfPoints = frequency * points.L
if(vertices == null || vertices.Length != numberOfPoints + 1){
vertices = new Vector3[numberOfPoints + 1];
colors = new Color[numberOfPoints + 1];
triangles = new int[numberOfPoints * 3];
float angle = -360f / numberOfP
colors[0] = centerC
for(int iF = 0, v = 1, t = 1; iF & iF++){
for(int iP = 0; iP & points.L iP += 1, v += 1, t += 3){
vertices[v] = Quaternion.Euler(0f, 0f, angle * (v - 1)) * points[iP].
colors[v] = points[iP].
triangles[t] =
triangles[t + 1] = v + 1;
triangles[triangles.Length - 1] = 1;
mesh.vertices =
mesh.colors =
mesh.triangles =
void OnEnable () {
UpdateStar ();
void OnDisable () { … }
现在,组件再被启动时,星星不再出现。不幸的是,它不再相应修改。幸好,这很容易解决。
SerializedObject.ApplyModifiedProperties方法可以返回任何修改的实际情况。这样,我们就能很简单的调用target的UpdateStar方法。我们需要显式转换target的类型,因为编辑器需要为所有类型提供支持,所以target的类型被定义成了Object。
译者注,有一种方法可以简单的解决这个问题,写一个基类如下 public
class InspectorBase&T& : Editor where T : UnityEngine.Object
protected T Target { get { return
然后全部的编辑器类都继承这个基类如下 [CustomEditor(typeof(Star))]
class StarEditor : InspectorBase& Star &
这样在以后的代码里,target会自动成为你想要的类型。 using UnityE
using UnityE
[CustomEditor(typeof(Star))]
public class StarInspector : Editor {
private static GUIContent
insertContent = new GUIContent("+", "duplicate this point"),
deleteContent = new GUIContent("-", "delete this point"),
pointContent = GUIContent.none,
teleportContent = new GUIContent("T");
private static GUILayoutOption
buttonWidth = GUILayout.MaxWidth(20f),
colorWidth = GUILayout.MaxWidth(50f);
private SerializedO
private SerializedProperty
frequency,
private int teleportingE
void OnEnable () { … }
public override void OnInspectorGUI () {
star.Update();
GUILayout.Label("Points");
for(int i = 0; i & points.arrayS i++){
EditorGUILayout.BeginHorizontal();
SerializedProperty point = points.GetArrayElementAtIndex(i);
EditorGUILayout.PropertyField(point.FindPropertyRelative("offset"), pointContent);
EditorGUILayout.PropertyField(point.FindPropertyRelative("color"), pointContent, colorWidth);
if(GUILayout.Button(teleportContent, EditorStyles.miniButtonLeft, buttonWidth)){
if(teleportingElement &= 0){
points.MoveArrayElement(teleportingElement, i);
teleportingElement = -1;
teleportContent.tooltip = "start teleporting this point";
teleportingElement =
teleportContent.tooltip = "teleport here";
if(GUILayout.Button(insertContent, EditorStyles.miniButtonMid, buttonWidth)){
points.InsertArrayElementAtIndex(i);
if(GUILayout.Button(deleteContent, EditorStyles.miniButtonRight, buttonWidth)){
points.DeleteArrayElementAtIndex(i);
EditorGUILayout.EndHorizontal();
if(teleportingElement &= 0){
GUILayout.Label("teleporting point " + teleportingElement);
EditorGUILayout.PropertyField(frequency);
EditorGUILayout.PropertyField(centerColor);
if(star.ApplyModifiedProperties()){
((Star)target).UpdateStar();
编辑中的星星
现在,Mesh没有立即更新。这让编辑轻松许多!可惜的是,它还没有支持Undo!
不幸的是,在Unity中没有一种简单的方法来支持Undo事件,但我们可以做到接近支持。在我们的案例中,我们可以检查ValidateCommand事件是否发生,来判断Undo操作。当前被选中的对象这个事件的目标,我们假设它被修改过。
What's a ValidateCommand?
ValidateCommand is a type of GUI event, which indicates that some special action happened, like undo or redo. So why isn't it called something like ExecuteCommand? Actually, that command type exists as well. While they have a slightly different meaning, in practice you use them for the exact same purpose. Unfortunately, depening on exactly where you're checking and how you're constructing your GUI, either one or the other event happens, but not both. Why this is so, I do not know.So to be perfectly safe, you have to check for both command types. In this case, however, you can suffice with checking ValidateCommand.using UnityE
using UnityE
[CustomEditor(typeof(Star))]
public class StarInspector : Editor {
private static GUIContent
insertContent = new GUIContent("+", "duplicate this point"),
deleteContent = new GUIContent("-", "delete this point"),
pointContent = GUIContent.none,
teleportContent = new GUIContent("T");
private static GUILayoutOption
buttonWidth = GUILayout.MaxWidth(20f),
colorWidth = GUILayout.MaxWidth(50f);
private SerializedO
private SerializedProperty
frequency,
private int teleportingE
void OnEnable () { … }
public override void OnInspectorGUI () {
star.Update();
GUILayout.Label("Points");
for(int i = 0; i & points.arrayS i++){
EditorGUILayout.BeginHorizontal();
SerializedProperty point = points.GetArrayElementAtIndex(i);
EditorGUILayout.PropertyField(point.FindPropertyRelative("offset"), pointContent);
EditorGUILayout.PropertyField(point.FindPropertyRelative("color"), pointContent, colorWidth);
if(GUILayout.Button(teleportContent, EditorStyles.miniButtonLeft, buttonWidth)){
if(teleportingElement &= 0){
points.MoveArrayElement(teleportingElement, i);
teleportingElement = -1;
teleportContent.tooltip = "start teleporting this point";
teleportingElement =
teleportContent.tooltip = "teleport here";
if(GUILayout.Button(insertContent, EditorStyles.miniButtonMid, buttonWidth)){
points.InsertArrayElementAtIndex(i);
if(GUILayout.Button(deleteContent, EditorStyles.miniButtonRight, buttonWidth)){
points.DeleteArrayElementAtIndex(i);
EditorGUILayout.EndHorizontal();
if(teleportingElement &= 0){
GUILayout.Label("teleporting point " + teleportingElement);
EditorGUILayout.PropertyField(frequency);
EditorGUILayout.PropertyField(centerColor);
star.ApplyModifiedProperties() ||
(Event.current.type == EventType.ValidateCommand &&
mandName == "UndoRedoPerformed")
((Star)target).UpdateStar();
最后,一个舒服的编辑过程!还有什么需要做吗?在编辑器的右上角有一个齿轮图标能够重置组件。当我们重置Star组件的时候我们的Mesh没有及时更新。
你可以定义Reset方法来监听一个组件的重置。这事Unity为Editor及其子类提供的一个方法。当这个事件发生,我们只要及时更新我们的星星就可以了。using S
using UnityE
[ExecuteInEditMode, RequireComponent(typeof(MeshFilter), typeof(MeshRenderer))]
public class Star : MonoBehaviour {
[Serializable]
public class Point { … }
public Point[]
public int frequency = 1;
public Color centerC
private Vector3[]
private Color[]
private int[]
public void UpdateStar () { … }
void OnEnable () { … }
void OnDisable () { … }
void Reset () {
UpdateStar();
OK我们开始写Reset。我们要做什么?我们来试试prefabs?
现在使用prefabs对于我们star并没有太多意义,因为每一个star都拥有自己的独立的Mesh。如果你想使用很多个一样的star,那在建立一个3D模型并且导入Mesh是一个好主意。这样所有的star就共享了同一个Mesh。但假设我们使用prefab,就可以实例化多个同样的star然后我们还能够调整它们。
你只要简单的拖拽一个star从层级视图到项目视图,就能建立一个prefab。对prefab的更新能够影响全部的prefab实例,因为每个prefab的修改都会触发OnDisable和OnEnable。将一个实例回复成prefab同样的状态它依然能够工作。
唯一我们没有完全做好的事情是prefab的MeshFilter会显示它的Mesh类型不匹配。这事因为prefab是一个实际的资源,而动态生成的Mesh不是。这不影响功能,但还是让我们解决它吧。
一个修改后提示类型不匹配的prefab
为了停止prefab生成它的Mesh,我们不能再调用UpdateStar方法。不幸的是,这代表我们将不能再看到预览了。我们可以用PrefabUtility.GetPrefabType方法来检测编辑窗口当前的对象是不是prefab。如果是,我们简单的不更新它就行了。using UnityE
using UnityE
[CustomEditor(typeof(Star))]
public class StarInspector : Editor {
private static GUIContent
insertContent = new GUIContent("+", "duplicate this point"),
deleteContent = new GUIContent("-", "delete this point"),
pointContent = GUIContent.none,
teleportContent = new GUIContent("T");
private static GUILayoutOption
buttonWidth = GUILayout.MaxWidth(20f),
colorWidth = GUILayout.MaxWidth(50f);
private SerializedO
private SerializedProperty
frequency,
private int teleportingE
void OnEnable () { … }
public override void OnInspectorGUI () {
star.Update();
GUILayout.Label("Points");
for(int i = 0; i & points.arrayS i++){
EditorGUILayout.BeginHorizontal();
SerializedProperty point = points.GetArrayElementAtIndex(i);
EditorGUILayout.PropertyField(point.FindPropertyRelative("offset"), pointContent);
EditorGUILayout.PropertyField(point.FindPropertyRelative("color"), pointContent, colorWidth);
if(GUILayout.Button(teleportContent, EditorStyles.miniButtonLeft, buttonWidth)){
if(teleportingElement &= 0){
points.MoveArrayElement(teleportingElement, i);
teleportingElement = -1;
teleportContent.tooltip = "start teleporting this point";
teleportingElement =
teleportContent.tooltip = "teleport here";
if(GUILayout.Button(insertContent, EditorStyles.miniButtonMid, buttonWidth)){
points.InsertArrayElementAtIndex(i);
if(GUILayout.Button(deleteContent, EditorStyles.miniButtonRight, buttonWidth)){
points.DeleteArrayElementAtIndex(i);
EditorGUILayout.EndHorizontal();
if(teleportingElement &= 0){
GUILayout.Label("teleporting point " + teleportingElement);
EditorGUILayout.PropertyField(frequency);
EditorGUILayout.PropertyField(centerColor);
star.ApplyModifiedProperties() ||
(Event.current.type == EventType.ValidateCommand &&
mandName == "UndoRedoPerformed")
if(PrefabUtility.GetPrefabType(target) != PrefabType.Prefab){
((Star)target).UpdateStar();
prefab没有了Mesh和预览
OK,我们完成了,真的?我没还没有对同时存在多个对象的情况进行支持。试试同时选择多个star。
还没有提供多对象编辑
让我们尝试多对象编辑功能吧。首先,我们需要给类添加一个属性让编辑器提供相应的支持。然后我们需要初始化所有target的SerializedObject,而不再只是一个。我们还需要把任何变化同步到全部的target上。
这样就能在编辑器中支持多个对象了,但如果一些star的point个数不一样,就会出错。因为在Unity的编辑器尝试读取全部点的资料的时候,有些点会不存在。我们可以在获得每个point的数据的时候检查一下这个point是否存在,如果不存在,就停止取值。所以我们只需要显示一个star所拥有的数量的point就可以了。using UnityE
using UnityE
[CanEditMultipleObjects, CustomEditor(typeof(Star))]
public class StarInspector : Editor {
private static GUIContent
insertContent = new GUIContent("+", "duplicate this point"),
deleteContent = new GUIContent("-", "delete this point"),
pointContent = GUIContent.none,
teleportContent = new GUIContent("T");
private static GUILayoutOption
buttonWidth = GUILayout.MaxWidth(20f),
colorWidth = GUILayout.MaxWidth(50f);
private SerializedO
private SerializedProperty
frequency,
private int teleportingE
void OnEnable () {
star = new SerializedObject(targets);
points = star.FindProperty("points");
frequency = star.FindProperty("frequency");
centerColor = star.FindProperty("centerColor");
teleportingElement = -1;
teleportContent.tooltip = "start teleporting this point";
public override void OnInspectorGUI () {
star.Update();
GUILayout.Label("Points");
for(int i = 0; i & points.arrayS i++){
SerializedProperty
point = points.GetArrayElementAtIndex(i),
offset = point.FindPropertyRelative("offset");
if(offset == null){
EditorGUILayout.BeginHorizontal();
EditorGUILayout.PropertyField(offset, pointContent);
EditorGUILayout.PropertyField(point.FindPropertyRelative("color"), pointContent, colorWidth);
if(GUILayout.Button(teleportContent, EditorStyles.miniButtonLeft, buttonWidth)){
if(teleportingElement &= 0){
points.MoveArrayElement(teleportingElement, i);
teleportingElement = -1;
teleportContent.tooltip = "start teleporting this point";
teleportingElement =
teleportContent.tooltip = "teleport here";
if(GUILayout.Button(insertContent, EditorStyles.miniButtonMid, buttonWidth)){
points.InsertArrayElementAtIndex(i);
if(GUILayout.Button(deleteContent, EditorStyles.miniButtonRight, buttonWidth)){
points.DeleteArrayElementAtIndex(i);
EditorGUILayout.EndHorizontal();
if(teleportingElement &= 0){
GUILayout.Label("teleporting point " + teleportingElement);
EditorGUILayout.PropertyField(frequency);
EditorGUILayout.PropertyField(centerColor);
star.ApplyModifiedProperties() ||
(Event.current.type == EventType.ValidateCommand &&
mandName == "UndoRedoPerformed")
foreach(Star s in targets){
if(PrefabUtility.GetPrefabType(s) != PrefabType.Prefab){
s.UpdateStar();
多对象编辑
在场景中编辑 Editing in the Scene View
现在我们拥有了一个很不错的编辑器了,但如果我们能直接在场景里编辑这些point会不会更酷一些?用OnSceneGUI事件,我们可以做到。这个方法会在一个对象被选中即将赋予target时调用。我们不能在这个事件中使用SerializedObject。事实上,你可以认为这个方法与我们编辑器类中的其它部分是完全分离的。
Why does OnSceneGUI mess with target?
Probably for backwards compatibility. Multi-object editing was introduced in Unity 3.5. Versions before that only had the target variable.using UnityE
using UnityE
[CanEditMultipleObjects, CustomEditor(typeof(Star))]
public class StarInspector : Editor {
private static GUIContent
insertContent = new GUIContent("+", "duplicate this point"),
deleteContent = new GUIContent("-", "delete this point"),
pointContent = GUIContent.none,
teleportContent = new GUIContent("T");
private static GUILayoutOption
buttonWidth = GUILayout.MaxWidth(20f),
colorWidth = GUILayout.MaxWidth(50f);
private SerializedO
private SerializedProperty
frequency,
private int teleportingE
void OnEnable () { … }
public override void OnInspectorGUI () { … }
void OnSceneGUI () {}
让我们设置一个方形的小手柄在star全部的point上面。我们只要在这些point的第一个重复周期里显示手柄就可以了,不需要把全部的重复周期都显示出来。放置这些手柄就好象生成Mesh一样,除了我们使用的是世界坐标系,不是本地坐标系,所以我们要用到star的transform。
我们可以通过Handles.FreeMoveHandle方法来绘制我们的手柄。首先,需要一个世界坐标系的位置,手柄的位置。其次,需要一个绘制手柄的角度,但我们不需要旋转。然后,还需要手柄的尺寸,我们用一个很小的尺寸就够了。我们用一个vector来保存这个尺寸,可以设置成(0.1, 0.1 0.1)。最后一个参数是定义手柄的形状。
How do we convert to world space?
You convert a point from local to world space by appling all transformation matrices of its object hierarchy to it. Unity takes care of this when rendering the scene, but sometimes you need to do it yourself. You can use the Transform.TransformPoint method for this. using UnityE
using UnityE
[CanEditMultipleObjects, CustomEditor(typeof(Star))]
public class StarInspector : Editor {
private static Vector3 pointSnap = Vector3.one * 0.1f;
private static GUIContent
insertContent = new GUIContent("+", "duplicate this point"),
deleteContent = new GUIContent("-", "delete this point"),
pointContent = GUIContent.none,
teleportContent = new GUIContent("T");
private static GUILayoutOption
buttonWidth = GUILayout.MaxWidth(20f),
colorWidth = GUILayout.MaxWidth(50f);
private SerializedO
private SerializedProperty
frequency,
private int teleportingE
void OnEnable () { … }
public override void OnInspectorGUI () { … }
void OnSceneGUI () {
Star star = (Star)
Transform starTransform = star.
float angle = -360f / (star.frequency * star.points.Length);
for(int i = 0; i & star.points.L i++){
Quaternion rotation = Quaternion.Euler(0f, 0f, angle * i);
Vector3 oldPoint = starTransform.TransformPoint(rotation * star.points[i].offset);
Handles.FreeMoveHandle(oldPoint, Quaternion.identity, 0.04f, pointSnap, Handles.DotCap);
在场景中添加了控制手柄
现在还有什么可以做到更好吗?你可以点击一个手柄,让它变成黄色。我们需要比较一个手柄的初始化位置和返回位置。如果不同,说明用户拖动了手柄,我们需要将改变同步到star。star的Mesh使用本地坐标系,在把坐标改变保存之前,不要忘记转换坐标。
How do we convert to local space?
You have to perform the exact opposite steps for converting to world space, in reverse order. You can use the Transform.InverseTransformPoint method for this. Note that when going to world space we rotated in local space first, then transformed. So to convert back, we inverse transform first, then inverse rotate in local space.using UnityE
using UnityE
[CanEditMultipleObjects, CustomEditor(typeof(Star))]
public class StarInspector : Editor {
private static Vector3 pointSnap = Vector3.one * 0.1f;
private static GUIContent
insertContent = new GUIContent("+", "duplicate this point"),
deleteContent = new GUIContent("-", "delete this point"),
pointContent = GUIContent.none,
teleportContent = new GUIContent("T");
private static GUILayoutOption
buttonWidth = GUILayout.MaxWidth(20f),
colorWidth = GUILayout.MaxWidth(50f);
private SerializedO
private SerializedProperty
frequency,
private int teleportingE
void OnEnable () { … }
public override void OnInspectorGUI () { … }
void OnSceneGUI () {
Star star = (Star)
Transform starTransform = star.
float angle = -360f / (star.frequency * star.points.Length);
for(int i = 0; i & star.points.L i++){
Quaternion rotation = Quaternion.Euler(0f, 0f, angle * i);
oldPoint = starTransform.TransformPoint(rotation * star.points[i].offset),
newPoint = Handles.FreeMoveHandle
(oldPoint, Quaternion.identity, 0.04f, pointSnap, Handles.DotCap);
if(oldPoint != newPoint){
star.points[i].offset = Quaternion.Inverse(rotation) *
starTransform.InverseTransformPoint(newPoint);
star.UpdateStar();
我们可以在场景中编辑了
有用了!不过我们还没支持Undo!这里我们不能靠SerializedObject来解决问题,不过幸好这些手柄可以支持Undo。我们只需要告诉编辑器哪个对象被改变了,我们还应该为这次改变起一个名字。我们可以用Undo.SetSnapshotTarget来做这些事。
What's a snapshot?
If an undo step would be created for each GUI event, dragging a handle would result in an undo history filled with dozens of tiny modifications. Instead, the handles make a copy – a snapshot – of the object when movement begins and only register a single undo step with the copy when movement ends. SetSnapshotTarget tells the handles which object to use for this.All Unity editor GUI elements essentialy do the same thing, whether it's for draggin handles, sliding numbers, typing text, or whatever.using UnityE
using UnityE
[CanEditMultipleObjects, CustomEditor(typeof(Star))]
public class StarInspector : Editor {
private static Vector3 pointSnap = Vector3.one * 0.1f;
private static GUIContent
insertContent = new GUIContent("+", "duplicate this point"),
deleteContent = new GUIContent("-", "delete this point"),
pointContent = GUIContent.none,
teleportContent = new GUIContent("T");
private static GUILayoutOption
buttonWidth = GUILayout.MaxWidth(20f),
colorWidth = GUILayout.MaxWidth(50f);
private SerializedO
private SerializedProperty
frequency,
private int teleportingE
void OnEnable () { … }
public override void OnInspectorGUI () { … }
void OnSceneGUI () {
Star star = (Star)
Transform starTransform = star.
Undo.SetSnapshotTarget(star, "Move Star Point");
float angle = -360f / (star.frequency * star.points.Length);
for(int i = 0; i & star.points.L i++){
Quaternion rotation = Quaternion.Euler(0f, 0f, angle * i);
oldPoint = starTransform.TransformPoint(rotation * star.points[i].offset),
newPoint = Handles.FreeMoveHandle
(oldPoint, Quaternion.identity, 0.04f, pointSnap, Handles.DotCap);
if(oldPoint != newPoint){
star.points[i].offset = Quaternion.Inverse(rotation) *
starTransform.InverseTransformPoint(newPoint);
star.UpdateStar();
这样,我们终于完成了!一个有趣的设计过程,不是吗?
阅读(2930)|
用微信&&“扫一扫”
将文章分享到朋友圈。
用易信&&“扫一扫”
将文章分享到朋友圈。
历史上的今天
在LOFTER的更多文章
loftPermalink:'',
id:'fks_',
blogTitle:'Unity3d自定义一个编辑器组件/插件的简易教程',
blogAbstract:''
{list a as x}
{if x.moveFrom=='wap'}
{elseif x.moveFrom=='iphone'}
{elseif x.moveFrom=='android'}
{elseif x.moveFrom=='mobile'}
${a.selfIntro|escape}{if great260}${suplement}{/if}
{list a as x}
推荐过这篇日志的人:
{list a as x}
{if !!b&&b.length>0}
他们还推荐了:
{list b as y}
转载记录:
{list d as x}
{list a as x}
{list a as x}
{list a as x}
{list a as x}
{if x_index>4}{break}{/if}
${fn2(x.publishTime,'yyyy-MM-dd HH:mm:ss')}
{list a as x}
{if !!(blogDetail.preBlogPermalink)}
{if !!(blogDetail.nextBlogPermalink)}
{list a as x}
{if defined('newslist')&&newslist.length>0}
{list newslist as x}
{if x_index>7}{break}{/if}
{list a as x}
{var first_option =}
{list x.voteDetailList as voteToOption}
{if voteToOption==1}
{if first_option==false},{/if}&&“${b[voteToOption_index]}”&&
{if (x.role!="-1") },“我是${c[x.role]}”&&{/if}
&&&&&&&&${fn1(x.voteTime)}
{if x.userName==''}{/if}
网易公司版权所有&&
{list x.l as y}
{if defined('wl')}
{list wl as x}{/list}}

我要回帖

更多关于 unity gui教程 的文章

更多推荐

版权声明:文章内容来源于网络,版权归原作者所有,如有侵权请点击这里与我们联系,我们将及时删除。

点击添加站长微信