Interface IAudioProvider
Provides audio playback for dialogue lines. Implement this interface to integrate Ibralogue with any audio backend (Unity AudioSource, FMOD, Wwise, etc.).
Namespace: Ibralogue
Assembly: .dll
Syntax
public interface IAudioProvider
Methods
| Edit this page View SourcePlay(string)
Plays an audio clip identified by the given clip ID (typically a Resources path or an identifier understood by the audio backend).
Declaration
void Play(string clipId)
Parameters
| Type | Name | Description |
|---|---|---|
| string | clipId |
Stop()
Stops the currently playing audio.
Declaration
void Stop()