2

コロナでそれを実装する方法がわかりません。アイデア\提案はありますか? ありがとう!

4

2 に答える 2

1
local timeOfPressing = 9999999;
local buttonPressed = false;
local function keyListener( event )
    if event.phase == "began" then
        timeOfPressing = event.time;
        buttonPressed = true;
    elseif event.phase == "ended" and buttonPressed then
        local force = event.time - timeOfPressing;
        if force > maximumForce then force = maximumForce end
        buttonPressed = false;
        myJumpFunction(force);
    end
end
于 2012-09-03T12:12:03.930 に答える
0

event.phase==began であなたの力を定義し、増やしてください。

于 2012-09-03T08:55:40.077 に答える