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

FMOD_Studio_EventInstance_GetDescription() private method

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

Usage Example

Beispiel #1
0
        public RESULT getDescription(out EventDescription description)
        {
            description = null;
            IntPtr raw;
            RESULT rESULT = EventInstance.FMOD_Studio_EventInstance_GetDescription(this.rawPtr, out raw);

            if (rESULT != RESULT.OK)
            {
                return(rESULT);
            }
            description = new EventDescription(raw);
            return(rESULT);
        }
EventInstance