GetBlipOrdering: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 10: Line 10:


===Returns===
===Returns===
Returns the Z ordering value if successful, ''false'' otherwise.
Returns the Z ordering value of the blip if successful, ''false'' otherwise.


Blips with a higher Z ordering value appear on top of blips with a lower value. The default value for all blips is 0.
Blips with a higher Z ordering value appear on top of blips with a lower value. The default value for all blips is 0.

Revision as of 20:17, 6 September 2008

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.

Syntax

int getBlipOrdering ( blip theBlip )

Required Arguments

  • theBlip: the blip to retrieve the Z ordering value of.

Returns

Returns the Z ordering value of the blip if successful, false otherwise.

Blips with a higher Z ordering value appear on top of blips with a lower value. The default value for all blips is 0.

See Also