Esempio n. 1
0
 public override void DOPlayBackwards()
 {
     DOTween.PlayBackwards(this.gameObject);
     if (isCloseAllButton && null != btns && btns.Length > 0)
     {
         StartCoroutine(SetCloseButton());
     }
 }
Esempio n. 2
0
 public void DOPlayBackwardsAllById(string id)
 {
     DOTween.PlayBackwards(id);
 }
Esempio n. 3
0
 public void DOPlayBackwardsById(string id)
 {
     DOTween.PlayBackwards(this.gameObject, id);
 }
Esempio n. 4
0
 public override void DOPlayBackwards()
 {
     DOTween.PlayBackwards(this.gameObject);
 }
Esempio n. 5
0
 /// <summary>
 ///     Plays backwards all tweens that have this target as a reference
 ///     (meaning tweens that were started from this target, or that had this target added as an Id)
 ///     and returns the total number of tweens played.
 /// </summary>
 public static int DOPlayBackwards(this AudioMixer target)
 {
     return(DOTween.PlayBackwards(target));
 }
Esempio n. 6
0
 /// <summary>
 /// Plays backwards all tweens with the given ID and whose target-id is the same as the one set by this animation
 /// </summary>
 public void DOPlayBackwardsById(string id)
 {
     DOTween.PlayBackwards(GetTweenTarget(), id);
 }
Esempio n. 7
0
 /// <summary>
 /// Plays backwards all tweens whose target-id is the same as the one set by this animation
 /// </summary>
 public override void DOPlayBackwards()
 {
     DOTween.PlayBackwards(GetTweenTarget());
 }
Esempio n. 8
0
 public static int DOPlayBackwards(this Material target)
 {
     return(DOTween.PlayBackwards(target));
 }
Esempio n. 9
0
 public static int DOPlayBackwards(this Component target)
 {
     return(DOTween.PlayBackwards(target));
 }
Esempio n. 10
0
 public void DOPlayBackwardsById(string id)
 {
     DOTween.PlayBackwards(this.GetTweenGO(), id);
 }
Esempio n. 11
0
 public override void DOPlayBackwards()
 {
     DOTween.PlayBackwards(this.GetTweenGO());
 }
 public void DOPlayBackwardsById(string id)
 {
     DOTween.PlayBackwards(base.get_gameObject(), id);
 }
 public override void DOPlayBackwards()
 {
     DOTween.PlayBackwards(base.get_gameObject());
 }
Esempio n. 14
0
 public void DOPlayBackwardsAllById(string id)
 {
     CreateTween();
     DOTween.PlayBackwards(id);
 }