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

FMOD_Studio_EventInstance_Get3DAttributes() private method

private FMOD_Studio_EventInstance_Get3DAttributes ( IntPtr _event, FMOD.Studio.ATTRIBUTES_3D &attributes ) : RESULT
_event System.IntPtr
attributes FMOD.Studio.ATTRIBUTES_3D
return RESULT
        private static extern RESULT FMOD_Studio_EventInstance_Get3DAttributes      (IntPtr _event, out ATTRIBUTES_3D attributes);
        [DllImport(STUDIO_VERSION.dll)]

Usage Example

Beispiel #1
0
 public RESULT get3DAttributes(out ATTRIBUTES_3D attributes)
 {
     return(EventInstance.FMOD_Studio_EventInstance_Get3DAttributes(this.rawPtr, out attributes));
 }
EventInstance