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

FMOD_Studio_EventInstance_GetProperty() private method

private FMOD_Studio_EventInstance_GetProperty ( IntPtr _event, EVENT_PROPERTY index, float &value ) : RESULT
_event System.IntPtr
index EVENT_PROPERTY
value float
return RESULT
        private static extern RESULT FMOD_Studio_EventInstance_GetProperty          (IntPtr _event, EVENT_PROPERTY index, out float value);
        [DllImport(STUDIO_VERSION.dll)]

Usage Example

Beispiel #1
0
 public RESULT getProperty(EVENT_PROPERTY index, out float value)
 {
     return(EventInstance.FMOD_Studio_EventInstance_GetProperty(this.rawPtr, index, out value));
 }
EventInstance