IsInsideColShape: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
Line 1: Line 1:
__NOTOC__  
__NOTOC__  
{{Server client function}}
{{Server client function}}
This function checks if a 3D position is inside a colshape or not.
{{New feature/item|3.0156|1.5.5|12286|This function checks if a 3D position is inside a colshape or not.}}


==Syntax==  
==Syntax==  

Revision as of 15:43, 8 July 2018

This function checks if a 3D position is inside a colshape or not.

Syntax

bool IsInsideColShape ( colshape theShape, float posX, float posY, float posZ )

OOP Syntax Help! I don't understand this!

Method: colshape:isInside(...)


Required Arguments

  • theShape: The colshape you're checking the position against.
  • posX: The X coordinate of the position you're checking.
  • posY: The Y coordinate of the position you're checking.
  • posZ: The Z coordinate of the position you're checking.

Returns

Returns true if the position is inside the colshape, false if it isn't or if any parameters are invalid.

Example

This function checks if an element is within a colshape.

function isElementInsideColShape( theElement, theColShape )
    return isInsideColShape( theColShape, getElementPosition( theElement ) )
end

See Also