애니메이터

2022. 6. 16. 22:28Unity/스크립트 기본

Animator anim;

void Awake()
{
	anim = GetComponent<Animator>();
}

void 특정함수(){
	anim.SetBool("유니티 애니메이터 창에서 설정한 값", false);
    anim.SetInteger("유니티 애니메이터 창에서 설정한 값", (int)value);
    anim.SetTrigger("유니티 애니메이터 창에서 설정한 값");
}

 

728x90

'Unity > 스크립트 기본' 카테고리의 다른 글

오브젝트 풀링  (0) 2023.01.26
메모리 관리  (0) 2022.06.27
파일 불러오기  (0) 2022.06.16
게임오브젝트 불러오기  (0) 2022.06.16
스태틱  (0) 2022.06.16