오늘의 학습진행강의 4주차 완료(프로젝트명: 르탄이를 찾아라)습득한 지식동시에 오디오 출력하기 audioSource.PlayOneShot(clip); public AudioClip busterSound; private void Awake() { myAudioSource = GetComponent(); } private void OnTriggerEnter(Collider other) { if (other.gameObject.layer == LayerMask.NameToLayer("Box")) { myAudioSource.PlayOneShot(busterSound); } }https://docs.uni..