BaseAudioDetector
The base class for audio detectors with common functionality.
| Type | Name | Interface Description |
|---|---|---|
| Variables | enabled: boolean | |
| Functions | constructor() |
Examples
constructor()
let obj = new APJS.BaseAudioDetector();
Use Case
@component()
export class NewBehaviourScript extends APJS.BasicScriptComponent {
onStart() {
// TODO: instantiate / use BaseAudioDetector here
}
onUpdate(deltaTime: number) {
}
}