Ejemplo n.º 1
0
 private static extern RESULT FMOD_Studio_EventInstance_SetProperty          (IntPtr _event, EVENT_PROPERTY index, float value);
Ejemplo n.º 2
0
 public RESULT setProperty(EVENT_PROPERTY index, float value)
 {
     return FMOD_Studio_EventInstance_SetProperty(rawPtr, index, value);
 }
Ejemplo n.º 3
0
 public RESULT setProperty(EVENT_PROPERTY index, float value)
 {
     return(EventInstance.FMOD_Studio_EventInstance_SetProperty(this.rawPtr, index, value));
 }
Ejemplo n.º 4
0
 private static extern RESULT FMOD_Studio_EventInstance_SetProperty(IntPtr _event, EVENT_PROPERTY index, float value);
Ejemplo n.º 5
0
 public RESULT setProperty(EVENT_PROPERTY index, float value)
 {
     return(FMOD_Studio_EventInstance_SetProperty(handle, index, value));
 }
Ejemplo n.º 6
0
 public RESULT getProperty(EVENT_PROPERTY index, out float value)
 {
     return EventInstance.FMOD_Studio_EventInstance_GetProperty(this.rawPtr, index, out value);
 }