love.textinput (简体中文)

函数

概要

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