Skip to content

Commit

Permalink
For now, skip the grid.
Browse files Browse the repository at this point in the history
  • Loading branch information
crummy committed Aug 29, 2024
1 parent 6f60e26 commit 8865702
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/VisualizationP5.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export const VisualizationP5 = (p: p5, element: HTMLElement) => {
}
p.background("black");
touchEffects.draw(p);
grid.draw(p);
// grid.draw(p);
for (const [recordingId, line] of Object.entries(lines)) {
const colour = colours[Number.parseInt(recordingId) % colours.length];
const red = (colour >> 16) & 0xff;
Expand Down

0 comments on commit 8865702

Please sign in to comment.