fix(manifold): remove particle backend copy
This commit is contained in:
parent
3cf11ef9cf
commit
7190932191
2 changed files with 3 additions and 3 deletions
|
|
@ -23,13 +23,13 @@ import type { BackendStatus } from './backend';
|
|||
|
||||
export class ParticleBackend extends PassthroughBackend {
|
||||
constructor() {
|
||||
super('particles', 'Particle visualiser — outputs drive the flow field (no audio)');
|
||||
super('particles', 'ready');
|
||||
}
|
||||
|
||||
override status(): BackendStatus {
|
||||
return {
|
||||
state: 'ready',
|
||||
message: 'Particle visualiser — outputs drive the flow field (no audio)',
|
||||
message: 'ready',
|
||||
};
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -34,7 +34,7 @@ export const OUTPUT_MODES: readonly OutputModeDescriptor[] = [
|
|||
{
|
||||
id: 'particles',
|
||||
label: 'Particle System',
|
||||
description: 'Flow-field visualiser driven by the model outputs (no audio).',
|
||||
description: 'Visual output.',
|
||||
audio: false,
|
||||
backend: 'particles',
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in a new issue