AR/getSoundEffects: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
 
(7 intermediate revisions by 2 users not shown)
Line 1: Line 1:
__NOTOC__  
__NOTOC__  
{{Client function}}
{{Client function}}
Returns the states of all effects of a sound.
هذه الوظيفة تجلب حالات تأثيرات الصوت في جدول


==Syntax==  
==تركيب الجملة==  
<syntaxhighlight lang="lua">table getSoundEffects ( element sound )</syntaxhighlight>  
<syntaxhighlight lang="lua">table getSoundEffects ( element sound )</syntaxhighlight>  


===Required Arguments===  
===الفرغات المطلوبة===  
*'''sound:''' a [[sound]] element.
*'''الصوت:''' [[sound]] عنصر.


===Returns===
===المعطيات===
Returns a [[table]] with the effect names as the keys, and their states as the values if successful. Otherwise, it returns ''false''.
تنتج جدول فيه اسماء الحالات كمفاتيح للقيم


'''Sound effect names:'''
'''مثال:'''
 
<syntaxhighlight lang="lua">
{
    gargle = false,
    compressor = false,
    echo = true,
    i3dl2reverb = true,
    distortion = false,
    chorus = false,
    parameq = false,
    reverb = false,
    flanger = false
}
</syntaxhighlight>
 
===أسماء تأثيرات الصوت:===
{{Sound_Effects}}
{{Sound_Effects}}


==Example==  
==مثال:==  
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
function switchEffects(sound)
function switchEffects(sound)
for _,v in ipairs(getSoundEffects(sound)) do -- Go through the whole list of sound effects for the sound
for _,v in ipairs(getSoundEffects(sound)) do -- تدور علي كل التأثيرات في الجدول
if v == "gargle" then -- If the sound effect is 'gargle', proceed
if v == "gargle" then -- اذا كان تأثير الصوت 'gargle'
setSoundEffectEnabled(sound, "gargle", false) -- Disable the 'gargle' -effect
setSoundEffectEnabled(sound, "gargle", false) -- تعطيل تأثير 'gargle'
end
end
end
end
Line 28: Line 44:
==أنظر أيضاً==
==أنظر أيضاً==
{{AR/Audio_functions}}
{{AR/Audio_functions}}
[[hu:getSoundEffects]]
[[ru:getSoundEffects]]
[[en:getSoundEffects]]
[[de:getSoundEffects]]
[[RO:getSoundEffects]]
[[PT-BR:getSoundEffects]]

Latest revision as of 18:41, 15 August 2021

هذه الوظيفة تجلب حالات تأثيرات الصوت في جدول

تركيب الجملة

table getSoundEffects ( element sound )

الفرغات المطلوبة

  • الصوت: sound عنصر.

المعطيات

تنتج جدول فيه اسماء الحالات كمفاتيح للقيم

مثال:

{
    gargle = false,
    compressor = false,
    echo = true,
    i3dl2reverb = true,
    distortion = false,
    chorus = false,
    parameq = false,
    reverb = false,
    flanger = false
}

أسماء تأثيرات الصوت:

  • gargle
  • compressor
  • echo
  • i3dl2reverb
  • distortion
  • chorus
  • parameq
  • reverb
  • flanger

مثال:

function switchEffects(sound)
	for _,v in ipairs(getSoundEffects(sound)) do -- تدور علي كل التأثيرات في الجدول
		if v == "gargle" then -- اذا كان تأثير الصوت 'gargle'
			setSoundEffectEnabled(sound, "gargle", false) -- تعطيل تأثير 'gargle'
		end
	end
end

أنظر أيضاً