아미(아름다운미소)

[Unity]애니메이터에 등록된 애니메이션 목록 가져오기 본문

랭귀지/Unity

[Unity]애니메이터에 등록된 애니메이션 목록 가져오기

유키공 2018. 4. 1. 09:30

유니티 애니메이터에 등록된 애니메이션 목록 가져오기

        AnimatorController anicontrol = mator.runtimeAnimatorController as AnimatorController;
        AnimationClip[] clips = anicontrol.animationClips;
        foreach (AnimationClip c in clips)
            Debug.Log(c.name);

'랭귀지 > Unity' 카테고리의 다른 글

[Unity] 2D 점프  (0) 2018.04.05
유니티 점프시 카메라이동  (0) 2018.04.02
[Unity3D] Script Editor 바꾸기  (0) 2018.03.30
[Unity] 유니티 애니메이션 전환  (0) 2018.03.29
유니티 개발시 필요한 라이프 사이클  (0) 2018.03.24
Comments