Exemplo n.º 1
0
		public RESULT getProperties(ref REVERB_PROPERTIES properties)
		{
			return FMOD_Reverb_GetProperties(reverbraw, ref properties);
		}
Exemplo n.º 2
0
		private static extern RESULT FMOD_Reverb_GetProperties(IntPtr reverb, ref REVERB_PROPERTIES properties);
Exemplo n.º 3
0
		public RESULT getReverbAmbientProperties(ref REVERB_PROPERTIES prop)
		{
			return FMOD_System_GetReverbAmbientProperties(systemraw, ref prop);
		}
Exemplo n.º 4
0
		private static extern RESULT FMOD_System_GetReverbAmbientProperties(IntPtr system, ref REVERB_PROPERTIES prop);
Exemplo n.º 5
0
		private static extern RESULT FMOD_EventReverb_SetProperties(IntPtr eventreverb, ref REVERB_PROPERTIES props);
Exemplo n.º 6
0
		// Reverb api
		public RESULT setReverbProperties(ref REVERB_PROPERTIES prop)
		{
			return FMOD_System_SetReverbProperties(systemraw, ref prop);
		}
Exemplo n.º 7
0
		private static extern RESULT FMOD_EventSystem_SetReverbAmbientProperties(IntPtr eventsystem, ref REVERB_PROPERTIES props);
Exemplo n.º 8
0
		public RESULT setProperties(ref REVERB_PROPERTIES props)
		{
			return FMOD_EventReverb_SetProperties(eventreverbraw, ref props);
		}
Exemplo n.º 9
0
		private static extern RESULT FMOD_EventSystem_GetReverbPresetByIndex(IntPtr eventsystem, int index, ref REVERB_PROPERTIES props, ref IntPtr name);
Exemplo n.º 10
0
		private static extern RESULT FMOD_EventSystem_GetReverbPreset(IntPtr eventsystem, string name, ref REVERB_PROPERTIES props, ref int index);
Exemplo n.º 11
0
		public RESULT setReverbAmbientProperties(ref REVERB_PROPERTIES props)
		{
			return FMOD_EventSystem_SetReverbAmbientProperties(eventsystemraw, ref props);
		}
Exemplo n.º 12
0
		public RESULT getReverbPresetByIndex(int index, ref REVERB_PROPERTIES props, ref IntPtr name)
		{
			return FMOD_EventSystem_GetReverbPresetByIndex(eventsystemraw, index, ref props, ref name);
		}
Exemplo n.º 13
0
		public RESULT getReverbPreset(string name, ref REVERB_PROPERTIES props, ref int index)
		{
			return FMOD_EventSystem_GetReverbPreset(eventsystemraw, name, ref props, ref index);
		}