onClientColShapeLeave
Client-side
 Server-side
 Shared
 Parameters
element theElement, bool matchingDimension- theElement: the element that left the colshape.
- matchingDimension: a boolean referring to whether the collision shape was in the same dimension as the element.
Source
element: The source of this event is the colshape that the element left.
Code Examples
 client   
 This example outputs "Out." to the chatbox whenever the local user leaves a collision shape.
function onClientColShapeLeave( theElement, matchingDimension )    if ( theElement == localPlayer ) then  -- Checks whether the leaving element is the local player        outputChatBox( "Out." )  --Outputs.    endendaddEventHandler("onClientColShapeLeave", root, onClientColShapeLeave)See Also
Colshape Events
- onClientColShapeHit
- onClientColShapeLeave
- onColShapeHit
- onColShapeLeave
Colshape Functions
- addColPolygonPoint
- createColCircle
- createColCuboid
- createColPolygon
- createColRectangle
- createColTube
- createColSphere
- getColPolygonHeight
- getColPolygonPointPosition
- getColPolygonPoints
- getColShapeRadius
- getColShapeSize
- getElementColShape
- getColShapeType
- isInsideColShape
- isElementWithinColShape
- getElementsWithinColShape
- setColPolygonPointPosition
- removeColPolygonPoint
- setColPolygonHeight
- setColShapeRadius
- setColShapeSize
 
 