ITweenHash ITweenHash.Wrap(TweenWrapMode wrap, int count)
 {
     return(this.Wrap(wrap, count));
 }
 public TweenHash PingPong(int count = -1)
 {
     _wrap      = TweenWrapMode.PingPong;
     _wrapCount = count;
     return(this);
 }
 public TweenHash Wrap(TweenWrapMode wrap, int count = -1)
 {
     _wrap      = wrap;
     _wrapCount = count;
     return(this);
 }
 public TweenHash PlayOnce()
 {
     _wrap = TweenWrapMode.Once;
     return(this);
 }
 public TweenHash Loop(int count = -1)
 {
     _wrap      = TweenWrapMode.Loop;
     _wrapCount = count;
     return(this);
 }
 public TweenHash PlayOnce()
 {
     _wrap = TweenWrapMode.Once;
     return this;
 }
 public TweenHash Wrap(TweenWrapMode wrap, int count = -1)
 {
     _wrap = wrap;
     _wrapCount = count;
     return this;
 }
 public TweenHash PingPong(int count = -1)
 {
     _wrap = TweenWrapMode.PingPong;
     _wrapCount = count;
     return this;
 }
 public TweenHash Loop(int count = -1)
 {
     _wrap = TweenWrapMode.Loop;
     _wrapCount = count;
     return this;
 }
 ITweenHash ITweenHash.Wrap(TweenWrapMode wrap, int count)
 {
     return this.Wrap(wrap, count);
 }
 ITweenHash ITweenHash.Wrap(TweenWrapMode wrap, int count)
 {
     this.WrapMode = wrap;
     this.WrapCount = count;
     return this;
 }
Beispiel #12
0
 ITweenHash ITweenHash.Wrap(TweenWrapMode wrap, int count)
 {
     this.WrapMode  = wrap;
     this.WrapCount = count;
     return(this);
 }