HideInInspector 在检视面板中隐藏
Inherits from Attribute
Makes a variable not show up in the inspector but be serialized.
使得一个变量不显示在inspector(检视面板)但是被序列化。
using UnityEngine;
using System.Collections;
public class example : MonoBehaviour {
[HideInInspector]
public int p = 5;
}
// Make the variable p not show up in the inspector
//使得一个变量p不显示在inspector(检视面板)
// but be serialized.
//但是被序列化。
@HideInInspector
var p = 5;
最后修改:2011年4月25日 Monday 21:12