HideInInspector
Unity3D 2012. 11. 2. 15:19Makes a variable not show up in the inspector but be serialized.
using UnityEngine;
using System.Collections;
public class example : MonoBehaviour {
[HideInInspector]
public int p = 5;
}
'Unity3D' 카테고리의 다른 글
유니티 앱 종료시 감지 (0) | 2012.11.08 |
---|---|
유니티 멀티게임 테스트 - 1 (1) | 2012.11.08 |
RequireComponent (0) | 2012.11.02 |
Unity3d Android 해상도 설정하기 ( Screen.SetResolution ) (0) | 2012.11.02 |
Disabling rigidbody constraints in code - Freeze Position, Rotation etc (0) | 2012.10.31 |