SetSoundLooped

From Multi Theft Auto: Wiki
Revision as of 01:53, 19 August 2021 by Alvesvin (talk | contribs)
Jump to navigation Jump to search

This function is used to change the loop option of the sound element.

[[{{{image}}}|link=|]] Note: If the sound element is destroyed by destroyElement the loop will not happen.

Syntax

bool setSoundLooped ( element theSound, bool loop )

OOP Syntax Help! I don't understand this!

Method: sound:setLooped(...)
Counterpart: isSoundLooped


Required Arguments

  • theSound: The sound element to set the loop.
  • bool: A boolean representing whether the sound will be looped.

Returns

Returns true if the sound element loop was successfully changed, false otherwise.

Example

This example creates a sound element and turn on its looping

Click to collapse [-]
Client
local mySound = playSound('sound.mp3')
setSoundLooped(mySound, true)

See Also