필드 초기화는 Awake() 메서드가 호출되기 전, 클래스 인스턴스가 생성될 때 수행되는 중요한 단계입니다. 이 시점에서 가능한 작업과 불가능한 작업을 명확히 이해하면 안정적인 초기화 코드를 작성하는 데 도움이 됩니다.가능한 작업1. 기본 값 할당단순 타입 초기화단순 타입 초기화public int health = 100;public float speed = 5.0f;public string playerName = "Hero";public bool isActive = true;배열 및 컬렉션 초기화public int[] scores = { 10, 20, 30 };public List items = new List() { "Sword", "Shield" };readonly 필드 초기화public readon..