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

FMOD_Studio_EventInstance_GetPitch() private method

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

Usage Example

示例#1
0
 public RESULT getPitch(out float pitch)
 {
     return(EventInstance.FMOD_Studio_EventInstance_GetPitch(this.rawPtr, out pitch));
 }
EventInstance