首页 > 编程语言 > 详细

UNITY 手动定制inspector

时间:2017-03-28 19:21:15      阅读:196      评论:0      收藏:0      [点我收藏+]
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEditor;
using System;

[ExecuteInEditMode]
[CustomEditor(typeof(testxx))]
public class testxxEditor : Editor {

    [SerializeField]
    public float slider_value = 0.3f;

    public bool chk = false;
    SerializedProperty check;

    // Use this for initialization
    void Start () {
        
    }
    void OnEnable()
    {
        check = serializedObject.FindProperty("x");
        Debug.Log("============" + check.floatValue);
    }
    // Update is called once per frame
    void Update () {

    }

    public override void OnInspectorGUI()
    {
        if (GUILayout.Button("hello"))
        {
            //testxx otx = (testxx)target;
//             otx.x = 5.93f;
//             otx.check = false;
            Debug.Log("hello------------");
        }
        slider_value = EditorGUILayout.Slider(slider_value, 0, 1.0f);
        chk = GUILayout.Toggle(chk, new GUIContent("chk"));
        EditorGUILayout.PropertyField(check);
        serializedObject.ApplyModifiedProperties();
    }
}
using System.Collections;
using System.Collections.Generic;
using UnityEditor;
using UnityEngine;

//[ExecuteInEditMode]
public class testxx : MonoBehaviour {

    [Range(1,10)]
    public float x = 0;

    public string text = "hello";

    public bool check = false;

    public bool[] chks = new bool[10];
    // Use this for initialization
    void Start () {
        
    }
    
    // Update is called once per frame
    void Update () {
        if (check)
        {
            Debug.Log("==================" + x);
        }
    }


}

 将testxx.cs挂到一个物体上,点击该GO,即可看到inspector上定制出来的相关UI

UNITY 手动定制inspector

原文:http://www.cnblogs.com/timeObjserver/p/6636051.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!