HU/setSoundProperties: Difference between revisions
Jump to navigation
Jump to search
(Created page with "__NOTOC__ {{Client function hu}} {{New feature/item|3.0130|1.3.0|4097| This function edit's the properties of a specific sound. }} ==Syntax== <syntaxhighlight lang="lua...") |
|||
(8 intermediate revisions by the same user not shown) | |||
Line 2: | Line 2: | ||
{{Client function hu}} | {{Client function hu}} | ||
{{New feature/item|3.0130|1.3.0|4097| | {{New feature/item|3.0130|1.3.0|4097| | ||
Ez a funkció módosítja egy adott [[sound|hang]] tulajdonságait. | |||
}} | }} | ||
== | ==Szintaxis== | ||
<syntaxhighlight lang="lua">bool setSoundProperties(element sound, float fSampleRate, float fTempo, float fPitch, bool bReverse )</syntaxhighlight> | <syntaxhighlight lang="lua">bool setSoundProperties(element sound, float fSampleRate, float fTempo, float fPitch, bool bReverse )</syntaxhighlight> | ||
{{OOP||[[sound]]:setProperties||getSoundProperties}} | {{OOP||[[sound]]:setProperties||getSoundProperties}} | ||
=== | ===Kötelező argumentumok=== | ||
*'''sound:''' | *'''sound:''' egy [[sound|hang]][[element|elem]], amelyet a [[playSound]] vagy a [[playSound3D]] segítségével hozták létre | ||
*'''fSampleRate:''' a [[float]] | *'''fSampleRate:''' a [[float]] meghatározza az új hang [http://en.wikipedia.org/wiki/Sampling_rate hangminta arányát] | ||
*'''fTempo:''' a [[float]] | *'''fTempo:''' a [[float]] meghatározza az új hang [http://en.wikipedia.org/wiki/Tempo tempóját] | ||
*'''fPitch:''' a [[float]] | *'''fPitch:''' a [[float]] meghatározza az új hang [http://en.wikipedia.org/wiki/Pitch_%28music%29 hangmagasságát] | ||
*'''bReverse:''' a [[boolean]] | *'''bReverse:''' a [[boolean]] meghatározza, hogy a hang meg fog-e fordulni, vagy sem | ||
=== | ===Visszaadott érték=== | ||
Visszaad egy ''true'' értéket, ha a tulajdonságok sikeresen be lettek állítva, egyébként ''false''. | |||
== | ==Példa== | ||
<section name="Client" class="client" show="true"> | <section name="Client" class="client" show="true"> | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
Line 33: | Line 33: | ||
</section> | </section> | ||
== | ==Lásd még== | ||
{{Client_audio_functions hu}} | {{Client_audio_functions hu}} | ||
[[en:setSoundProperties]] | [[en:setSoundProperties]] | ||
[[ar:setSoundProperties]] | [[ar:setSoundProperties]] | ||
==Fordította== | |||
* '''''[https://wiki.multitheftauto.com/wiki/User:Surge Surge]''''' |
Latest revision as of 20:42, 16 August 2018
Ez a funkció módosítja egy adott hang tulajdonságait.
Szintaxis
bool setSoundProperties(element sound, float fSampleRate, float fTempo, float fPitch, bool bReverse )
OOP Syntax Help! I don't understand this!
- Method: sound:setProperties(...)
- Counterpart: getSoundProperties
Kötelező argumentumok
- sound: egy hangelem, amelyet a playSound vagy a playSound3D segítségével hozták létre
- fSampleRate: a float meghatározza az új hang hangminta arányát
- fPitch: a float meghatározza az új hang hangmagasságát
- bReverse: a boolean meghatározza, hogy a hang meg fog-e fordulni, vagy sem
Visszaadott érték
Visszaad egy true értéket, ha a tulajdonságok sikeresen be lettek állítva, egyébként false.
Példa
Click to collapse [-]
Clientfunction editSongSound() local sound = playSound("song.wav", false) -- Play the file 'song.wav' and make it play only once setSoundProperties(sound, 48000.0, 128.00, 440.0, false) -- Set its samplerate to 48,000 Hz, tempo to 128.00, pitch to 440 Hz and not reversed end addEventHandler("onClientResourceStart", resourceRoot, editSongSound) -- Execute the function when the resource is started
Lásd még
- HU/getRadioChannel
- HU/getRadioChannelName
- HU/getSFXStatus
- HU/getSoundBPM
- HU/getSoundEffects
- HU/getSoundFFTData
- HU/getSoundLength
- HU/getSoundLevelData
- HU/getSoundMaxDistance
- HU/getSoundMetaTags
- HU/getSoundMinDistance
- HU/getSoundPan
- HU/getSoundPosition
- HU/getSoundProperties
- HU/getSoundSpeed
- HU/getSoundVolume
- HU/getSoundWaveData
- HU/isSoundPanningEnabled
- HU/isSoundPaused
- HU/playSFX
- HU/playSFX3D
- HU/playSound
- HU/playSound3D
- HU/playSoundFrontEnd
- HU/setRadioChannel
- HU/setSoundEffectEnabled
- HU/setSoundMaxDistance
- HU/setSoundMinDistance
- HU/setSoundPan
- HU/setSoundPanningEnabled
- HU/setSoundPaused
- HU/setSoundPosition
- HU/setSoundProperties
- HU/setSoundSpeed
- HU/setSoundVolume
- HU/stopSound