Lua Events/OnObjectLeftMouseButtonUp

From PZwiki



Event

OnObjectLeftMouseButtonUp

Description

Triggered when left mouse button is released on object

Parameters

  • IsoObject The object on which the left mouse button was released.
  • Integer The x coordinate where the left mouse button was released.
  • Integer The y coordinate where the left mouse button was released.

Examples

local function OnObjectLeftMouseButtonUp(object, x, y)
	-- Your code here
end

Events.OnObjectLeftMouseButtonUp.Add(OnObjectLeftMouseButtonUp)

See also