PT-BR/isSoundLooped: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 35: Line 35:


==Veja também==
==Veja também==
{{Client_audio_functions}}
{{PT-BR/Funcoes_audio_client}}


[[EN:isSoundLooped]]
[[EN:isSoundLooped]]

Revision as of 00:05, 18 August 2021

Template:BR/Funcao cliente Essa função é usada para retornar se um elemento de áudio está habilitado para repetir.

Sintaxe

bool isSoundLooped(element audio)

Sintaxe POO(OOP) Não entendeu o que significa isso?

Método: audio:isLooped(...)
Oposto: setSoundLooped

Argumentos necessários

  • audio: O elemento de áudio ao qual você deseja saber se está habilitado para repetir.

Retorno

Retorna true caso o elemento de áudio estiver habilitado para repetir, do contrário retorna false.

Exemplo

local audio = playSound("audio.mp3", true)

addCommandHandler("alternar", function()
    if not isElement(audio) then
        return outputChatBox("Não foi possível carregar o áudio")
    end

    local podeRepetir = not isSoundLooped(audio)
    setSoundLooped(audio, podeRepetir)

    if podeRepetir then
        outputChatBox("O áudio vai repetir...")
    else
        outputChatBox("O áudio não vai mais repetir...")
    end
end)

Veja também