HU/setSoundPan

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Ez a funkció a meghatározott hangelem panszintjének módosítására szolgál.

Szintaxis

bool setSoundPan ( element theSound, float pan )

OOP Syntax Help! I don't understand this!

Method: sound:setPan(...)
Variable: .pan
Counterpart: getSoundPan


Kötelező argumentumok

  • theSound: A hanghangelem, amelyiket szeretné módosítani.
  • pan: Egy lebegőpontos szám, mely a kívánt pan szintet jelzi. A tartomány -1.0 (bal)től 1.0 (jobb)-ig terjed.

Visszaadott érték

Visszaad egy true értéket, ha a hangelem pan szintje sikeresen meg lett változtatva, egyébként false.

Példa

Click to collapse [-]
Client
function playMusic ()
        local left = playSFX("genrl", 75, 6, true)    -- Play loading theme music
        local right = playSFX("genrl", 75, 7, true)
        setSoundPan(left, -1)                         -- switch the first music to left channel
        setSoundPan(right, 1)                         -- switch the second music to right channel
end

addCommandHandler("music", playMusic)                 -- add the command handler

Lásd még

Fordította