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

Inspector视图中的get/set使用

时间:2017-01-20 00:29:29      阅读:242      评论:0      收藏:0      [点我收藏+]

标签:err   over   rri   unity   set   type   tom   custom   turn   

using UnityEngine;
using System.Collections;

public class Test : MonoBehaviour {

    public int width
    {
        get {
            Debug.Log("get");
            return _width; 
        }
        set {
            Debug.Log ("set");
            _width = value; 
        }
    }
    [SerializeField]//强制Unity去序列化一个私有域
    private int _width;
}

 

using UnityEngine;
using System.Collections;
using UnityEditor;

[CustomEditor(typeof(Test))]
public class TestEditor:Editor {
    
    public override void OnInspectorGUI (){
        Test test=target as Test;
        int w=EditorGUILayout.IntField("Width",test.width);
        if(test.width!=w)test.width=w;

        base.OnInspectorGUI ();
    }
}

 

Inspector视图中的get/set使用

标签:err   over   rri   unity   set   type   tom   custom   turn   

原文地址:http://www.cnblogs.com/kingBook/p/6309028.html

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