feat/debug-node #41

Merged
max merged 17 commits from feat/debug-node into main 2026-02-12 23:20:59 +01:00
Showing only changes of commit 81580ccd8c - Show all commits

View File

@@ -1,15 +1,3 @@
const data: Record<string, unknown> = {};
export function clearDebugData() {
for (const key in data) {
delete data[key];
}
}
export function getDebugData() {
return { ...data };
}
export const debugNode = {
id: 'max/plantarium/debug',
inputs: {
@@ -17,5 +5,7 @@ export const debugNode = {
type: '*'
}
},
execute() {}
execute(_data: Int32Array): Int32Array {
return _data;
}
} as const;