HU/getBlipSize: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 9: | Line 9: | ||
===Kötelező argumentumok=== | ===Kötelező argumentumok=== | ||
*'''theBlip:''' | *'''theBlip:''' A blip, melynek méretét meg akarja kapni. | ||
===Visszaadott érték=== | ===Visszaadott érték=== |
Revision as of 19:50, 23 July 2018
Ez a funkció megkapja a blip méretét.
Szintaxis
int getBlipSize ( blip theBlip )
OOP Syntax Help! I don't understand this!
- Method: blip:getSize(...)
- Variable: .size
- Counterpart: setBlipSize
Kötelező argumentumok
- theBlip: A blip, melynek méretét meg akarja kapni.
Visszaadott érték
Returns an int indicating the size of the blip. The default value is 2. The maximum value is 25.
Példa
This example will reset the size of all blips to the default.
-- Retrieve a table containing all the blips that exist blips = getElementsByType ( "blip" ) -- Loop through the list, storing the blip from the table in the variable blipValue 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 blip's size to the default setBlipSize ( blipValue, 2 ) end end
Lásd még
- createBlip
- createBlipAttachedTo
- getBlipColor
- getBlipIcon
- getBlipOrdering
- getBlipSize
- getBlipVisibleDistance
- setBlipColor
- setBlipIcon
- setBlipOrdering
- setBlipSize
- setBlipVisibleDistance
Fordította
- Surge