애니메이션을 Animtator 창에서 Animation들을 Transition으로 연결해서 Parameter 변수를 통해서 실행시키는게 일반적인데 이번에 만들게된 2D TopDown 4 Directional로 Player를 만들다보니 사용하게 된 에셋의 Animation이 너무 복잡했다.
일단 상태가 너무 많다보니 Parameter도 많았고, Trigger로 활용됐지만 전부다 실행 뒤에 Idle로 돌아간다는 단점이 있다.
그래서 어떻게하면 내가 원하는 Animation을 원하는 상황에서 실행시킬 수 있을지 고민을 하다가 Youtube에서 Animator Class에서 Play라는 함수를 통해서 Animation을 바로 실행시킬 수 있다는 것을 알게 됐다.
그래서 Animation Data들을 만들고, 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 변수를 받는다.
'내배켐 Unity TIL' 카테고리의 다른 글
Unity 68일차 TIL - Unity (Blend Tree) (0) | 2024.07.24 |
---|---|
Unity 64일차 TIL - Unity (2D ItemInventory4_InventoryUIDragAndDrop) (0) | 2024.07.15 |
Unity 63일차 TIL - Unity (2D ItemInventory3_ItemTooltipUI) (0) | 2024.07.10 |
Unity 60일차 TIL - Unity (Graphic RayCaster) (0) | 2024.07.05 |
Unity 59일차 TIL - Unity (2D ItemInventory2_InventoryUI) (0) | 2024.07.04 |