Esempio n. 1
0
 public void DOPlayById(string id)
 {
     DOTween.Play(this.gameObject, id);
 }
Esempio n. 2
0
 public void DOPlayAllById(string id)
 {
     DOTween.Play(id);
 }
Esempio n. 3
0
 /// <summary>
 ///     Plays 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 DOPlay(this AudioMixer target)
 {
     return(DOTween.Play(target));
 }
Esempio n. 4
0
        // These methods are here so they can be called directly via Unity's UGUI event system

        public override void DOPlay()
        {
            DOTween.Play(this.gameObject);
        }
Esempio n. 5
0
 /// <summary>
 /// Plays all tweens whose target-id is the same as the one set by this animation
 /// </summary>
 public override void DOPlay()
 {
     DOTween.Play(GetTweenTarget());
 }
Esempio n. 6
0
 /// <summary>
 /// Plays all tweens with the given ID and whose target-id is the same as the one set by this animation
 /// </summary>
 public void DOPlayById(string id)
 {
     DOTween.Play(GetTweenTarget(), id);
 }
Esempio n. 7
0
 public static int DOPlay(this Material target)
 {
     return(DOTween.Play(target));
 }
Esempio n. 8
0
 public static int DOPlay(this Component target)
 {
     return(DOTween.Play(target));
 }
Esempio n. 9
0
        // These methods are here so they can be called directly via Unity's UGUI event system

        public override void DOPlay()
        {
            DOTween.Play(this.GetTweenGO());
        }
Esempio n. 10
0
 public void DOPlayById(string id)
 {
     DOTween.Play(this.GetTweenGO(), id);
 }
Esempio n. 11
0
 public override void DOPlay()
 {
     DOTween.Play(base.gameObject);
 }
 public void DOPlayById(string id)
 {
     DOTween.Play(base.get_gameObject(), id);
 }
Esempio n. 13
0
 public void DOPlayAllById(string id)
 {
     CreateTween();
     DOTween.Play(id);
 }
Esempio n. 14
0
 public void DOPlayById(string id)
 {
     CreateTween();
     DOTween.Play(this.gameObject, id);
 }
Esempio n. 15
0
        // These methods are here so they can be called directly via Unity's UGUI event system

        public override void DOPlay()
        {
            CreateTween();
            DOTween.Play(this.gameObject);
        }