HU/setBlipSize: Difference between revisions
Jump to navigation
Jump to search
(→Példa) |
|||
Line 14: | Line 14: | ||
==Példa== | ==Példa== | ||
Ez a példa visszaállítja az összes blip méretét az alapértelmezett értékre. | |||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
-- Retrieve a table containing all the blips that exist | -- Retrieve a table containing all the blips that exist |
Revision as of 20:08, 24 July 2018
Ez a funkció beállítja egy blip ikon méretét.
Szintaxis
bool setBlipSize ( blip theBlip, int iconSize )
OOP Syntax Help! I don't understand this!
- Method: blip:setSize(...)
- Variable: .size
- Counterpart: getBlipSize
Kötelező argumentumok
- theBlip: A blip, melynek a méretét meg szeretnéd kapni.
- iconSize: A méret, amire szeretné, hogy az icon legyen. 2 az alapértelmezett érték. 25 a maximális érték.
Visszaadott érték
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.
Példa
Ez a példa visszaállítja az összes blip méretét az alapértelmezett értékre.
-- Retrieve a table containing all the blips that exist blips = getElementsByType ( "blip" ) -- Loop through the list for blipKey, blipValue in ipairs(blips) do -- Retrieve the blip's size into the variable 'blipSize' blipSize = getBlipSize ( blipValue ) -- If the blip's size wasn't 2 (the default size) already if ( blipSize ~= 2 ) then -- Set the size to the default setBlipSize ( blipValue, 2 ) end end