| | 1 | | namespace DCL |
| | 2 | | { |
| | 3 | | /// <summary> |
| | 4 | | /// An "audio mixer" that handles muting/fading when entering special states like Avatar Editor, Tutorial, Builder I |
| | 5 | | /// </summary> |
| | 6 | | public class DataStore_VirtualAudioMixer |
| | 7 | | { |
| 685 | 8 | | public readonly BaseVariable<float> musicVolume = new BaseVariable<float>(1f); |
| 685 | 9 | | public readonly BaseVariable<float> sceneSFXVolume = new BaseVariable<float>(1f); |
| 685 | 10 | | public readonly BaseVariable<float> voiceChatVolume = new BaseVariable<float>(1f); |
| 685 | 11 | | public readonly BaseVariable<float> uiSFXVolume = new BaseVariable<float>(1f); |
| 685 | 12 | | public readonly BaseVariable<float> avatarSFXVolume = new BaseVariable<float>(1f); |
| | 13 | | } |
| | 14 | | } |