HU/stopSound: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
__NOTOC__  
__NOTOC__  
{{Client function hu}}
{{Client function hu}}
Megállítja a lejátszását a megadott hangelemnek. The sound element is also destroyed.
Megállítja a lejátszását a megadott hangelemnek. És a hangelemet is megsemmisíti.


==Szintaxis==  
==Szintaxis==  

Revision as of 13:27, 22 July 2018

Megállítja a lejátszását a megadott hangelemnek. És a hangelemet is megsemmisíti.

Szintaxis

bool stopSound ( element theSound )

OOP Syntax Help! I don't understand this!

Method: sound:stop(...)


Kötelező argumentumok

Visszaadott érték

Returns true if the sound was successfully stopped, false otherwise.

Példa

function startMySound()
    sound = playSound( "sound.mp3", true )
end
addEventHandler( "onClientResourceStart", resourceRoot, startMySound )

function stopMySound()
    stopSound( sound )
end
addCommandHandler ( "stopsound", stopMySound ) --using the command 'stopsound' will stop the sound

Lásd még

Fordította

Surge