gpt4 book ai didi

iphone - 如何创建 Jetpack Joyride 头奖杠杆动画

转载 作者:塔克拉玛干 更新时间:2023-11-02 10:13:14 25 4
gpt4 key购买 nike

只是想知道是否有人知道如何重现触摸杆 Action ?

http://www.wired.com/geekdad/wp-content/uploads/2011/08/JJ-jackpot.jpg

最佳答案

不知道确切的动画是什么,但如果您必须向下拉动控制杆才能激活,而不仅仅是点击控制杆,那么您需要获取初始触摸位置并将其与最终触摸位置进行比较。当前触摸在 2 个开始位置和结束位置之间的百分比决定了正在使用的动画帧。

假设您的杠杆动画有 10 帧:

function lengthOf(a, b)
local width, height = b.x-a.x, b.y-a.y
return (width*width + height*height)^0.5
end

local startBox, endBox
local beingPulled = false
if isOver(touchPos, startBox) and touch.phase == "began" then
beingPulled = true
end
if touch.phase == "moved" then
if beingPulled then
local lengthA = lengthOf(touch, startBox)
local lengthB = lengthOf(touch, endBox)
local totalLength = lengthA+lengthB
local percentage = totalLength/lengthA

lever:setFrame( math.ceil(percentage*10) )
end
end
if touch.phase == "ended" then
lever:resetPosition()
beingPulled = false
end

关于iphone - 如何创建 Jetpack Joyride 头奖杠杆动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13004963/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com