[유니티 매뉴얼] 스크립트 템플릿 사용자 지정
2021. 3. 5.
새 C# 스크립트를 생성하게 되면, 아래와 같이 C# 스크립트가 생성됩니다. using System.Collections; using System.Collections.Generic; using UnityEngine; public class NewBehaviourScript : MonoBehaviour { // Start is called before the first frame update void Start() { } // Update is called once per frame void Update() { } } 그러면, 저는 제일 먼저 하는 것이 // Start is called before the first frame update 주석과 // Update is called once per fra..