AR/getSoundMaxDistance: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 20: | Line 20: | ||
function getmaxdistanceFunc() -- إنشاء الوظيفه | function getmaxdistanceFunc() -- إنشاء الوظيفه | ||
outputChatBox(" | outputChatBox("مسافة الحد الاقصي: "..getSoundMaxDistance(sound)) -- إخراج المسافة القوصى للصوت في الشات | ||
end -- إغلاق للوظيفه | end -- إغلاق للوظيفه | ||
addCommandHandler("getmaxdistance", getmaxdistanceFunc) -- إضافة آمر معالج للوظيفة | addCommandHandler("getmaxdistance", getmaxdistanceFunc) -- إضافة آمر معالج للوظيفة |
Revision as of 08:46, 10 May 2020
هذه الوظيفة تقوم بإحضار المسافه القصوى لتوقف الصوت.
تركيب الوظيفة
int getSoundMaxDistance ( element sound )
الفرغات المطلوبة
- الصوت: متغير الصوت.
المعطيات
- تعطي عدد صحيح لمسافة القصوي
- تعطي false اذا لم تنجح
مثال
هذا المثال يقوم بإحضار المسافه القصوى للصوت في الشات عند كتابة هذا الامر /getmaxdistance
Click to collapse [-]
Clientlocal sound = playSound3D("sounds/song.mp3", 373.14, -125.21, 1001, true) -- تشغيل صوت في مكان معين function getmaxdistanceFunc() -- إنشاء الوظيفه outputChatBox("مسافة الحد الاقصي: "..getSoundMaxDistance(sound)) -- إخراج المسافة القوصى للصوت في الشات end -- إغلاق للوظيفه addCommandHandler("getmaxdistance", getmaxdistanceFunc) -- إضافة آمر معالج للوظيفة
أنظر أيضاً
- getSoundBufferLength
- getSoundEffects
- getSoundFFTData
- getSoundLength
- getSoundLevelData
- getSoundMaxDistance