Exemplo n.º 1
0
 public TweenRoateAxis(float s, float v, Vector3 axis, ETweenType type)
     : base(s)
 {
     _v    = v;
     _type = type;
     _axis = axis;
 }
Exemplo n.º 2
0
 public TweenRotate(float s, Vector3 v, Vector3 ctrl, ETweenType type)
     : base(s)
 {
     _v    = v;
     _ctrl = ctrl;
     _type = type;
 }
Exemplo n.º 3
0
 public TweenFade(float s, float v, ETweenType type)
     : base(s)
 {
 }