Difference between revisions of "love.wheelmoved (日本語)"
(Created page with "{{newin (日本語)|0.10.0|100|type=関数}} マウスホィールが動かされる時に発生するコールバック関数です。 == 関数 == === 概要 === <source...") |
m |
||
(4 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
− | {{newin (日本語)|[[0.10.0]]|100|type=関数}} | + | {{newin (日本語)|[[0.10.0 (日本語)|0.10.0]]|100|type=関数}} |
− | + | マウスホイールが動かされると発生するコールバック関数です。 | |
== 関数 == | == 関数 == | ||
=== 概要 === | === 概要 === | ||
Line 46: | Line 46: | ||
-- スムース・スクロール効果を発生させるために徐々に減速します。 | -- スムース・スクロール効果を発生させるために徐々に減速します。 | ||
− | velx = velx - velx * math.min(dt * 10, 1) | + | velx = velx - velx * math.min( dt * 10, 1 ) |
− | vely = vely - | + | vely = vely - vely * math.min( dt * 10, 1 ) |
end | end | ||
Line 61: | Line 61: | ||
{{#set:Since=100}} | {{#set:Since=100}} | ||
{{#set:PrettySince=0.10.0}} | {{#set:PrettySince=0.10.0}} | ||
− | {{#set:Description= | + | {{#set:Description=マウスホィールが動かされると発生するコールバック関数です。}} |
− | {{#set:Subcategory= | + | {{#set:Subcategory=Mouse}} |
== そのほかの言語 == | == そのほかの言語 == | ||
− | {{i18n|love.wheelmoved}} | + | {{i18n (日本語)|love.wheelmoved}} |
Latest revision as of 14:52, 24 November 2019
LÖVE 0.10.0 から使用可能 |
この関数は以前のバージョンでは非対応です。 |
マウスホイールが動かされると発生するコールバック関数です。
関数
概要
love.wheelmoved( x, y )
引数
返値
ありません。
用例
local text = ""
function love.wheelmoved(x, y)
if y > 0 then
text = "Mouse wheel moved up"
elseif y < 0 then
text = "Mouse wheel moved down"
end
end
function love.draw()
love.graphics.print(text, 10, 10)
end
スムース・スクロール
function love.load()
posx, posy = love.graphics.getWidth() * 0.5, love.graphics.getHeight() * 0.5
velx, vely = 0, 0 -- スクロール速度
end
function love.draw()
love.graphics.rectangle( 'line', posx, posy, 50, 50 )
end
function love.update( dt )
posx = posx + velx * dt
posy = posy + vely * dt
-- スムース・スクロール効果を発生させるために徐々に減速します。
velx = velx - velx * math.min( dt * 10, 1 )
vely = vely - vely * math.min( dt * 10, 1 )
end
function love.wheelmoved( dx, dy )
velx = velx + dx * 20
vely = vely + dy * 20
end
関連