我正在开发应用程序以查看您的运行速度,为此我需要一个显示您的最大速度的功能。但找不到我该怎么做。
local speedText = string.format( '%.3f', event.speed )
speed.y = 250
speed.x = 125
local numValue = tonumber(speedText)*3.6
if numValue ~= nil then
speed.text = math.round( numValue )
end
我已将“speedText”设置为您在上面看到的数字。
我在 Corona SDK/ Lua中编码