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 {
|
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',
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -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',
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue