Example #1
0
        //----- method -----

        public SoundElement(SoundManagement soundManagement, SoundType type, SoundSheet soundSheet, CueInfo cueInfo, CriAtomExPlayback playback)
        {
            this.playback        = playback;
            this.soundManagement = soundManagement;

            this.Type       = type;
            this.SoundSheet = soundSheet;
            this.CueInfo    = cueInfo;
        }
Example #2
0
 public void SetVolume(float value)
 {
     SoundManagement.SetVolume(this, value);
 }