コード例 #1
0
 public void DOPlayById(string id)
 {
     DOTween.Play(this.gameObject, id);
 }
コード例 #2
0
 public void DOPlayAllById(string id)
 {
     DOTween.Play(id);
 }
コード例 #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));
 }
コード例 #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);
        }
コード例 #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());
 }
コード例 #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);
 }
コード例 #7
0
 public static int DOPlay(this Material target)
 {
     return(DOTween.Play(target));
 }
コード例 #8
0
ファイル: ShortcutExtensions.cs プロジェクト: garsonlab/GCube
 public static int DOPlay(this Component target)
 {
     return(DOTween.Play(target));
 }
コード例 #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());
        }
コード例 #10
0
 public void DOPlayById(string id)
 {
     DOTween.Play(this.GetTweenGO(), id);
 }
コード例 #11
0
 public override void DOPlay()
 {
     DOTween.Play(base.gameObject);
 }
コード例 #12
0
 public void DOPlayById(string id)
 {
     DOTween.Play(base.get_gameObject(), id);
 }
コード例 #13
0
 public void DOPlayAllById(string id)
 {
     CreateTween();
     DOTween.Play(id);
 }
コード例 #14
0
 public void DOPlayById(string id)
 {
     CreateTween();
     DOTween.Play(this.gameObject, id);
 }
コード例 #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);
        }