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

FMOD_Studio_EventInstance_GetParameterCount() private method

private FMOD_Studio_EventInstance_GetParameterCount ( IntPtr _event, int &count ) : RESULT
_event System.IntPtr
count int
return RESULT
        private static extern RESULT FMOD_Studio_EventInstance_GetParameterCount    (IntPtr _event, out int count);
        [DllImport(STUDIO_VERSION.dll)]

Usage Example

Beispiel #1
0
 public RESULT getParameterCount(out int count)
 {
     return(EventInstance.FMOD_Studio_EventInstance_GetParameterCount(this.rawPtr, out count));
 }
EventInstance