跳到内容

SpringRTS/Callins/MouseMove() 中的 Lua

来自维基教科书,开放世界中的开放书籍

MouseMove()

[编辑 | 编辑源代码]


返回值

[编辑 | 编辑源代码]

x, y, dx, dy, button

用法示例

[编辑 | 编辑源代码]
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



华夏公益教科书