gpt4 book ai didi

swift - 永远移至 SKAction

转载 作者:行者123 更新时间:2023-11-30 13:47:48 27 4
gpt4 key购买 nike

我有以下代码将“敌人”移动到我的“玩家”位置。

let follow = SKAction.moveTo(player.position, duration: 2)
enemy.runAction(SKAction.repeatActionForever(action), withKey: "moving")

这段代码工作正常。但是,当我移动玩家时,我希望 SKAction“再次运行”,以便敌人始终向玩家所在的最后位置移动。因此,如果玩家不继续移动,他们最终会被捕获。

为什么“repeatActionForever”不起作用?敌人会移动到玩家的初始位置,但是当您将玩家移动到新位置时,敌人不会移动到该新位置。

谢谢:D

最佳答案

repeatActionForever 正在工作,它不是动态的,它只会在创建 Action 时移动到玩家,它不知道发生了任何变化。

您需要为此执行runBlock:

let follow = 
SKAction.sequence(
[
SKAction.runBlock(
{
//this will allow the enemy to constantly follow the player
enemy.runAction(SKAction.moveTo(player.position, duration: 2), withKey:"move")
}),
SKAction.waitForDuration(0.1)
]
)
enemy.runAction(SKAction.repeatActionForever(follow), withKey: "moving")

现在这种方法的问题是敌人的速度会根据玩家的距离而变化。相反,你想要这样做:

//duration is expected time to reach the player
let follow = SKAction.customActionWithDuration(duration,
actionBlock:
{
node,elapsedTime in
//change the nodes velocity
//this formula is dependent on gameplay
})

enemy.runAction(SKAction.repeatActionForever(follow), withKey: "moving")

关于swift - 永远移至 SKAction,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34704071/

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