OnClientDoubleClick: Difference between revisions
Jump to navigation
Jump to search
Line 34: | Line 34: | ||
===Client event functions=== | ===Client event functions=== | ||
{{Client_event_functions}} | {{Client_event_functions}} | ||
Revision as of 07:20, 1 May 2012
This event triggers whenever the user double-clicks his mouse. This is linked to the GTA world, as appose to GUI for which onClientGUIDoubleClick is to be used. This event allows detection of click positions of the 3D world.
Parameters
string button, int absoluteX, int absoluteY, float worldX, float worldY, float worldZ, element clickedWorld
- button: This refers the button used to click on the mouse, can be left, right, or middle'
- absoluteX: This refers to the 2D x coordinate the user clicked on his screen, and is an absolute position in pixels.
- absoluteY: This refers to the 2D y coordinate the user clicked on his screen, and is an absolute position in pixels.
- worldX: This represents the 3D x coordinate the player clicked on the screen, and is relative to the GTA world.
- worldY: This represents the 3D y coordinate the player clicked on the screen, and is relative to the GTA world.
- worldZ: This represents the 3D z coordinate the player clicked on the screen, and is relative to the GTA world.
- clickedWorld: This represents any physical entity elements that were clicked. If the player clicked on no MTA element, it's set to false.
Source
The source of this event is the client's root element.
Example
button = guiCreateButton(0.3,0.475,0.4,0.05,"Repair(doubleclick)",true) function onMyButtonDoubleClick (button, absoluteX, absoluteY, worldX, worldY, worldZ, clickedWorld) if button == "left" then playSoundFrontEnd (40) end end addEventHandler("onClientDoubleClick",button,onMyButtonDoubleClick)
See Also
GUI events
Input
GUI
- onClientGUIAccepted
- onClientGUIBlur
- onClientGUIChanged
- onClientGUIClick
- onClientGUIComboBoxAccepted
- onClientGUIDoubleClick
- onClientGUIFocus
- onClientGUIMouseDown
- onClientGUIMouseUp
- onClientGUIMove
- onClientGUIScroll
- onClientGUISize
- onClientGUITabSwitched
- onClientMouseEnter
- onClientMouseLeave
- onClientMouseMove
- onClientMouseWheel
Client event functions
- triggerLatentServerEvent
- triggerServerEvent
- Shared
- addEvent
- addEventHandler
- cancelEvent
- cancelLatentEvent
- getEventHandlers
- getLatentEventHandles
- getLatentEventStatus
- removeEventHandler
- triggerEvent
- wasEventCancelled