Código: Selecionar todos
if keyboard_check_released(ord('L')){
var file = get_open_filename("musica|*.mp3;","")
if file != ""
audio_play_sound(file,0,0);
}
Obrigado por visitar a The Game Makers Brasil Use o fórum de Dúvidas para fazer perguntas. Se está em busca de aprender dê uma olhada nos tutoriais. |
Código: Selecionar todos
if keyboard_check_released(ord('L')){
var file = get_open_filename("musica|*.mp3;","")
if file != ""
audio_play_sound(file,0,0);
}
Código: Selecionar todos
snd = audio_create_stream(file);
audio_sound_play(snd, 0, true);
//Em algum lugar, no final, vc tem q destruir
audio_destroy_stream(snd);
Código: Selecionar todos
if keyboard_check_released(ord('L')){
var file = get_open_filename("musica|*.mp3;","")
if file != ""
snd = audio_create_stream(file);
audio_sound_play(snd, 0, true);
}
Código: Selecionar todos
if keyboard_check_released(ord('L'))
{
var file = get_open_filename("OGG|*.ogg;","")
if file != ""
{
var snd = audio_create_stream(file);
audio_play_sound(snd, 0, true);
}
}
Usuários navegando neste fórum: Nenhum usuário registrado e 0 visitante