OnClientColShapeLeave: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
m (See Also for client colshape events)
 
(3 intermediate revisions by 3 users not shown)
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{Client event}}
{{Client event}}
This event triggers whenever an element (a player, a vehicle...) leaves a collision shape.
This event is triggered when a physical [[element]] leaves a [[colshape]].


==Parameters==
==Parameters==
Line 7: Line 7:
element theElement, bool matchingDimension
element theElement, bool matchingDimension
</syntaxhighlight>
</syntaxhighlight>
*'''theElement:''' the element that left the colshape.
*'''theElement:''' the [[element]] that left the [[colshape]].
*'''matchingDimension:''' ''true'' if theElement is in the same dimension as the colshape, ''false'' otherwise.
*'''matchingDimension:''' a [[boolean]] referring to whether the collision shape was in the same [[dimension]] as the element.


==Source==
==Source==
Line 14: Line 14:


==Example==  
==Example==  
This example outputs "Out." to the chatbox whenever a local user leaves a collision shape.
This example outputs "Out." to the chatbox whenever the local user leaves a collision shape.
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
function onClientColShapeLeave( theElement, matchingDimension )
function onClientColShapeLeave( theElement, matchingDimension )
     if ( theElement == getLocalPlayer() ) then  -- Checks whether the leaving element is the local player
     if ( theElement == localPlayer ) then  -- Checks whether the leaving element is the local player
         outputChatBox( "Out." )  --Outputs.
         outputChatBox( "Out." )  --Outputs.
     end
     end
end
end
addEventHandler("onClientColShapeLeave", root, onClientColShapeLeave)
</syntaxhighlight>
</syntaxhighlight>
[[pl:onClientColShapeLeave]]


==See Also==
==See Also==

Latest revision as of 22:17, 2 April 2018

This event is triggered when a physical element leaves a colshape.

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

The source of this event is the colshape that the element left.

Example

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.
    end
end
addEventHandler("onClientColShapeLeave", root, onClientColShapeLeave)

See Also

Client colshape events


Client event functions