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

FMOD_Studio_EventInstance_GetVolume() private method

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

Usage Example

Beispiel #1
0
 public RESULT getVolume(out float volume)
 {
     return(EventInstance.FMOD_Studio_EventInstance_GetVolume(this.rawPtr, out volume));
 }
EventInstance