getSound() public method

public getSound ( int index, Sound &sound ) : RESULT
index int
sound Sound
return RESULT
Example #1
0
 public Sound?GetSound(int index)
 {
     FMOD.Sound sound;
     if (!_fmodGroup.getSound(index, out sound).Check(Suppressions()))
     {
         return(null);
     }
     return(Sound.FromFmod(sound));
 }