removeTween() публичный статический Метод

public static removeTween ( int i ) : void
i int
Результат void
 public LTDescr cancel(GameObject gameObject)
 {
     if (gameObject == this.trans.get_gameObject())
     {
         LeanTween.removeTween((int)this._id, this.uniqueId);
     }
     return(this);
 }
Пример #2
0
 public LTDescr cancel(GameObject gameObject)
 {
     if (gameObject == trans.gameObject)
     {
         LeanTween.removeTween((int)_id, uniqueId);
     }
     return(this);
 }
Пример #3
0
 public LTDescr cancel(GameObject gameObject)
 {
     // Debug.Log("canceling id:"+this._id+" this.uniqueId:"+this.uniqueId+" go:"+this.trans.gameObject);
     if (gameObject == this.trans.gameObject)
     {
         LeanTween.removeTween((int)this._id, this.uniqueId);
     }
     return(this);
 }
Пример #4
0
 public LTDescr cancel()
 {
     LeanTween.removeTween((int)_id);
     return(this);
 }