GetBlipOrdering: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
{{Server client function}} | {{Server client function}} | ||
This function gets the Z ordering value of a blip. The Z ordering determines if a blip appears on top of or below other blips. Blips with a higher Z ordering value appear on top of blips with a lower value. The default value for all blips is 0. | |||
==Szintaxis== | ==Szintaxis== | ||
Line 26: | Line 26: | ||
[[hu:getBlipOrdering]] | [[hu:getBlipOrdering]] | ||
Revision as of 19:36, 23 July 2018
This function gets the Z ordering value of a blip. The Z ordering determines if a blip appears on top of or below other blips. Blips with a higher Z ordering value appear on top of blips with a lower value. The default value for all blips is 0.
Szintaxis
int getBlipOrdering ( blip theBlip )
OOP Syntax Help! I don't understand this!
- Method: blip:getOrdering(...)
- Variable: .ordering
- Counterpart: setBlipOrdering
Kötelező argumentumok
- theBlip: the blip to retrieve the Z ordering value of.
Visszaadott érték
Returns the Z ordering value of the blip if successful, false otherwise.
Példa
function getMyBlip(theBlip) local ordering = getBlipOrdering ( theBlip ) if (ordering) then outputChatBox("The following blip has a ordering of "..ordering) end end