OnClientColShapeHit: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
mNo edit summary |
||
Line 3: | Line 3: | ||
This event is triggered when an physical [[element]] hits a [[colshape]]. | This event is triggered when an physical [[element]] hits a [[colshape]]. | ||
'''NOTE''': The hit won't be detected if the [[element]] that entered the colshape is a colshape. | '''NOTE''': The hit won't be detected if the [[element]] that entered the colshape is a colshape or projectile. | ||
==Parameters== | ==Parameters== |
Revision as of 15:51, 25 December 2013
This event is triggered when an physical element hits a colshape.
NOTE: The hit won't be detected if the element that entered the colshape is a colshape or projectile.
Parameters
element theElement, bool matchingDimension
- theElement: the element that entered the colshape.
- matchingDimension: true if theElement is in the same dimension as the colshape, false otherwise.
Source
The source of this event is the colshape that was hit.
Example
This example outputs "In." to the chatbox whenever a local user enters a collision shape.
function onClientColShapeHit( theElement, matchingDimension ) if ( theElement == getLocalPlayer() ) then -- Checks whether the entering element is the local player outputChatBox( "In." ) --Outputs. end end addEventHandler("onClientColShapeHit",getRootElement(),onClientColShapeHit)
See Also
Client colshape events
Client event functions
- triggerLatentServerEvent
- triggerServerEvent
- Shared
- addEvent
- addEventHandler
- cancelEvent
- cancelLatentEvent
- getEventHandlers
- getLatentEventHandles
- getLatentEventStatus
- removeEventHandler
- triggerEvent
- wasEventCancelled