HU/stopSound: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
Line 7: Line 7:
{{OOP||[[sound]]:stop}}
{{OOP||[[sound]]:stop}}
===Kötelező argumentumok===  
===Kötelező argumentumok===  
*'''theSound:''' the [[sound]] [[element]] you want to stop playing.
*'''theSound:''' a [[sound|hang]][[element|elem]], amelyet leszeretne állítani.


===Visszaadott érték===
===Visszaadott érték===

Revision as of 13:31, 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

  • theSound: a hangelem, amelyet leszeretne állítani.

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