IsElementDoubleSided: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with '{{Server client function}} __NOTOC__ This function checks whether an element is double-sided as set by setElementDoubleSided or not. ==Syntax== <syntaxhighlight lang="lua"> bool isElementD…')
 
mNo edit summary
Line 1: Line 1:
{{Server client function}}
{{Server client function}}
{{Needs_Example}}
__NOTOC__
__NOTOC__
This function checks whether an element is double-sided as set by [[setElementDoubleSided]] or not.
This function checks whether an element is double-sided as set by [[setElementDoubleSided]] or not.
Line 16: Line 17:
==Example==
==Example==
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
--ToDo
</syntaxhighlight>
</syntaxhighlight>


==See Also==
==See Also==
{{Element functions}}
{{Element functions}}

Revision as of 16:12, 19 July 2013

Accessories-text-editor.png Script Example Missing Function IsElementDoubleSided needs a script example, help out by writing one.

Before submitting check out Editing Guidelines Script Examples.


This function checks whether an element is double-sided as set by setElementDoubleSided or not.

Syntax

bool isElementDoubleSided ( element theElement )

Required Arguments

  • theElement: The element in which you'd like to check the double-sidedness of.

Returns

Returns true if the theElement is double-sided, false otherwise.

Example

--ToDo

See Also