* 본 내용은 레트로의 유니티 게임 프로그래밍 에센스 내용을 기반으로 정리하였습니다. Unity에서 GameObject를 찾는 방법은 여러가지가 있습니다. 그 중 Find에 관련된 내용을 정리해보고자 합니다. https://docs.unity3d.com/ScriptReference/GameObject.Find.html Unity - Scripting API: GameObject.Find This function only returns active GameObjects. If no GameObject with name can be found, null is returned. If name contains a '/' character, it traverses the hierarchy l..