Перейти к содержанию

SetBlipRouteVisible

Материал из RAGE MP Wiki Archive
This feature is currently not implemented server-side.

Toggle the blip route's visibility.


C# Syntax

<syntaxhighlight lang="csharp">voidNAPI.Blip.SetBlipRouteVisible(NetHandle blip, bool visible);</syntaxhighlight>

Parameters

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


Example

<syntaxhighlight lang="csharp"> Blip blip = NAPI..Blip.CreateBlip(new Vector3()); NAPI.Blip.SetBlipRouteVisible(blip, true); </syntaxhighlight>