コード例 #1
0
 ITweenHash ITweenHash.Wrap(TweenWrapMode wrap, int count)
 {
     return(this.Wrap(wrap, count));
 }
コード例 #2
0
 public TweenHash PingPong(int count = -1)
 {
     _wrap      = TweenWrapMode.PingPong;
     _wrapCount = count;
     return(this);
 }
コード例 #3
0
 public TweenHash Wrap(TweenWrapMode wrap, int count = -1)
 {
     _wrap      = wrap;
     _wrapCount = count;
     return(this);
 }
コード例 #4
0
 public TweenHash PlayOnce()
 {
     _wrap = TweenWrapMode.Once;
     return(this);
 }
コード例 #5
0
 public TweenHash Loop(int count = -1)
 {
     _wrap      = TweenWrapMode.Loop;
     _wrapCount = count;
     return(this);
 }
コード例 #6
0
 public TweenHash PlayOnce()
 {
     _wrap = TweenWrapMode.Once;
     return this;
 }
コード例 #7
0
 public TweenHash Wrap(TweenWrapMode wrap, int count = -1)
 {
     _wrap = wrap;
     _wrapCount = count;
     return this;
 }
コード例 #8
0
 public TweenHash PingPong(int count = -1)
 {
     _wrap = TweenWrapMode.PingPong;
     _wrapCount = count;
     return this;
 }
コード例 #9
0
 public TweenHash Loop(int count = -1)
 {
     _wrap = TweenWrapMode.Loop;
     _wrapCount = count;
     return this;
 }
コード例 #10
0
 ITweenHash ITweenHash.Wrap(TweenWrapMode wrap, int count)
 {
     return this.Wrap(wrap, count);
 }
コード例 #11
0
 ITweenHash ITweenHash.Wrap(TweenWrapMode wrap, int count)
 {
     this.WrapMode = wrap;
     this.WrapCount = count;
     return this;
 }
コード例 #12
0
 ITweenHash ITweenHash.Wrap(TweenWrapMode wrap, int count)
 {
     this.WrapMode  = wrap;
     this.WrapCount = count;
     return(this);
 }