AR/isSoundPaused: Difference between revisions
Jump to navigation
Jump to search
(isSoundPaused) |
KING-ABADY (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
{{Client function}} | {{Client function}} | ||
. موقوف مؤقتاً او لآ [[sound]] تستخدم هاذه الدالة للتأكد اذا كان العنصر | |||
{{New_feature|3.0139|1.3.2| | {{New_feature|3.0139|1.3.2| | ||
. اذا كان العنصر لآعب, فتكون الدالة لصوت اللآعب | |||
}} | }} | ||
==Syntax== | ==Syntax== | ||
<syntaxhighlight lang="lua">bool isSoundPaused ( element theSound )</syntaxhighlight> | <syntaxhighlight lang="lua">bool isSoundPaused ( element theSound )</syntaxhighlight> | ||
=== | ===العناصر المطلوبة=== | ||
*'''theSound:''' | *'''theSound:''' .الذي تريد التأكد منه [[sound]] العنصر | ||
===Returns=== | ===Returns=== | ||
Returns ''true'' | Returns ''true'' متوقف مؤقتاً [[sound]] اذا كان العنصر, ''false'' اذا لم يكن موقف مؤقتاً او كان عنصر خطأ. | ||
== | ==مثال== | ||
هاذه المثال للتأكد اذا كان الصوت متوقف مؤقتاً او لآ | |||
<section name="Client" class="client" show="true"> | <section name="Client" class="client" show="true"> | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
theSound = playSound("music/song.mp3") | theSound = playSound("music/song.mp3") -- تشغيل صوت | ||
function checkSongPause() | function checkSongPause() -- وضيفة | ||
if(pause == isSoundPaused(theSound)) then -- اذا كان الصوت متوقف مؤقتاً | |||
outputChatBox("the sound i paused!") -- اخراج كلآم في الشات | |||
outputChatBox(" | else -- اذا لم يكن متوقف مؤقتاً | ||
else | outputChatBox("The sound is not paused!") -- اخراج كلآم في الشات | ||
outputChatBox("The sound is not paused!") | end -- اغلاق الشرط | ||
end | end -- اغلآق الوضيفة | ||
end | addCommandHandler("checkpause", checkSongPause) -- اضافة امر التأكد | ||
addCommandHandler("checkpause", checkSongPause) | |||
</syntaxhighlight> | </syntaxhighlight> | ||
</section> | </section> | ||
== | ==التحديث== | ||
{{ChangelogHeader}} | {{ChangelogHeader}} | ||
{{ChangelogItem|1.3.2| | {{ChangelogItem|1.3.2|امكانية التأكد من صوت اللآعب}} | ||
==أنظر أيضاً== | ==أنظر أيضاً== | ||
{{AR/Audio_functions}} | {{AR/Audio_functions}} |
Revision as of 20:43, 8 May 2013
. موقوف مؤقتاً او لآ sound تستخدم هاذه الدالة للتأكد اذا كان العنصر
. اذا كان العنصر لآعب, فتكون الدالة لصوت اللآعب
Syntax
bool isSoundPaused ( element theSound )
العناصر المطلوبة
- theSound: .الذي تريد التأكد منه sound العنصر
Returns
Returns true متوقف مؤقتاً sound اذا كان العنصر, false اذا لم يكن موقف مؤقتاً او كان عنصر خطأ.
مثال
هاذه المثال للتأكد اذا كان الصوت متوقف مؤقتاً او لآ
Click to collapse [-]
ClienttheSound = playSound("music/song.mp3") -- تشغيل صوت function checkSongPause() -- وضيفة if(pause == isSoundPaused(theSound)) then -- اذا كان الصوت متوقف مؤقتاً outputChatBox("the sound i paused!") -- اخراج كلآم في الشات else -- اذا لم يكن متوقف مؤقتاً outputChatBox("The sound is not paused!") -- اخراج كلآم في الشات end -- اغلاق الشرط end -- اغلآق الوضيفة addCommandHandler("checkpause", checkSongPause) -- اضافة امر التأكد
التحديث
Version | Description |
---|
1.3.2 | امكانية التأكد من صوت اللآعب |
أنظر أيضاً
- getSoundBufferLength
- getSoundEffects
- getSoundFFTData
- getSoundLength
- getSoundLevelData
- getSoundMaxDistance