Exemplo n.º 1
0
        public OrientationInterpolator(IOrientationContainer target, quat start, quat end, EaseTypes easeType,
                                       float duration = 0, bool isRepeatable = true) : base(start, end, duration, easeType, isRepeatable)
        {
            Debug.Assert(target != null, NullMessage);

            containerTarget = target;
        }
Exemplo n.º 2
0
 public OrientationInterpolator(IOrientationContainer target, EaseTypes easeType, bool isRepeatable = true) :
     this(target, quat.Identity, quat.Identity, easeType, 0, isRepeatable)
 {
 }