AR/setBlipColor: Difference between revisions
Jump to navigation
Jump to search
(Created page with "__NOTOC__ {{Server client function}} تقوم الوظيفة بتلوين العلامة. ==Syntax== <syntaxhighlight lang="lua">bool setBlipColor ( blip theBlip, int red, int green, int blue...") |
No edit summary |
||
Line 3: | Line 3: | ||
تقوم الوظيفة بتلوين العلامة. | تقوم الوظيفة بتلوين العلامة. | ||
== | ==تركيب الجملة البرمجية== | ||
<syntaxhighlight lang="lua">bool setBlipColor ( blip theBlip, int red, int green, int blue, int alpha )</syntaxhighlight> | <syntaxhighlight lang="lua">bool setBlipColor ( blip theBlip, int red, int green, int blue, int alpha )</syntaxhighlight> | ||
=== | ===مطلوب=== | ||
*'''theBlip:''' البلب المُراد تلوينه. | *'''theBlip:''' البلب المُراد تلوينه. | ||
*'''red:''' قيمة اللون الأحمر للعلامة ( 0 - 255 ) , لا ينبطق الا على رمز ''الماركر'', والإفتراضي هو 255 | *'''red:''' قيمة اللون الأحمر للعلامة ( 0 - 255 ) , لا ينبطق الا على رمز ''الماركر'', والإفتراضي هو 255 | ||
Line 15: | Line 15: | ||
===Returns=== | ===Returns=== | ||
Returns ''true'' if the blip's color was set successfully. Returns ''false'' if the blip passed to the function is invalid, or any of the colors are out of the valid range. | Returns ''true'' if the blip's color was set successfully. Returns ''false'' if the blip passed to the function is invalid, or any of the colors are out of the valid range. | ||
== | ==مثال== | ||
تعيين اللون الأبيض لكل العلامات الموجود | تعيين اللون الأبيض لكل العلامات الموجود | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
Line 26: | Line 26: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
== | ==انظر ايضاً== | ||
{{AR/Blip_functions}} | {{AR/Blip_functions}} | ||
[[en:setBlipColor]] | [[en:setBlipColor]] |
Latest revision as of 10:13, 3 January 2014
تقوم الوظيفة بتلوين العلامة.
تركيب الجملة البرمجية
bool setBlipColor ( blip theBlip, int red, int green, int blue, int alpha )
مطلوب
- theBlip: البلب المُراد تلوينه.
- red: قيمة اللون الأحمر للعلامة ( 0 - 255 ) , لا ينبطق الا على رمز الماركر, والإفتراضي هو 255
- green: قيمة اللون الأخضر للعلامة ( 0 - 255 ) , لا ينبطق الا على رمز الماركر, والإفتراضي هو 0
- blue: قيمة اللون الأحمر للعلامة ( 0 - 255 ) , لا ينبطق الا على رمز الماركر, والإفتراضي هو 0
- alpha: قيمة شفافية العلامة ( 0 - 255 ) , لا ينبطق الا على رمز الماركر, والإفتراضي هو 255
Returns
Returns true if the blip's color was set successfully. Returns false if the blip passed to the function is invalid, or any of the colors are out of the valid range.
مثال
تعيين اللون الأبيض لكل العلامات الموجود
for blipKey, blipValue in ipairs( getElementsByType ( "blip" ) ) do -- نعمل لوب لجميع العلامات red, green, blue, alpha = getBlipColor ( blipValue ); -- جلب اللون الأحمر والأخضر والأزرق والشفافية من وظيفة getBlipColor if ( red ~= 255 or green ~= 255 or blue ~= 255 or alpha ~= 255 ) then -- نتحقق إن القيم لا تساوي 255 setBlipColor ( blipValue, 255, 255, 255, 255 ); -- نجعل جميع البلبات لونهم أبيض end -- إغلاق if end -- إغلاق loop