Does it take too long to create debounces? Do you need to reuse them throughout Scripts? Fret not, DebounceLib is for you!
Installation
See here for installation methods, or just take the Model:
Roblox-ts version
There’s now a rbxts package for DebounceLib! See here:
Same class and methods, just ported:
import DebounceLib from '@rbxts/debouncelib';
// Or
import { DebounceLib } from '@rbxts/debouncelib';
const Lib = new DebounceLib();
// Lib.createEvent etc
Hello,
On debouncelib website-api-reference i gotta connect time out
also
Website says If you’re the owner of this website:
Contact your hosting provider letting them know your web server is not completing requests. An Error 522 means that the request was able to connect to your web server, but that the request didn’t finish. The most likely cause is that something on your server is hogging resources. Additional troubleshooting information here
I got that first time I tried too. Just refresh and it should work fine.
@ReturnedTrue what is the point of the init function? Why have you chosen this over just require()ing the module and using a standard constructor, such as .new(), for each new debounce?