AR/getSoundLength: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
 
(4 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 length of the specified [[sound]] element.
تُستخدم هذه الوظيفة لجلب طول تشغيل عنصر الصوت المحدد. إذا كان العنصر لاعبًا , فستستخدم هذه الوظيفة صوت الاعبيين
 
[[sound]]
{{New_feature|3.0139|1.3.2|
==تركيب الوظيفة==  
اذا الالمنت لاعب, هذه الوظيفة ستستخدم صوت اللاعب
}}
==Syntax==  
<syntaxhighlight lang="lua">float getSoundLength ( element theSound )</syntaxhighlight>  
<syntaxhighlight lang="lua">float getSoundLength ( element theSound )</syntaxhighlight>  


===Required Arguments===  
===الفرغات المطلوبة===  
*'''theSound:''' The [[sound]] element which length you want to return.
*'''الصوت:''' عنصر الصوت الذي تريد جلب طولة.
[[sound]]
===المعطيات===
إرجاع قيمة [[float]] تشير إلى طول تشغيل العنصر [[sound]] بالثواني.


===Returns===
==مثال==  
Returns an [[float]] value indicating the playback length of the [[sound]] element in seconds.
تشغيل الصوت وثم اخراج نص في الدردشة بطول الصوت.
 
==Example==  
Plays a sound then outputs the sound length.
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
local sound = playSound("money.mp3",false) --Play a sound
local sound = playSound("money.mp3",false) --تشغيل الصوت
local soundLength = getSoundLength(sound) --Get the length of the sound
local soundLength = getSoundLength(sound) --جلب طول الصوت
outputChatBox("This sound is :" ..soundLength.. " long!")
outputChatBox("طول هذا الصوت :" ..soundLength.. "ثانية!") -- اخراج نص في الدردشة بطول الصوت
</syntaxhighlight>
</syntaxhighlight>


==التغيير:==
==التغيير:==
{{ChangelogHeader}}
{{AR/ChangelogHeader}}
{{ChangelogItem|1.3.2|تمت اضافة المنت اللاعب لاستخدام صوت اللاعب}}
{{ChangelogItem|1.3.2|تمت اضافة عنصر الاعب لاستخدام صوت الاعب}}
 
==أنظر أيضاً==
==أنظر أيضاً==
{{AR/Audio_functions}}
{{AR/Audio_functions}}
[[hu:getSoundLength]]
[[en:getSoundLength]]
[[ro:getSoundLength]]
[[pt-br:getSoundLength]]

Latest revision as of 19:29, 15 August 2021

تُستخدم هذه الوظيفة لجلب طول تشغيل عنصر الصوت المحدد. إذا كان العنصر لاعبًا , فستستخدم هذه الوظيفة صوت الاعبيين sound

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

float getSoundLength ( element theSound )

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

  • الصوت: عنصر الصوت الذي تريد جلب طولة.

sound

المعطيات

إرجاع قيمة float تشير إلى طول تشغيل العنصر sound بالثواني.

مثال

تشغيل الصوت وثم اخراج نص في الدردشة بطول الصوت.

local sound = playSound("money.mp3",false) --تشغيل الصوت
local soundLength = getSoundLength(sound) --جلب طول الصوت
outputChatBox("طول هذا الصوت :" ..soundLength.. "ثانية!") -- اخراج نص في الدردشة بطول الصوت

التغيير:

الاصدار الوصف
1.3.2 تمت اضافة عنصر الاعب لاستخدام صوت الاعب

أنظر أيضاً