Stop() public method

public Stop ( UITweenInstance inst, bool complete ) : void
inst UITweenInstance
complete bool
return void
Ejemplo n.º 1
0
 public void Complete()
 {
     if (LastProgress != 1.0f)
     {
         RenderPercent(1.0f);
         Stop();
     }
     else
     {
         m_Owner.Stop(this, false);
     }
 }
Ejemplo n.º 2
0
 public void Complete()
 {
     if (LastProgress != 1.0f)
     {
         RenderPercent(1.0f);
     }
     if (OnComplete != null)
     {
         OnComplete(this, 1.0f);
     }
     m_Owner.Stop(this, false);
 }