SetBlipRouteVisible
Внешний вид
Ошибка создания миниатюры: Не удаётся сохранить эскиз по месту назначения This feature is currently not implemented server-side.
Toggle the blip route's visibility.
<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>