FMOD.Sound.setMusicChannelVolume C# (CSharp) Method

setMusicChannelVolume() public method

public setMusicChannelVolume ( int channel, float volume ) : RESULT
channel int
volume float
return RESULT
        public RESULT setMusicChannelVolume   (int channel, float volume)
        {
            return FMOD_Sound_SetMusicChannelVolume(rawPtr, channel, volume);
        }
        public RESULT getMusicChannelVolume   (int channel, out float volume)

Usage Example

コード例 #1
0
ファイル: Sound.cs プロジェクト: minimalism/SupersonicSound
 public bool SetVolume(int index, float volume)
 {
     return(_fmodSound.setMusicChannelVolume(index, volume).Check(_suppressions));
 }
Sound