First commit for private source control. Older commits available on Github.
This commit is contained in:
22
Assets/Scripts/Data/Identifiers/AudioParameters.cs
Normal file
22
Assets/Scripts/Data/Identifiers/AudioParameters.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
namespace BriarQueen.Data.Identifiers
|
||||
{
|
||||
public static class AudioMixerParameters
|
||||
{
|
||||
public const string MASTER_VOLUME = "Master_Volume";
|
||||
public const string MUSIC_VOLUME = "Music_Volume";
|
||||
public const string SFX_VOLUME = "SFX_Volume";
|
||||
public const string AMBIENCE_VOLUME = "Ambience_Volume";
|
||||
public const string VOICE_VOLUME = "Voice_Volume";
|
||||
public const string UI_VOLUME = "UI_Volume";
|
||||
}
|
||||
|
||||
public static class AudioMixerGroups
|
||||
{
|
||||
public const string MASTER_GROUP = "Master";
|
||||
public const string MUSIC_GROUP = "Music";
|
||||
public const string SFX_GROUP = "SFX";
|
||||
public const string AMBIENCE_GROUP = "Ambience";
|
||||
public const string VOICE_GROUP = "Voice";
|
||||
public const string UI_GROUP = "UI";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user