Пример #1
0
 public TweenRoateAxis(float s, float v, Vector3 axis, ETweenType type)
     : base(s)
 {
     _v    = v;
     _type = type;
     _axis = axis;
 }
Пример #2
0
 public TweenRotate(float s, Vector3 v, Vector3 ctrl, ETweenType type)
     : base(s)
 {
     _v    = v;
     _ctrl = ctrl;
     _type = type;
 }
Пример #3
0
 public TweenFade(float s, float v, ETweenType type)
     : base(s)
 {
 }