Esempio n. 1
0
 public override void DOPlayForward()
 {
     DOTween.PlayForward(this.gameObject);
     if (isCloseAllButton && null != btns && btns.Length > 0)
     {
         StartCoroutine(SetCloseButton());
     }
 }
Esempio n. 2
0
 public void DOPlayForwardAllById(string id)
 {
     DOTween.PlayForward(id);
 }
Esempio n. 3
0
 public void DOPlayForwardById(string id)
 {
     DOTween.PlayForward(this.gameObject, id);
 }
Esempio n. 4
0
 public override void DOPlayForward()
 {
     DOTween.PlayForward(this.gameObject);
 }
Esempio n. 5
0
 /// <summary>
 ///     Plays forward 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 DOPlayForward(this AudioMixer target)
 {
     return(DOTween.PlayForward(target));
 }
Esempio n. 6
0
 /// <summary>
 /// Plays forward all tweens with the given ID and whose target-id is the same as the one set by this animation
 /// </summary>
 public void DOPlayForwardById(string id)
 {
     DOTween.PlayForward(GetTweenTarget(), id);
 }
Esempio n. 7
0
 /// <summary>
 /// Plays foward all tweens whose target-id is the same as the one set by this animation
 /// </summary>
 public override void DOPlayForward()
 {
     DOTween.PlayForward(GetTweenTarget());
 }
Esempio n. 8
0
 public override void DOPlayForward()
 {
     DOTween.PlayForward(this.id);
 }
Esempio n. 9
0
 public static int DOPlayForward(this Component target)
 {
     return(DOTween.PlayForward(target));
 }
Esempio n. 10
0
 public void DOPlayForwardById(string id)
 {
     DOTween.PlayForward(this.GetTweenGO(), id);
 }
Esempio n. 11
0
 public static int DOPlayForward(this Material target)
 {
     return(DOTween.PlayForward(target));
 }
Esempio n. 12
0
 public override void DOPlayForward()
 {
     DOTween.PlayForward(this.GetTweenGO());
 }
 public void DOPlayForwardById(string id)
 {
     DOTween.PlayForward(base.get_gameObject(), id);
 }
 public override void DOPlayForward()
 {
     DOTween.PlayForward(base.get_gameObject());
 }
Esempio n. 15
0
 public void DOPlayForwardAllById(string id)
 {
     CreateTween();
     DOTween.PlayForward(id);
 }
Esempio n. 16
0
 public override void DOPlayForward()
 {
     CreateTween();
     DOTween.PlayForward(this.gameObject);
 }