AR/getSoundSpeed: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "__NOTOC__ {{Client function}} This function is used to return the playback speed of the specified sound element. ==Syntax== <syntaxhighlight lang="lua">float getSoundSpeed ( element theS...")
 
mNo edit summary
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
__NOTOC__  
__NOTOC__  
{{Client function}}
{{Client function}}
This function is used to return the playback speed of the specified [[sound]] element.
تستخدم هذه الوظيفة لمعرفة سرعة تشغيل عنصر الصوت المحدد.
 
[[sound]] [[element]]
==Syntax==  
==تركيب الوظيفة==  
<syntaxhighlight lang="lua">float getSoundSpeed ( element theSound )</syntaxhighlight>  
<syntaxhighlight lang="lua">float getSoundSpeed ( element theSound )</syntaxhighlight>  


===Required Arguments===  
===الفرغات المطلوبة===  
*'''theSound:''' The [[sound]] element which playback speed you want to return.
*'''الصوت:''' عنصر الصوت الذي تريد معرفة سرعتة.
[[sound]] [[element]]
===المعطيات===
تعطي قيمة [[float]] تشير الي سرعة تشغيل عنصر الصوت . سرعة الصوت الافتراضية هي 1.0.
[[sound]]


===Returns===
==مثال==  
Returns an [[float]] value indicating the playback speed of the [[sound]] element. Default sound playback speed is '''1.0'''.
 
==Example==  
<section name="Client" class="client" show="true">
<section name="Client" class="client" show="true">
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
function outputSpeed(soundname)  
function outputSpeed(soundname)  
local sound = playSound("sounds/"..tostring(soundname)..".mp3") --Play the sound from the sounds folder
local sound = playSound("sounds/"..tostring(soundname)..".mp3") -- تشغيل الصوت من ملف الاصوت
setSoundVolume(sound, 0.5) -- set the sound volume to 50%
setSoundVolume(sound, 0.5) -- ضبط مستوى الصوت على 50٪
outputChatBox("The sound speed : "..getSoundSpeed(sound)) -- output the sound speed
outputChatBox("سرعة الصوت : "..getSoundSpeed(sound)) -- اخراج نص في الدردشة بسرعة الصوت
end
end
addCommandHandler("soundspeed",outputSpeed)
addCommandHandler("soundspeed",outputSpeed)
</syntaxhighlight>
</syntaxhighlight>
</section>
</section>
'''By The Killer.'''


==أنظر أيضاً==
==أنظر أيضاً==
{{AR/Audio_functions}}
{{AR/Audio_functions}}
[[hu:getSoundSpeed]]
[[en:getSoundSpeed]]
[[RO:getSoundSpeed]]
[[PT-BR:getSoundSpeed]]

Latest revision as of 23:15, 17 August 2021

تستخدم هذه الوظيفة لمعرفة سرعة تشغيل عنصر الصوت المحدد. sound element

تركيب الوظيفة

float getSoundSpeed ( element theSound )

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

  • الصوت: عنصر الصوت الذي تريد معرفة سرعتة.

sound element

المعطيات

تعطي قيمة float تشير الي سرعة تشغيل عنصر الصوت . سرعة الصوت الافتراضية هي 1.0. sound

مثال

Click to collapse [-]
Client
function outputSpeed(soundname) 
	local sound = playSound("sounds/"..tostring(soundname)..".mp3") -- تشغيل الصوت من ملف الاصوت
	setSoundVolume(sound, 0.5) -- ضبط مستوى الصوت على 50٪
	outputChatBox("سرعة الصوت : "..getSoundSpeed(sound)) -- اخراج نص في الدردشة بسرعة الصوت
end
addCommandHandler("soundspeed",outputSpeed)


By The Killer.

أنظر أيضاً