-2

我正在开发应用程序以查看您的运行速度,为此我需要一个显示您的最大速度的功能。但找不到我该怎么做。

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中编码

4

1 回答 1

0

您需要跟踪每一帧的速度,并执行以下简单操作:

if event.speed > currentMaxSpeed then
    currentMaxSpeed = event.speed;
end
于 2013-02-14T12:35:07.773 回答