audio_sound_get_listener_mask


描述

This function will return the bit-mask data that defines which audio listeners a sound should be played from.


语法:

audio_sound_get_listener_mask(soundID);


参数 描述
soundID The unique ID of the sound to get the mask of


返回:

Real(实数)


例如:

var snd = audio_play_sound(snd_PlayerDead, 10, false);
if audio_sound_get_listener_mask(snd) != global.PlayerMask
   {
   audio_sound_set_listener_mask(snd, global.PlayerMask);
   }

The above code plays a sound then checks the listener mask data for the sound, and if it's not the same as that which is stored in a global variable, it sets the listener(s) to play from using the mask data stored in the global variable.