(HideInInspector) 변수를 인스펙터 뷰에서 보이지 않도록 설정
using System.Collections; using System.Collections.Generic; using UnityEngine; public class Test : MonoBehaviour { public int testNum; } Test의 스크립트는 변수 testNum을 가지고있습니다. testNum의 변수는 public이기 때문에 유니티 게임 오브젝트가 Test 스크립트를 가진다면 인스펙터에서 사용자가 변수를 제어할 수 있습니다. 하지만 다른 개발자가 해당 변수를 제어하는 걸 원하지 않는다면? using System.Collections; using System.Collections.Generic; using UnityEngine; public class Test : MonoBehavi..
유니티 Unity/클래스 & 함수 정리
2019. 9. 6. 16:02