private static extern RESULT FMOD_Event_Get3DAttributes(IntPtr _event, ref VECTOR position, ref VECTOR velocity, IntPtr orientation);
		private static extern RESULT FMOD_Geometry_GetScale(IntPtr geometry, ref VECTOR scale);
		public RESULT get3DAttributes(ref VECTOR position, ref float mindistance, ref float maxdistance)
		{
			return FMOD_Reverb_Get3DAttributes(reverbraw, ref position, ref mindistance, ref maxdistance);
		}
		private static extern RESULT FMOD_Geometry_AddPolygon(IntPtr geometry, float directocclusion, float reverbocclusion, int doublesided, int numvertices, VECTOR[] vertices, ref int polygonindex);
		private static extern RESULT FMOD_Geometry_GetRotation(IntPtr geometry, ref VECTOR forward, ref VECTOR up);
		public RESULT getPolygonVertex(int index, int vertexindex, ref VECTOR vertex)
		{
			return FMOD_Geometry_GetPolygonVertex(geometryraw, index, vertexindex, ref vertex);
		}
		public RESULT getPosition(ref VECTOR position)
		{
			return FMOD_Geometry_GetPosition(geometryraw, ref position);
		}
		public RESULT set3DCustomRolloff(ref VECTOR points, int numpoints)
		{
			return FMOD_Sound_Set3DCustomRolloff(soundraw, ref points, numpoints);
		}
		private static extern RESULT FMOD_Sound_Set3DCustomRolloff(IntPtr sound, ref VECTOR points, int numpoints);
Beispiel #10
0
		private static extern RESULT FMOD_System_Get3DListenerAttributes(IntPtr system, int listener, ref VECTOR pos, ref VECTOR vel, ref VECTOR forward, ref VECTOR up);
Beispiel #11
0
		private static extern RESULT FMOD_System_GetGeometryOcclusion(IntPtr system, ref VECTOR listener, ref VECTOR source, ref float direct, ref float reverb);
Beispiel #12
0
		public RESULT getGeometryOcclusion(ref VECTOR listener, ref VECTOR source, ref float direct, ref float reverb)
		{
			return FMOD_System_GetGeometryOcclusion(systemraw, ref listener, ref source, ref direct, ref reverb);
		}
Beispiel #13
0
		public RESULT get3DListenerAttributes(int listener, ref VECTOR pos, ref VECTOR vel, ref VECTOR forward, ref VECTOR up)
		{
			return FMOD_System_Get3DListenerAttributes(systemraw, listener, ref pos, ref vel, ref forward, ref up);
		}
		private static extern RESULT FMOD_EventReverb_Set3DAttributes(IntPtr eventreverb, ref VECTOR position, float mindistance, float maxdistance);
Beispiel #15
0
		private static extern RESULT FMOD_ChannelGroup_Override3DAttributes(IntPtr channelgroup, ref VECTOR pos, ref VECTOR vel);
Beispiel #16
0
		public RESULT get3DAttributes(ref VECTOR pos, ref VECTOR vel)
		{
			return FMOD_Channel_Get3DAttributes(channelraw, ref pos, ref vel);
		}
Beispiel #17
0
		public RESULT addPolygon(float directocclusion, float reverbocclusion, bool doublesided, int numvertices, VECTOR[] vertices, ref int polygonindex)
		{
			return FMOD_Geometry_AddPolygon(geometryraw, directocclusion, reverbocclusion, (doublesided ? 1 : 0), numvertices, vertices, ref polygonindex);
		}
Beispiel #18
0
		public RESULT get3DConeOrientation(ref VECTOR orientation)
		{
			return FMOD_Channel_Get3DConeOrientation(channelraw, ref orientation);
		}
Beispiel #19
0
		public RESULT getRotation(ref VECTOR forward, ref VECTOR up)
		{
			return FMOD_Geometry_GetRotation(geometryraw, ref forward, ref up);
		}
Beispiel #20
0
		public RESULT set3DCustomRolloff(ref VECTOR points, int numpoints)
		{
			return FMOD_Channel_Set3DCustomRolloff(channelraw, ref points, numpoints);
		}
Beispiel #21
0
		public RESULT getScale(ref VECTOR scale)
		{
			return FMOD_Geometry_GetScale(geometryraw, ref scale);
		}
Beispiel #22
0
		private static extern RESULT FMOD_Channel_Get3DAttributes(IntPtr channel, ref VECTOR pos, ref VECTOR vel);
Beispiel #23
0
		private static extern RESULT FMOD_Geometry_GetPolygonVertex(IntPtr geometry, int index, int vertexindex, ref VECTOR vertex);
Beispiel #24
0
		private static extern RESULT FMOD_Channel_Get3DConeOrientation(IntPtr channel, ref VECTOR orientation);
Beispiel #25
0
		private static extern RESULT FMOD_Geometry_GetPosition(IntPtr geometry, ref VECTOR position);
Beispiel #26
0
		private static extern RESULT FMOD_Channel_Set3DCustomRolloff(IntPtr channel, ref VECTOR points, int numpoints);
Beispiel #27
0
		// Reverb manipulation.
		public RESULT set3DAttributes(ref VECTOR position, float mindistance, float maxdistance)
		{
			return FMOD_Reverb_Set3DAttributes(reverbraw, ref position, mindistance, maxdistance);
		}
Beispiel #28
0
		public RESULT override3DAttributes(ref VECTOR pos, ref VECTOR vel)
		{
			return FMOD_ChannelGroup_Override3DAttributes(channelgroupraw, ref pos, ref vel);
		}
Beispiel #29
0
		private static extern RESULT FMOD_Reverb_Get3DAttributes(IntPtr reverb, ref VECTOR position, ref float mindistance, ref float maxdistance);
		public RESULT get3DAttributes(ref VECTOR position, ref VECTOR velocity, ref VECTOR orientation)
		{
			return FMOD_Event_Get3DAttributes(eventraw, ref position, ref velocity, ref orientation);
		}