Tao.OpenAl SDK Documentation

Al.alSource3f Method 

Sets a source property requiring three floating point values.

[Visual Basic]
Public Shared Sub alSource3f( _
   ByVal source As Integer, _
   ByVal attribute As Integer, _
   ByVal value1 As Single, _
   ByVal value2 As Single, _
   ByVal value3 As Single _
)
[C#]
public static void alSource3f(
   int source,
   int attribute,
   float value1,
   float value2,
   float value3
);

Parameters

source
Source name whose attribute is being set.
attribute

The name of the attribute to set:

value1
The float values which the attribute will be set to.
value2
The float values which the attribute will be set to.
value3
The float values which the attribute will be set to.

Remarks

This function is an alternative to alSourcefv.

See Also

Al Class | Tao.OpenAl Namespace