Difference between revisions of "variable (日本語)"
(New translation (Based revision : 19 July 2013, at 01:32)) |
m |
||
Line 5: | Line 5: | ||
<source lang="lua"> | <source lang="lua"> | ||
function love.mousepressed( x, y, button ) | function love.mousepressed( x, y, button ) | ||
− | if button == | + | if button == 1 then -- Version 0.10.0 以前では MouseConstant の 'l' を指定します。 |
time = time + 1 | time = time + 1 | ||
end | end | ||
Line 15: | Line 15: | ||
== そのほかの言語 == | == そのほかの言語 == | ||
− | {{i18n|variable}} | + | {{i18n (日本語)|variable}} |
Latest revision as of 09:03, 16 June 2019
変数は val, var, その他の任意の文字または単語のようなものであり、まだ他に何かを割り当てられていない値です。
用例
左側のマウスボタンがクリックされるごとに time 変数を 1 つ加算します。
function love.mousepressed( x, y, button )
if button == 1 then -- Version 0.10.0 以前では MouseConstant の 'l' を指定します。
time = time + 1
end
end