IsElementWithinMarker: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with '{{Server client function}} __NOTOC__ This function is used to determine if an element is within a marker. ==Syntax== <syntaxhighlight lang="lua">bool isElementWithinMarker ( element th…')
 
No edit summary
Line 20: Line 20:
==See Also==
==See Also==
{{Marker functions}}
{{Marker functions}}
[[Category:Needs_Example]]

Revision as of 15:56, 21 September 2009

This function is used to determine if an element is within a marker.

Syntax

bool isElementWithinMarker ( element theElement, marker theMarker )

Required Arguments

  • theElement: The element you're checking.
  • theShape: The marker you're checking

Returns

Returns true if the element is within the marker, false otherwise

Example

--TODO

See Also