sealed class WebAudioEvent
AudioListenerCreatedEvent |
Notifies that the construction of an AudioListener has finished. data class AudioListenerCreatedEvent : WebAudioEvent |
AudioListenerWillBeDestroyedEvent |
Notifies that a new AudioListener has been created. data class AudioListenerWillBeDestroyedEvent : WebAudioEvent |
AudioNodeCreatedEvent |
Notifies that a new AudioNode has been created. data class AudioNodeCreatedEvent : WebAudioEvent |
AudioNodeWillBeDestroyedEvent |
Notifies that an existing AudioNode has been destroyed. data class AudioNodeWillBeDestroyedEvent : WebAudioEvent |
AudioParamCreatedEvent |
Notifies that a new AudioParam has been created. data class AudioParamCreatedEvent : WebAudioEvent |
AudioParamWillBeDestroyedEvent |
Notifies that an existing AudioParam has been destroyed. data class AudioParamWillBeDestroyedEvent : WebAudioEvent |
ContextChangedEvent |
Notifies that existing BaseAudioContext has changed some properties (id stays the same).. data class ContextChangedEvent : WebAudioEvent |
ContextCreatedEvent |
Notifies that a new BaseAudioContext has been created. data class ContextCreatedEvent : WebAudioEvent |
ContextWillBeDestroyedEvent |
Notifies that an existing BaseAudioContext will be destroyed. data class ContextWillBeDestroyedEvent : WebAudioEvent |
NodeParamConnectedEvent |
Notifies that an AudioNode is connected to an AudioParam. data class NodeParamConnectedEvent : WebAudioEvent |
NodeParamDisconnectedEvent |
Notifies that an AudioNode is disconnected to an AudioParam. data class NodeParamDisconnectedEvent : WebAudioEvent |
NodesConnectedEvent |
Notifies that two AudioNodes are connected. data class NodesConnectedEvent : WebAudioEvent |
NodesDisconnectedEvent |
Notifies that AudioNodes are disconnected. The destination can be null, and it means all the outgoing connections from the source are disconnected. data class NodesDisconnectedEvent : WebAudioEvent |