Debounce: Revision history

From ROBLOX Wiki
Jump to navigationJump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

10 December 2024

  • curprev 14:1114:11, 10 December 2024 PRG talk contribs 2,286 bytes +2,286 Created page with "<!-- manually recreated, no source archive --> {{CatUp|Tutorials}} __TOC__ == Introduction == A debounce system is a system that keeps a function from running too many times. It usually is used in a listener because a listener can be called many times while it's still working. == The basic idea == <pre> enabled = true --default is true, so that the function works function dosomething() if not enabled then return end --if enabled is not true, then return withou..."