Esempio n. 1
0
        /// <summary>
        /// Returns TRUE if there are tweens with the given id, and they're all currently paused
        /// </summary>
        public static bool IsPausedById(object id)
        {
            List <Tween> tweens = DOTween.TweensById(id, false, _RecyclableList);

            return(AreAllPaused(tweens));
        }
Esempio n. 2
0
        /// <summary>
        /// Returns TRUE if there are tweens with the given id, and they're all currently playing backwards
        /// </summary>
        public static bool IsPlayBackwardsById(object id)
        {
            List <Tween> tweens = DOTween.TweensById(id, false, _RecyclableList);

            return(AreAllPlayingBackwards(tweens));
        }