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

SetMarkerDirection

Материал из RAGE MP Wiki Archive

Sets the direction of a marker created with CreateMarker.


void NAPI.Marker.SetMarkerDirection(NetHandle marker, Vector3 direction);

Parameters

  • marker: Parameter input should be in NetHandle type.
  • direction: Parameter input should be in Vector3 type.

Example

<syntaxhighlight lang="csharp"> NAPI.Marker.SetMarkerDirection(marker, new Vector3(0, 0, 180)); </syntaxhighlight>