GetMarkerSize: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
 
(fixed example)
 
(15 intermediate revisions by 8 users not shown)
Line 1: Line 1:
__NOTOC__
__NOTOC__
==Description==
{{Server client function}}
This function returns a float containing the size of the specified marker.
This function returns a [[float]] containing the size of the specified marker.


==Syntax==
==Syntax==
float [[getMarkerSize]] ( [[marker]] marker )
<syntaxhighlight lang="lua">float getMarkerSize ( marker myMarker )</syntaxhighlight>
{{OOP||[[Marker]]:getSize|size|setMarkerSize}}
===Required Arguments===
*'''myMarker''': The [[marker]] that you wish to retrieve the size of.


===Required Arguments===
===Returns===
*'''marker''': The [[marker]] that you wish to retrieve the size of.
Returns a [[float]] containing the size of the specified marker.


==Example==
==Example==
newmarker = [[createMarker]] ( 1, 1000, 1000, 1000, 1,0,0 )
This example creates a marker and outputs the size to everyone.
<syntaxhighlight lang="lua">
[[serverChat]] ( "Current marker size: ", getMarkerSize ( newmarker ) )
-- Create a maker
local newMarker = createMarker ( 0, 0, 2, "cylinder", 2, 255, 0, 0, 255 )
-- If the marker was created successfully then...
if isElement ( newMarker ) then
    -- Tell everyone about it
    outputChatBox ( "Current marker size: " .. getMarkerSize ( newMarker ) )
end
</syntaxhighlight>
 
==See Also==
{{Marker functions}}

Latest revision as of 12:53, 10 October 2023

This function returns a float containing the size of the specified marker.

Syntax

float getMarkerSize ( marker myMarker )

OOP Syntax Help! I don't understand this!

Method: Marker:getSize(...)
Variable: .size
Counterpart: setMarkerSize


Required Arguments

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

Returns

Returns a float containing the size of the specified marker.

Example

This example creates a marker and outputs the size to everyone.

-- Create a maker
local newMarker = createMarker ( 0, 0, 2, "cylinder", 2, 255, 0, 0, 255 )
-- If the marker was created successfully then...
if isElement ( newMarker ) then
    -- Tell everyone about it
    outputChatBox ( "Current marker size: " .. getMarkerSize ( newMarker ) )
end

See Also