SetBlipRouteVisible

From RAGE Multiplayer Wiki
Revision as of 18:13, 28 November 2019 by Xabi (talk | contribs) (Created page with "Toggle the blip route's visibility. {{CSharpContainer| {{#tag:syntaxhighlight|void{{Template:CSharp_Serverside_namespace}}Blip.SetBlipRouteVisible(NetHandle blip, bool visib...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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);