FMOD.Studio.EventInstance.FMOD_Studio_EventInstance_SetVolume C# (CSharp) Method

FMOD_Studio_EventInstance_SetVolume() private method

private FMOD_Studio_EventInstance_SetVolume ( IntPtr _event, float volume ) : RESULT
_event System.IntPtr
volume float
return RESULT
        private static extern RESULT FMOD_Studio_EventInstance_SetVolume            (IntPtr _event, float volume);
        [DllImport(STUDIO_VERSION.dll)]

Usage Example

Beispiel #1
0
 public RESULT setVolume(float volume)
 {
     return(EventInstance.FMOD_Studio_EventInstance_SetVolume(this.rawPtr, volume));
 }
EventInstance