HU/getBlipOrdering: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
Line 6: Line 6:
{{OOP||[[blip]]:getOrdering|ordering|setBlipOrdering}}
{{OOP||[[blip]]:getOrdering|ordering|setBlipOrdering}}
===Kötelező argumentumok===
===Kötelező argumentumok===
*'''theBlip:''' the blip to retrieve the Z ordering value of.
*'''theBlip:''' Visszaadja a Z tengelyen való értékét a blipnek.


===Visszaadott érték===
===Visszaadott érték===

Revision as of 19:39, 23 July 2018

Ez a funkció megadja a Z tengelyen levő blip érték sorrendjét. A Z sorrend meghatározza, hogy a blip megjelenik-e más blipek alatt vagy felett. A Z tengelyen magasabb értékkel rendelkező blipek hamarabb jelennek meg az alacsonyabbakhoz képest. Minden blips alapértelmezett értéke a 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: Visszaadja a Z tengelyen való értékét a blipnek.

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

Lásd még

Fordította

  • Surge