/// <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)); }
/// <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)); }