Element/Blip: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
m (Добавление языков) |
||
(13 intermediate revisions by 10 users not shown) | |||
Line 2: | Line 2: | ||
The blip class represents small icons or blips that can be shown on a player's radar. | The blip class represents small icons or blips that can be shown on a player's radar. | ||
The element type of this class is '''"blip"'''. | The element type of this class is '''"blip"'''. The list of blip icons are available on the [[Radar Blips]] page. | ||
==XML syntax== | ==XML syntax== | ||
<syntaxhighlight lang="xml"> | <syntaxhighlight lang="xml"> | ||
< | <blip posX="" posY="" posZ="" icon="" color="" dimension="" ordering=""/> | ||
</syntaxhighlight> | </syntaxhighlight> | ||
===Required Attributes=== | ===Required Attributes=== | ||
* '''posX''': A float representing the X position of the | * '''posX''': A float representing the X position of the blip. | ||
* '''posY''': A float representing the Y position of the | * '''posY''': A float representing the Y position of the blip. | ||
* '''posZ''': A float representing the Z position of the | * '''posZ''': A float representing the Z position of the blip. | ||
===Optional Attributes=== | ===Optional Attributes=== | ||
* '''color:''' The color of the icon in HTML-style format (i.e. #RRGGBB). Defaults to blue if not specified. | * '''color:''' The color of the icon in HTML-style format (i.e. #RRGGBB). Defaults to blue if not specified. | ||
* '''icon:''' The icon of the blip. Defaults to 0 if not specified. | * '''icon:''' The icon of the blip. Defaults to 0 if not specified. | ||
* '''dimension:''' The dimension of the blip. Defaults to 0 if not specified. | |||
* '''ordering:''' The Z-level ordering of the blip. Defaults to 0 if not specified. | |||
==Related scripting functions== | ==Related scripting functions== | ||
Line 23: | Line 25: | ||
===Server=== | ===Server=== | ||
{{Blip_functions}} | {{Blip_functions}} | ||
[[Category:Element Types]] | [[Category:Element Types]] | ||
[[en:Element/Blip]] | |||
[[ru:Element/Blip]] | |||
[[hu:Element/Blip]] | |||
[[it:Elemento/Blip]] |
Latest revision as of 10:07, 15 April 2021
The blip class represents small icons or blips that can be shown on a player's radar.
The element type of this class is "blip". The list of blip icons are available on the Radar Blips page.
XML syntax
<blip posX="" posY="" posZ="" icon="" color="" dimension="" ordering=""/>
Required Attributes
- posX: A float representing the X position of the blip.
- posY: A float representing the Y position of the blip.
- posZ: A float representing the Z position of the blip.
Optional Attributes
- color: The color of the icon in HTML-style format (i.e. #RRGGBB). Defaults to blue if not specified.
- icon: The icon of the blip. Defaults to 0 if not specified.
- dimension: The dimension of the blip. Defaults to 0 if not specified.
- ordering: The Z-level ordering of the blip. Defaults to 0 if not specified.
Related scripting functions
Client
Shared
- createBlip
- createBlipAttachedTo
- getBlipColor
- getBlipIcon
- getBlipOrdering
- getBlipSize
- getBlipVisibleDistance
- setBlipColor
- setBlipIcon
- setBlipOrdering
- setBlipSize
- setBlipVisibleDistance