Working on processors a tiny bit
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
import type { AudioProcessor } from "./AudioProcessor";
|
||||
import type { AudioProcessor, ProcessorCategory } from "./AudioProcessor";
|
||||
|
||||
export class HaasEffect implements AudioProcessor {
|
||||
getName(): string {
|
||||
@ -9,6 +9,10 @@ export class HaasEffect implements AudioProcessor {
|
||||
return "Creates stereo width with micro-delay (precedence effect)";
|
||||
}
|
||||
|
||||
getCategory(): ProcessorCategory {
|
||||
return 'Space';
|
||||
}
|
||||
|
||||
async process(
|
||||
leftChannel: Float32Array,
|
||||
rightChannel: Float32Array
|
||||
|
||||
Reference in New Issue
Block a user