SetMarkerIcon: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(OOP)
mNo edit summary
 
(5 intermediate revisions by 4 users not shown)
Line 1: Line 1:
__NOTOC__
{{Server client function}}
{{Server client function}}
__NOTOC__
==Description==
This function allows changing the icon of a checkpoint marker.
This function allows changing the icon of a checkpoint marker.


==Syntax==
==Syntax==
<syntaxhighlight lang="lua">bool setMarkerIcon ( marker theMarker, string icon )</syntaxhighlight>
<syntaxhighlight lang="lua">
{{OOP|[[Marker]]:setIcon|icon|getMarkerIcon}}
bool setMarkerIcon ( marker theMarker, string icon )
</syntaxhighlight>
{{OOP||[[Marker]]:setIcon|icon|getMarkerIcon}}
 
===Required Arguments===
===Required Arguments===
* '''theMarker:''' The [[marker]] to change the visual style of
* '''theMarker:''' The [[marker]] to change the visual style of
Line 16: Line 18:
==Example==
==Example==
This example creates a finish marker as you'd expect for the end of a race.
This example creates a finish marker as you'd expect for the end of a race.
<syntaxhighlight lang="lua">theMarker = createMarker ( 1000, 1000, 1000, 0, 255, 0, 0 )  
<syntaxhighlight lang="lua">
setMarkerIcon ( theMarker, "finish" )</syntaxhighlight>
local newMarker = createMarker ( 0, 0, 2, "checkpoint", 1, 255, 0, 0)  
setMarkerIcon ( newMarker, "finish" )
</syntaxhighlight>


==See Also==
==See Also==
{{Marker functions}}
{{Marker functions}}

Latest revision as of 13:02, 10 October 2023

This function allows changing the icon of a checkpoint marker.

Syntax

bool setMarkerIcon ( marker theMarker, string icon )

OOP Syntax Help! I don't understand this!

Method: Marker:setIcon(...)
Variable: .icon
Counterpart: getMarkerIcon


Required Arguments

  • theMarker: The marker to change the visual style of
  • icon: A string referring to the type of icon, acceptable values are:
    • "none": No icon
    • "arrow": Arrow icon
    • "finish": Finish icon (at end of race)

Example

This example creates a finish marker as you'd expect for the end of a race.

local newMarker = createMarker ( 0, 0, 2, "checkpoint", 1, 255, 0, 0) 
setMarkerIcon ( newMarker, "finish" )

See Also