more engines

This commit is contained in:
2025-10-12 11:04:54 +02:00
parent 94a36b1a29
commit 7b99dc0f0d
4371 changed files with 2187 additions and 92 deletions

View File

@ -41,7 +41,9 @@
let isRecording = false;
let isDragOver = false;
const allProcessors = getAllProcessors();
const allProcessors = getAllProcessors().sort((a, b) =>
a.getName().localeCompare(b.getName())
);
$: showDuration = engineType !== 'sample';
$: showRandomButton = engineType === 'generative';