SetElementMatrix: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
m (fix oop syntax)
No edit summary
Line 1: Line 1:
{{Client function}}
{{Shared function}}
{{Needs_Example}}
{{Needs_Example}}
__NOTOC__  
__NOTOC__  

Revision as of 17:56, 6 March 2020

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

Before submitting check out Editing Guidelines Script Examples.


This function sets matrix to element.

Syntax

bool setElementMatrix ( element theElement, table theMatrix )       

OOP Syntax Help! I don't understand this!

Method: element:setMatrix(...)
Variable: .matrix
Counterpart: getElementMatrix


Required Arguments

  • theElement: The element which you set matrix
  • theMatrix: The matrix.

Returns

Returns true if the matrix was set succesfully, false otherwise.

Example

TODO

--TODO

Requirements

Minimum server version n/a
Minimum client version 1.3.0-9.04485

Note: Using this feature requires the resource to have the above minimum version declared in the meta.xml <min_mta_version> section. e.g. <min_mta_version client="1.3.0-9.04485" />

See Also