HU/getBlipSize: Difference between revisions
Jump to navigation
Jump to search
(Created page with "{{Server client function}} __NOTOC__ This function gets the size of a blip. ==Syntax== <syntaxhighlight lang="lua">int getBlipSize ( blip theBlip )</syntaxhighlight> {{OOP|...") |
|||
(7 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
{{ | {{Shared function hu}} | ||
__NOTOC__ | __NOTOC__ | ||
== | Ez a funkció megkapja a blip méretét. | ||
==Szintaxis== | |||
<syntaxhighlight lang="lua">int getBlipSize ( blip theBlip )</syntaxhighlight> | <syntaxhighlight lang="lua">int getBlipSize ( blip theBlip )</syntaxhighlight> | ||
{{OOP||[[blip]]:getSize|size|setBlipSize}} | {{OOP||[[blip]]:getSize|size|setBlipSize}} | ||
=== | ===Kötelező argumentumok=== | ||
*'''theBlip:''' | *'''theBlip:''' A blip, melynek méretét meg akarja kapni. | ||
=== | ===Visszaadott érték=== | ||
Visszaad egy [[int]] értéket, mely jelzi a blip méretét. Alapértelmezett érték a 2. A maximális érték a 25. | |||
== | ==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 | ||
Line 30: | Line 31: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
== | ==Lásd még== | ||
{{Blip_functions}} | {{Blip_functions hu}} | ||
[[en:getBlipSize]] | [[en:getBlipSize]] | ||
==Fordította== | |||
* '''''[https://wiki.multitheftauto.com/wiki/User:Surge Surge]''''' |
Latest revision as of 13:01, 21 August 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
Visszaad egy int értéket, mely jelzi a blip méretét. Alapértelmezett érték a 2. A maximális érték a 25.
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, 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
- HU/createBlip
- HU/createBlipAttachedTo
- HU/getBlipColor
- HU/getBlipIcon
- HU/getBlipOrdering
- HU/getBlipSize
- HU/getBlipVisibleDistance
- HU/setBlipColor
- HU/setBlipIcon
- HU/setBlipOrdering
- HU/setBlipSize
- HU/setBlipVisibleDistance