Blip::shortRange: Difference between revisions

From RAGE Multiplayer Wiki
(Created page with "__NOTOC__ '''Property''': Changes the behavior of the Blip on the minimap. ===Syntax== {{ServerSide}} <code lang="javascript"> blip.shortRange = true; // Auto-hide the blip...")
 
m (Added blip definitions)
 
(2 intermediate revisions by one other user not shown)
Line 1: Line 1:
__NOTOC__
__NOTOC__
'''Property''': Changes the behavior of the Blip on the minimap.
'''Property''': Changes the behavior of the Blip on the minimap.


===Syntax==
==Syntax==
{{ServerSide}}
{{ServerSide}}
<code lang="javascript">
<syntaxhighlight lang="javascript">
blip.shortRange = true; // Auto-hide the blip if it's not longer in range of the minimap
blip.shortRange = true; // Auto-hide the blip if it's not longer in range of the minimap
blip.shortRange = false; // Always show the blip
blip.shortRange = false; // Always show the blip
</code>
</syntaxhighlight>
 
==See Also==
{{Blip_definition}}

Latest revision as of 11:49, 10 May 2018

Property: Changes the behavior of the Blip on the minimap.

Syntax

Server-Side

blip.shortRange = true; // Auto-hide the blip if it's not longer in range of the minimap
blip.shortRange = false; // Always show the blip

See Also