Esempio n. 1
0
        /// <summary>
        /// Invokes all interpolators at the current progress level.  You can use this to ensure
        /// that a tween starts in a state that is consistent with how it will behave once it
        /// is started.
        /// </summary>
        public unsafe Tween Invoke()
        {
            throwIfInvalid();

            _instance.interpolatePercent();
            return(this);
        }