AR/getSoundMaxDistance: Difference between revisions
Jump to navigation
Jump to search
The-Killer (talk | contribs) |
No edit summary |
||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
{{Client function}} | {{Client function}} | ||
هذه الوظيفة تقوم بإحضار المسافه القصوى لتوقف الصوت. | |||
==Syntax== | ==Syntax== | ||
Line 7: | Line 7: | ||
===Required Arguments=== | ===Required Arguments=== | ||
*'''sound:''' | *'''sound:''' متغير الصوت. | ||
===Returns=== | ===Returns=== | ||
Line 13: | Line 13: | ||
==Example== | ==Example== | ||
هذا المثال يقوم بإحضار المسافه القصوى للصوت في الشات عند كتابة هذا الامر /getmaxdistance | |||
<section name="Client" class="client" show="true"> | <section name="Client" class="client" show="true"> | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
local sound = playSound3D("sounds/song.mp3", 373.14, -125.21, 1001, true) | local sound = playSound3D("sounds/song.mp3", 373.14, -125.21, 1001, true) -- تشغيل صوت في مكان معين | ||
function getmaxdistanceFunc() | function getmaxdistanceFunc() -- إنشاء الوظيفه | ||
outputChatBox("Max distance: "..getSoundMaxDistance(sound)) | outputChatBox("Max distance: "..getSoundMaxDistance(sound)) -- إخراج المسافة القوصى للصوت في الشات | ||
end | end -- إغلاق للوظيفه | ||
addCommandHandler("getmaxdistance", getmaxdistanceFunc) | addCommandHandler("getmaxdistance", getmaxdistanceFunc) -- إضافة آمر معالج للوظيفة | ||
</syntaxhighlight> | </syntaxhighlight> | ||
</section> | </section> |
Revision as of 00:15, 4 July 2015
هذه الوظيفة تقوم بإحضار المسافه القصوى لتوقف الصوت.
Syntax
int getSoundMaxDistance ( element sound )
Required Arguments
- sound: متغير الصوت.
Returns
Returns an integer of the max distance, false if invalid arguments where passed.
Example
هذا المثال يقوم بإحضار المسافه القصوى للصوت في الشات عند كتابة هذا الامر /getmaxdistance
Click to collapse [-]
Clientlocal sound = playSound3D("sounds/song.mp3", 373.14, -125.21, 1001, true) -- تشغيل صوت في مكان معين function getmaxdistanceFunc() -- إنشاء الوظيفه outputChatBox("Max distance: "..getSoundMaxDistance(sound)) -- إخراج المسافة القوصى للصوت في الشات end -- إغلاق للوظيفه addCommandHandler("getmaxdistance", getmaxdistanceFunc) -- إضافة آمر معالج للوظيفة
أنظر أيضاً
- getSoundBufferLength
- getSoundEffects
- getSoundFFTData
- getSoundLength
- getSoundLevelData
- getSoundMaxDistance