From bddf85c0dca3c2bf42986f5896ea266f51382cf6 Mon Sep 17 00:00:00 2001 From: Ben Swift Date: Tue, 10 Dec 2024 15:26:51 +1100 Subject: [PATCH] bump maxSketches back up to 50 because I solved the framerate problem, and this wasn't the cause --- assets/js/sketch_canvas_hook.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/js/sketch_canvas_hook.js b/assets/js/sketch_canvas_hook.js index 8a7cd42..f7cc67a 100644 --- a/assets/js/sketch_canvas_hook.js +++ b/assets/js/sketch_canvas_hook.js @@ -4,7 +4,7 @@ const SketchCanvasHook = { mounted() { // Configure sketches this.sketches = []; - this.maxSketches = 10; + this.maxSketches = 50; this.sketchHPad = 100; this.noise = new FastNoiseLite(); this.noise.SetNoiseType(FastNoiseLite.NoiseType.Perlin);