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...")
 
No edit summary
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]].


==Syntax==  
==Syntax==  
Line 7: Line 7:


===Required Arguments===  
===Required Arguments===  
*'''theSound:''' The [[sound]] element which playback speed you want to return.
*'''theSound:''' اسم الصوت الذي تريد معرفة سرعته.


===Returns===
===Returns===
Returns an [[float]] value indicating the playback speed of the [[sound]] element. Default sound playback speed is '''1.0'''.
القيمه [[float]] مما يدل على سرعة الصوت [[sound]]. السرعه الاسااسيه للصوت هي '''1.0'''.


==Example==  
==Example==  
Line 16: Line 16:
<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("The sound speed : "..getSoundSpeed(sound)) -- كتابة سرعة الصوت في الشات
end
end
addCommandHandler("soundspeed",outputSpeed)
addCommandHandler("soundspeed",outputSpeed)
</syntaxhighlight>
</syntaxhighlight>
</section>
</section>
'''By The Killer.'''


==أنظر أيضاً==
==أنظر أيضاً==
{{AR/Audio_functions}}
{{AR/Audio_functions}}

Revision as of 18:15, 3 January 2014

يتم استخدام هذه الداله لمعرفة سرعه الصوت sound.

Syntax

float getSoundSpeed ( element theSound )

Required Arguments

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

Returns

القيمه float مما يدل على سرعة الصوت sound. السرعه الاسااسيه للصوت هي 1.0.

Example

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


By The Killer.

أنظر أيضاً