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

SetMarkerScale

Материал из RAGE MP Wiki Archive
Версия от 16:29, 13 декабря 2019; imported>Bonus (Created page with "Sets the scale of a marker created with CreateMarker. {{CSharpContainer| {{#tag:pre|void {{Template:CSharp_Serverside_namespace}}Marker.SetMarkerScale(NetHandle marker, f...")
(разн.) ← Предыдущая версия | Текущая версия (разн.) | Следующая версия → (разн.)

Sets the scale of a marker created with CreateMarker.


void NAPI.Marker.SetMarkerScale(NetHandle marker, float scale);

Parameters

  • marker: Parameter input should be in NetHandle type.
  • scale: Parameter input should be in float type.

Example

<syntaxhighlight lang="csharp"> NAPI.Marker.SetMarkerScale(marker, 4f); </syntaxhighlight>