1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2024-07-03 02:23:20 +00:00
CC-Tweaked/doc/events/monitor_touch.md
Jonathan Coates 52b78f92cd
Use standard Markdown link syntax for references
References are now written using normal links: You now use [`print`] or
[print a string][`print`]) instead of @{print} or @{print|print a
string}.
2023-08-24 11:23:33 +01:00

719 B

module: [kind=event] monitor_touch

The [monitor_touch] event is fired when an adjacent or networked Advanced Monitor is right-clicked.

Return Values

  1. [string]: The event name.
  2. [string]: The side or network ID of the monitor that was touched.
  3. [number]: The X coordinate of the touch, in characters.
  4. [number]: The Y coordinate of the touch, in characters.

Example

Prints a message when a monitor is touched:

while true do
  local event, side, x, y = os.pullEvent("monitor_touch")
  print("The monitor on side " .. side .. " was touched at (" .. x .. ", " .. y .. ")")
end