Advertisement
Muk99

Untitled

Oct 15th, 2015
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.21 KB | None | 0 0
  1. public void OpenMenu (float t){
  2.     StartCoroutine(Lerp(t));
  3. }
  4.  
  5. public Ienumerator Lerp(float t){
  6.     while(Vector2.Distance(menuSubjectRect.position, novaPosiรงรฃo) > 1)
  7.     {
  8.         //Lerp here
  9.         yield return null;
  10.     }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement