보간 애니메이션 Lerp , Mathf.Lerp , ㅍㄷ
http://seungngil.tistory.com/152
void FillImage()
{
t += Time.deltaTime / 10.0f;
print(t);
bar.fillAmount = Mathf.Lerp(0, 1, t);
}
void FillImage()
{
t += Time.deltaTime / 10.0f;
print(t);
bar.fillAmount = Mathf.Lerp(0, 1, t);
}
댓글
댓글 쓰기