Interface IUnitySoundMixerRuntime
Unity-layer intention interface for the sound mixer runtime. Exposes Unity-specific operations that are NOT on ISoundMixerService (direct access to the underlying Unity UnityEngine.Audio.AudioMixer for advanced editor/tooling operations). Allows Unity-side consumers (e.g. the custom editor) to reach the mixer without casting to the concrete service type.
Namespace: Serenity.SoundMixer.Infrastructure.Interfaces
Assembly: Serenity.UnitySoundMixer.Infrastructure.dll
Syntax
public interface IUnitySoundMixerRuntime
Methods
GetAudioMixer()
Gets the Unity AudioMixer instance managed by this service. Provides direct access to the underlying Unity audio mixer for advanced operations.
Declaration
AudioMixer GetAudioMixer()
Returns
| Type | Description |
|---|---|
| AudioMixer | The Unity AudioMixer instance. |