SetBlipRouteVisible: Difference between revisions

From RAGE Multiplayer Wiki
(Created page with "Toggle the blip route's visibility. {{CSharpContainer| {{#tag:syntaxhighlight|void{{Template:CSharp_Serverside_namespace}}Blip.SetBlipRouteVisible(NetHandle blip, bool visib...")
 
No edit summary
 
Line 1: Line 1:
{{Warning|This feature is currently not implemented server-side.}}
Toggle the blip route's visibility.
Toggle the blip route's visibility.



Latest revision as of 15:08, 23 December 2022

This feature is currently not implemented server-side.

Toggle the blip route's visibility.


C# Syntax

voidNAPI.Blip.SetBlipRouteVisible(NetHandle blip, bool visible);

Parameters

  • blip: parameter input should be in NetHandle type
  • visible: parameter input should be in bool type


Example

Blip blip = NAPI..Blip.CreateBlip(new Vector3());
NAPI.Blip.SetBlipRouteVisible(blip, true);