Lua in SpringRTS/Callins/MouseMove()

From Wikibooks, open books for an open world
Jump to navigation Jump to search

MouseMove()[edit | edit source]

Description[edit | edit source]


Return values[edit | edit source]

x, y, dx, dy, button

Usage example[edit | edit source]

function widget:MousePress(x, y, button)
  echo("Mouse pressed")
  return true -- Pay attention to this. Without returning true the next function won't do anything
end

function widget:MouseMove(x, y, dx, dy, button)
  echo("Mouse moved")
end


Related[edit | edit source]