Profile image

Funky trees

6,367 XYeetusdeletusx  2.1 years ago

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.

  • Log in to leave a comment
  • Profile image

    @hpgbproductions I'm smooth brained

    2.0 years ago
  • Profile image

    @hpgbproductions thanks

    2.1 years ago
  • Profile image

    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.

    2.1 years ago