SoundEventResult
Result of sound event detection.
| Type | Name | Interface Description |
|---|---|---|
| Variables | similarity: number | • Function: sound event similarity |
| Variables | type: SoundEventType | • Function: sound event type |
| Functions | constructor(type: SoundEventType, similarity: number) |
Examples
constructor(type: SoundEventType, similarity: number)
let obj = new APJS.SoundEventResult();
Use Case
@component()
export class NewBehaviourScript extends APJS.BasicScriptComponent {
onStart() {
// TODO: instantiate / use SoundEventResult here
}
onUpdate(deltaTime: number) {
}
}