SetBlipOrdering: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
mNo edit summary
Line 1: Line 1:
__NOTOC__
{{Server client function}}
{{Server client function}}
This function sets the Z ordering of a blip. It allows you to make a blip appear on top of or below other blips.
This function sets the Z ordering of a blip. It allows you to make a blip appear on top of or below other blips.

Revision as of 20:16, 6 September 2008

This function sets the Z ordering of a blip. It allows you to make a blip appear on top of or below other blips.

Syntax

bool setBlipOrdering ( blip theBlip, int ordering )

Required Arguments

  • theBlip: the blip whose Z ordering to change.
  • ordering: the new Z ordering value. Blips with higher values will appear on top of blips with lower values. The default value is 0. Negative values are allowed.

See Also