setPosition abstract method
The setPosition()
method of the AudioListener defines the
position of the listener.
The three parameters x
, y
and z
are unitless and describe the
listener's position in 3D space according to the right-hand Cartesian
coordinate system. PannerNode objects use this position relative to
individual audio sources for spatialization.
The default value of the position vector is (0, 0, 0)
.
Note: As this method is deprecated, use the three AudioListener.positionX, AudioListener.positionY, and AudioListener.positionZ properties instead.
Implementation
void setPosition(
num x,
num y,
num z,
);