ludum-dare-21/scripts/sound_play/sound_play.gml

11 lines
256 B
Plaintext

function sound_play(argument0) {
// ------------------------------------------------------------
/// @description Plays the indicated sound once.
/// @param index The index of the sound to play
audio_play_sound( argument0, 10, false );
}