// 눈 깜박이는 애니메이션 카운트 추가 애니메이터에서 콜백으로 호출 protected void AddBlinkCount() { if (UnitAnimator != null) { UnitAnimator.SetInteger("blink", UnitAnimator.GetInteger("blink") + 1); } }
// 눈 깜박이는 애니메이션 카운트 초기화 애니메이터에서 콜백으로 호출 protected void ResetBlinkCount() { UnitAnimator.SetInteger("blink", 0); }