SetMarkerSize

From Multi Theft Auto: Wiki
Revision as of 04:46, 31 March 2006 by JonChappell (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Description

This function sets the size of the specified marker. The function returns false if it fails.

Syntax

bool setMarkerSize ( marker marker, float size )

Required Arguments

  • marker: The marker that you wish to retrieve the size of.
  • size: The new size of the marker.

Example

newmarker = createMarker ( 1, 1000, 1000, 1000, 1,0,0 )

setMarkerSize ( newmarker, 2.5)