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

本脚本参考基于Unity 3.4.1f5

英文部分版权属©Unity公司所有,中文部分© Unity圣典 版权所有,未经许可,严禁转载 。