2019.4 LTS 기준으로 설명한다. Unity의 기본적인 틀은 거의 바뀌지 않기에 맞다고봐도 무방하다. docs.unity3d.com/ 원하면 위의 영상을 참고해도 좋다. Update() Update는 처음 C# 생성될 때 만들어진 주석의 설명 그대로다. Update is called every frame, if the MonoBehaviour is enabled. 매 프레임마다 호출된다. **MonoBehaviour는 C# 스크립트라면, Unity를 사용한다면 무조건 같이 포함된 Class라고 배웠다. 나중에 더 알아보자 Update is the most commonly used function to implement any kind of game script. -> script를 읽어들이는 주기라..