본문 바로가기

내배켐 Unity TIL

Unity 67일차 TIL - Unity (Animator.Play())

애니메이션을 Animtator 창에서 Animation들을 Transition으로 연결해서 Parameter 변수를 통해서 실행시키는게 일반적인데 이번에 만들게된 2D TopDown 4 Directional로 Player를 만들다보니 사용하게 된 에셋의 Animation이 너무 복잡했다.

 

기존에 사용하던 에셋의 Animator 상태

 

일단 상태가 너무 많다보니 Parameter도 많았고, Trigger로 활용됐지만 전부다 실행 뒤에 Idle로 돌아간다는 단점이 있다.

그래서 어떻게하면 내가 원하는 Animation을 원하는 상황에서 실행시킬 수 있을지 고민을 하다가 Youtube에서 Animator Class에서 Play라는 함수를 통해서 Animation을 바로 실행시킬 수 있다는 것을 알게 됐다.

 

그래서 Animation Data들을 만들고, Animator.Play()를 통해서 원하는 애니메이션을 바로 실행하게 될 수 있게됐다.

 

밑에는 수정 후의 Animator 상태 모습이다.

Blend Tree와 Animator.Play()를 활용한 뒤 Animator 상태

 

[Serializable]
public class PlayerAndNpcAnimationData
{
    // Base
    public string Idle { get; private set; }
    public string Walk { get; private set; }
    public string Run { get; private set; }
    public string Sleep { get; private set; }
    public string Sitting { get; private set; }
    public string SchockDown { get; private set; }

    // Sword
    public string SwordDraw { get; private set; }
    public string SwordSheath { get; private set; }
    public string SwordIdle { get; private set; }
    public string SwordWalk { get; private set; }
    public string SwordLunge { get; private set; }
    public string SwordDodge { get; private set; }
    public string SwordRetreat { get; private set; }
    public string SwordSlash1 { get; private set; }
    public string SwordSlash2 { get; private set; }
    public string SwordThrust { get; private set; }
    public string SwordShieldBash { get; private set; }
    public string SwordHurt { get; private set; }
    public string SwordDead { get; private set; }

    public void Initialize()
     {
      // Base
        Idle = "IdleState";
        Walk = "WalkState";
        Run = "RunState";
        Sitting = "SittingState";
        Sleep = "SleepState";
        SchockDown = "SchockDownState";

        // Sword
        SwordDraw = "SwordDrawState";
        SwordSheath = "SwordSheathState";
        SwordIdle = "SwordIdleState";
        SwordWalk = "SwordWalkState";
        SwordLunge = "SwordLungeState";
        SwordDodge = "SwordDodgeState";
        SwordRetreat = "SwordRetreatState";
        SwordThrust = "SwordThrustState";
        SwordSlash1 = "SwordSlash1State";
        SwordSlash2 = "SwordSlash2State";
        SwordShieldBash = "SwordShieldBashState";
        SwordHurt = "SwordHurtState";
        SwordDead = "SwordDeadState";
    }
}

이런식으로 BlendTree로 만든 Animation의 이름을 사용한다.

 

Animator.Play() 함수의 매개변수로는 이와 같은 Animation의 이름인 string이나, 이것을 hash 값으로 바꾼 int 변수를 받는다.