getElementCollisionsEnabled | Multi Theft Auto: Wiki Skip to content

getElementCollisionsEnabled

Client-side
Server-side
Shared

Pair: setElementCollisionsEnabled

Manual Review Required

Please finish this page using the corresponding Old Wiki article. Go to Contribution guidelines for more information.


This function indicates if a specific element is set to have collisions disabled. An element without collisions does not interact with the physical environment and remains static.

OOP Syntax Help! I don't understand this!

  • Method:element:getCollisionsEnabled(...)
  • Variable: .collisions

Syntax

bool getElementCollisionsEnabled ( element theElement )
Required Arguments
  • theElement: The element for which you want to check whether collisions are enabled

Returns

  • bool: value

Returns true if the collisions are enabled, false otherwise.

Code Examples

shared

This example check if there are any players with collisions disabled.

for _,player in ipairs( getElementsByType( "player" ) ) do
if not getElementCollisionsEnabled( player ) then -- If we get a false return from the function, we know that the collisions are disabled.
outputConsole( "Player " .. getPlayerName( player ) .. " has collisions disabled." )
end
end

See Also

Element Functions