미션을 눌렀을 때 나오는 애니메이션은 캐릭터 안에 버튼을 만들 것이다. 버튼은 아래와 같은 설정으로 만들어준다. 나중에 코드에서 on, off 할 것이다. using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.UI; using UnityEngine.EventSystems; //UI를 선택한 것인지 그냥 움직인 것인지 확인 public class PlayerCtrl : MonoBehaviour { public GameObject joyStick, mainView, missionView; public Button btn; Animator anim; public float speed; pub..