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

SetBlipRouteColor

Материал из RAGE MP Wiki Archive
Версия от 15:08, 23 декабря 2022; imported>Xabi
(разн.) ← Предыдущая версия | Текущая версия (разн.) | Следующая версия → (разн.)

Sets the color for the current's blip route.


<syntaxhighlight lang="csharp">void NAPI.Blip.SetBlipRouteColor(NetHandle blip, int color);</syntaxhighlight>

Parameters

  • blip: parameter input should be in NetHandle type
  • color: parameter input should be in int type


Example

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