fix(manifold): remove particle backend copy

This commit is contained in:
monkey-w1n5t0n 2026-07-25 16:10:04 +02:00
parent 3cf11ef9cf
commit 7190932191
2 changed files with 3 additions and 3 deletions

View file

@ -23,13 +23,13 @@ import type { BackendStatus } from './backend';
export class ParticleBackend extends PassthroughBackend { export class ParticleBackend extends PassthroughBackend {
constructor() { constructor() {
super('particles', 'Particle visualiser — outputs drive the flow field (no audio)'); super('particles', 'ready');
} }
override status(): BackendStatus { override status(): BackendStatus {
return { return {
state: 'ready', state: 'ready',
message: 'Particle visualiser — outputs drive the flow field (no audio)', message: 'ready',
}; };
} }
} }

View file

@ -34,7 +34,7 @@ export const OUTPUT_MODES: readonly OutputModeDescriptor[] = [
{ {
id: 'particles', id: 'particles',
label: 'Particle System', label: 'Particle System',
description: 'Flow-field visualiser driven by the model outputs (no audio).', description: 'Visual output.',
audio: false, audio: false,
backend: 'particles', backend: 'particles',
}, },