pbr1111 / wheel-of-names-discord-bot

A wheel of names bot build with discord.js
9 stars 4 forks source link

Awesome, works great. How do i increase duration of GIF, slow it down and the increase the last duration where it slows down? #5

Open david-lathem opened 4 months ago

david-lathem commented 4 months ago

Awesome, works great. How do i increase duration of GIF, slow it down and the increase the last duration where it slows down?

pbr1111 commented 4 months ago

Hi!

To increase the total duration of the animation, change the MAX_DURATION_MS constant in pick.ts.

To change the animation, you need to modify the easing function in the canvas-wheel.ts file. You can use this page to find the easing that best suits your needs: https://easings.net/

I used Github Copilot to get the implementation of the actual easeOutQuad, but you can find the different implementations here: https://spicyyoghurt.com/tools/easing-functions

Hope it helps