Interface IAudioSystem
The entry point for interacting with the audio system.
Namespace: AGS.API
Assembly: AGS.API.dll
Syntax
public interface IAudioSystem
Properties
| Improve this Doc View SourceAudioClips
Gets all available audio clips.
Declaration
IAGSBindingList<IAudioClip> AudioClips { get; }
Property Value
Type | Description |
---|---|
IAGSBindingList<IAudioClip> | The audio clips. |
AudioRules
Gets the audio rules (which can modify properties of playing sounds).
Declaration
IAGSBindingList<IAudioRule> AudioRules { get; }
Property Value
Type | Description |
---|---|
IAGSBindingList<IAudioRule> | The audio rules. |
CurrentlyPlayingSounds
Gets the currently playing sounds.
Declaration
ReadOnlyCollection<ISound> CurrentlyPlayingSounds { get; }
Property Value
Type | Description |
---|---|
System.Collections.ObjectModel.ReadOnlyCollection<ISound> | The currently playing sounds. |
Settings
Gets the settings.
Declaration
IAudioSettings Settings { get; }
Property Value
Type | Description |
---|---|
IAudioSettings | The settings. |