예제 #1
0
 private void ResetTweener(bool resetToPosition)
 {
     if (tweener != null)
     {
         if (resetToPosition)
         {
             tweener.Reset(pointerPosition);
         }
         else
         {
             tweener.Reset();
         }
     }
 }
        public void Stop( )
        {
            if (!_started)
            {
                return;
            }

            _started = false;

            _propertyInfo.SetValue(_propertiesThisAppliesTo, _originalValue, null);

            _tweener.Reset();
        }