audio_listener_position


描述

With this function you can change the position of the listener within the 3D audio space. The example image below shows the default position for the listener in the audio space:

NOTE: if you have multiple listeners you should use the function audio_listener_set_position.

As you can see, the default position is (0, 0, 0) but you would normally use this function to move the listener around with the player object within your game and so change the way audio created by emitters is heard by the player, for example, in the image below of a top down game, the player instance sets the listener which will cause the audio from the various emitters to "change" as the player moves around the level:


语法:

audio_listener_position(x, y, z);


参数 描述
x The x position of the listener (default 0).
y The y position of the listener (default 0).
z The z position of the listener (default 0).


返回:

N/A(无返回值)


例如:

if speed > 0
   {
   audio_listener_position(x, y, 0);
   }

The above code checks to see if the player instance speed is over 0 and if it is it updates the audio listener to the current x/y position.