Esempio n. 1
0
 // Token: 0x06000062 RID: 98 RVA: 0x00002DDD File Offset: 0x00000FDD
 public static EaseFunction StopMotion(int motionFps, AnimationCurve animCurve)
 {
     return(EaseFactory.StopMotion(motionFps, new EaseFunction(new EaseCurve(animCurve).Evaluate)));
 }
Esempio n. 2
0
        // Token: 0x06000061 RID: 97 RVA: 0x00002DAC File Offset: 0x00000FAC
        public static EaseFunction StopMotion(int motionFps, Ease?ease = null)
        {
            EaseFunction customEase = EaseManager.ToEaseFunction((ease == null) ? DOTween.defaultEaseType : ease.Value);

            return(EaseFactory.StopMotion(motionFps, customEase));
        }