SetElementCollidableWith: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 1: Line 1:
{{Client function}}  
{{Client function}}
{{Needs Example}}
__NOTOC__  
__NOTOC__  
This function can be used to set an element to collide with another element. An element with collisions disabled does not interact physically with the other element.<br>
This function can be used to set an element to collide with another element. An element with collisions disabled does not interact physically with the other element.<br>
Line 30: Line 31:
==See Also==
==See Also==
{{Client element functions}}
{{Client element functions}}
[[Category:Needs_Example]]

Revision as of 18:56, 17 November 2011

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

Before submitting check out Editing Guidelines Script Examples.


This function can be used to set an element to collide with another element. An element with collisions disabled does not interact physically with the other element.
Note: You can only use this function with the element types listed below.

Syntax

bool setElementCollidableWith ( element theElement, element withElement, bool enabled ) 

Required Arguments

  • theElement: The element which colliding you want to change
  • withElement: The other element you wish the first entity to collide with
  • enabled: A boolean to indicate whether elements should be able to collide with eachother (true) or not (false)

Returns

Returns true if the collisions were set succesfully, false otherwise.

Example

Click to collapse [-]
Client
-- TODO

See Also