GetSoundEffectParameters

From Multi Theft Auto: Wiki
Revision as of 14:02, 7 August 2021 by StrixG (talk | contribs)
Jump to navigation Jump to search

This function gets parameters of a sound effect.

Syntax

table getSoundEffectParameters( element sound, string effectName )

Required Arguments

  • sound: the sound element.
  • effectName: the effect name.

Returns

Returns a table with the parameter names as the keys, and their values. If the specified effect name is not valid, an error is raised.

Parameters

Requirements

This template will be deleted.

Example

Click to collapse [-]
Client
local soundEchoParams = getSoundEffectParameters(sound, "echo")

See Also