Difference between revisions of "love.textinput (简体中文)"

(Function)
 
Line 8: Line 8:
 
=== Returns ===
 
=== Returns ===
 
无返回
 
无返回
 +
 +
 +
== 注释 ==
 +
在 Android 和 iOS 上,默认禁用 textinput;调用love.keyboard.setTextInput来启用它。
 +
 +
== 例子 ==
 +
记录并打印用户输入的文本。
 +
 +
<source lang="lua">
 +
function love.load()
 +
    text = "Type away! -- "
 +
end
 +
 +
function love.textinput(t)
 +
    text = text .. t
 +
end
 +
 +
function love.draw()
 +
    love.graphics.printf(text, 0, 0, love.graphics.getWidth())
 +
end
 +
</source>

Revision as of 14:45, 18 August 2022

函数

概要

love.textinput( text )

参数

string text
UTF-8 文本

Returns

无返回


注释

在 Android 和 iOS 上,默认禁用 textinput;调用love.keyboard.setTextInput来启用它。

例子

记录并打印用户输入的文本。

function love.load()
    text = "Type away! -- "
end

function love.textinput(t)
    text = text .. t
end

function love.draw()
    love.graphics.printf(text, 0, 0, love.graphics.getWidth())
end