AR/setBlipSize

From Multi Theft Auto: Wiki
Revision as of 07:32, 3 January 2014 by Jafar (talk | contribs) (Created page with "__NOTOC__ {{Server client function}} تقوم الوظيفة بتغيير حجم الرمز. ==Syntax== <syntaxhighlight lang="lua">bool setBlipSize ( blip theBlip, int iconSize )</syntaxhighlight> ==...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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

Syntax

bool setBlipSize ( blip theBlip, int iconSize )

Required Arguments

  • 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.

Example

جلب جميع العلامات ووضع حجمهم 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

See Also