AR/getSoundPosition: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(getSoundPosition)
 
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 current seek position of the specified [[sound]] element.
تستخدم هذه الوظيفة لتجلب مكان التقدم لعنصر الصوت المحدد اذا كان العنصر لاعبًا فستستخدم هذه الوظيفة صوت الاعبيين .
{{New_feature|3.0139|1.3.2|
[[sound]]
If the element is a player, this function will use the players voice.
==تركيب الوظيفة==  
}}
==Syntax==  
<syntaxhighlight lang="lua">float getSoundPosition ( element theSound )</syntaxhighlight>  
<syntaxhighlight lang="lua">float getSoundPosition ( element theSound )</syntaxhighlight>  


===Required Arguments===  
===الفرغات المطلوبة===  
*'''theSound:''' The [[sound]] element which seek position you want to return.
*'''الصوت:''' عنصر الصوت الذي تريد ان تجلب منة مكان التقدم الصوت.
 
===المعطيات===
===Returns===
* تعطي قيمة [[float]] يوضح مكان تقدم لعنصر الصوت بلثواني .
Returns a [[float]] value indicating the seek position of the [[sound]] element in seconds.
[[sound]]
 
==مثال==  
==Example==  
تشغيل الصوت ثم معرفة مكان الصوت
Plays a sound then outputs the seek position.
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
local sound = playSound("randomSound.mp3",false) --Play a sound
local sound = playSound("randomSound.mp3",false) --تشغيل الصوت
local soundPosition = getSoundPosition(sound) --Get the current sound position
local soundPosition = getSoundPosition(sound) --الحصول علي مكان تقدم الصوت الحالي
outputChatBox("The current seek position of the sound is: " .. soundPosition .. ".")
outputChatBox("مكان تقدم الصوت الحالي هو: " .. soundPosition .. ".") -- اخراج نص في الدردشة بمكان تقدم الصوت الحالي
</syntaxhighlight>
</syntaxhighlight>


==Changelog==
==التغير==
{{ChangelogHeader}}
{{ChangelogHeader}}
{{ChangelogItem|1.3.2|Added player element to use a players voice}}
{{ChangelogItem|1.3.2|اضافة عنصر الاعب لأستخدام صوت الاعب}}
 
 
 
 
'''By The Killer.'''


==أنظر أيضاً==
==أنظر أيضاً==
{{AR/Audio_functions}}
{{AR/Audio_functions}}
[[hu:getSoundPosition]]
[[EN:getSoundPosition]]
[[RO:getSoundPosition]]
[[pt-br:getSoundPosition]]

Latest revision as of 22:44, 17 August 2021

تستخدم هذه الوظيفة لتجلب مكان التقدم لعنصر الصوت المحدد اذا كان العنصر لاعبًا فستستخدم هذه الوظيفة صوت الاعبيين . sound

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

float getSoundPosition ( element theSound )

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

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

المعطيات

  • تعطي قيمة float يوضح مكان تقدم لعنصر الصوت بلثواني .

sound

مثال

تشغيل الصوت ثم معرفة مكان الصوت

local sound = playSound("randomSound.mp3",false) --تشغيل الصوت
local soundPosition = getSoundPosition(sound) --الحصول علي مكان تقدم الصوت الحالي
outputChatBox("مكان تقدم الصوت الحالي هو: " .. soundPosition .. ".") -- اخراج نص في الدردشة بمكان تقدم الصوت الحالي

التغير

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



By The Killer.

أنظر أيضاً