AR/setBlipSize: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "__NOTOC__ {{Server client function}} تقوم الوظيفة بتغيير حجم الرمز. ==Syntax== <syntaxhighlight lang="lua">bool setBlipSize ( blip theBlip, int iconSize )</syntaxhighlight> ==...")
 
No edit summary
 
Line 3: Line 3:
تقوم الوظيفة بتغيير حجم الرمز.
تقوم الوظيفة بتغيير حجم الرمز.


==Syntax==  
==تركيب الجملة البرمجية==  
<syntaxhighlight lang="lua">bool setBlipSize ( blip theBlip, int iconSize )</syntaxhighlight>  
<syntaxhighlight lang="lua">bool setBlipSize ( blip theBlip, int iconSize )</syntaxhighlight>  


===Required Arguments===  
===مطلوب===  
*'''theBlip:''' العلامة المُراد تغييرها.
*'''theBlip:''' العلامة المُراد تغييرها.
*'''iconSize:''' حجم الرمز , الحجم الإفتراضي هو 2.
*'''iconSize:''' حجم الرمز , الحجم الإفتراضي هو 2.
Line 13: Line 13:
Returns an ''true'' if the blip's size was set successfully. Returns ''false'' if the [[element]] passed was not a [[blip]] or if the icon size passed was invalid.
Returns an ''true'' if the blip's size was set successfully. Returns ''false'' if the [[element]] passed was not a [[blip]] or if the icon size passed was invalid.


==Example==  
==مثال==  
جلب جميع العلامات ووضع حجمهم 2
جلب جميع العلامات ووضع حجمهم 2
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
Line 24: Line 24:
</syntaxhighlight>
</syntaxhighlight>


==See Also==
==انظر ايضاً==
{{AR/Blip_functions}}
{{AR/Blip_functions}}


[[en:setBlipSize]]
[[en:setBlipSize]]

Latest revision as of 10:14, 3 January 2014

تقوم الوظيفة بتغيير حجم الرمز.

تركيب الجملة البرمجية

bool setBlipSize ( blip theBlip, int iconSize )

مطلوب

  • theBlip: العلامة المُراد تغييرها.
  • iconSize: حجم الرمز , الحجم الإفتراضي هو 2.

Returns

Returns an true if the blip's size was set successfully. Returns false if the element passed was not a blip or if the icon size passed was invalid.

مثال

جلب جميع العلامات ووضع حجمهم 2

for blipKey, blipValue in ipairs ( getElementsByType ( "blip" ) ) do -- نجلب جميع العلامات
	blipSize = getBlipSize ( blipValue ); -- جلب حجم العلامة عن طريق 'getBlipSize'
	if ( blipSize ~= 2 ) then -- نتحقق أن حجم العلامة لا تساوي القيمة الإفتراضية '2'
		setBlipSize ( blipValue, 2 ); -- نجعل البلب حجمه '2'
	end -- إغلاق if
end -- إغلاق loop

انظر ايضاً