setPosition abstract method

void setPosition(
  1. num x,
  2. num y,
  3. num z
)

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,
);