SetBlipRouteVisible

From RAGE Multiplayer Wiki
Revision as of 15:08, 23 December 2022 by Xabi (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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);