I need help with something
I need to add time in between this function "Throttlecos(Time500)" currently it repeats immediately after I don't want that. If anyone can help I would greatly appreciate it. To rephrase I need to pause the imput in between loops.
Funky trees
6,367 XYeetusdeletusx
2.1 years ago
@hpgbproductions I'm smooth brained
@hpgbproductions thanks
Add delay between cycles of trigonometric function
cos(lerp(0, 360, inverselerp(0, TRIG_PERIOD, repeat(Time, TRIG_PERIOD+TRIG_PAUSE))))
TRIG_PERIOD
: Time taken for the trigonometric function to animate from 0 to 360 degrees.(In your case, 360deg / 500deg/s = 0.72s)
TRIG_PAUSE
: Pause duration between animations.