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

FMOD_Studio_EventInstance_GetTimelinePosition() private method

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

Usage Example

Beispiel #1
0
 public RESULT getTimelinePosition(out int position)
 {
     return(EventInstance.FMOD_Studio_EventInstance_GetTimelinePosition(this.rawPtr, out position));
 }
EventInstance