在Lua中获得最大速度(数量)

时间:2013-02-14 09:34:27

标签: lua corona

我正在使用应用程序来观察您的运行速度,为此我需要一个显示您的最高速度的功能。但无法找到我的工作。

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

中编码

1 个答案:

答案 0 :(得分:0)

你需要跟踪每一帧的速度,并做一些简单的事情:

if event.speed > currentMaxSpeed then
    currentMaxSpeed = event.speed;
end