aboutsummaryrefslogtreecommitdiff
path: root/static/src/engine/debounce_publisher.ts
diff options
context:
space:
mode:
authorElizabeth Hunt <elizabeth.hunt@simponic.xyz>2024-09-15 17:38:02 -0700
committerElizabeth Hunt <elizabeth.hunt@simponic.xyz>2024-09-15 17:38:02 -0700
commit8ac11eda05e7159a7f762d3396cf7bb8ee51534b (patch)
tree6e1214ceebd209f3829aac73b2dd330452079d84 /static/src/engine/debounce_publisher.ts
parentf7e7121fce7bd3f7fdabe836955e43b3d194c1c6 (diff)
downloadkennel.hatecomputers.club-8ac11eda05e7159a7f762d3396cf7bb8ee51534b.tar.gz
kennel.hatecomputers.club-8ac11eda05e7159a7f762d3396cf7bb8ee51534b.zip
render the spritesheet spec in the render systemHEADmain
Diffstat (limited to 'static/src/engine/debounce_publisher.ts')
-rw-r--r--static/src/engine/debounce_publisher.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/static/src/engine/debounce_publisher.ts b/static/src/engine/debounce_publisher.ts
index bc5e95f..8ee4bb0 100644
--- a/static/src/engine/debounce_publisher.ts
+++ b/static/src/engine/debounce_publisher.ts
@@ -5,7 +5,7 @@ export class DebouncePublisher<T> {
constructor(
private readonly publisher: (data: T) => void | Promise<void>,
- private readonly debounce_ms = 150,
+ private readonly debounce_ms = 100,
) {}
public start() {