Add piano item type with realtime play mode and remote notes

This commit is contained in:
Jage9
2026-02-22 23:42:17 -05:00
parent 81c6af6399
commit 1319c044dd
23 changed files with 1014 additions and 23 deletions

View File

@@ -89,6 +89,8 @@ export class CanvasRenderer {
? '#fbbf24'
: item.type === 'wheel'
? '#f97316'
: item.type === 'piano'
? '#c4b5fd'
: item.type === 'clock'
? '#86efac'
: item.type === 'widget'
@@ -103,6 +105,8 @@ export class CanvasRenderer {
? 'R'
: item.type === 'wheel'
? 'W'
: item.type === 'piano'
? 'P'
: item.type === 'clock'
? 'C'
: item.type === 'widget'