如何复制或克隆精灵?

时间:2019-01-29 18:12:19

标签: swift sprite-kit

我正在尝试制作自己的小飞盘鸟游戏,我想知道如何创建管道。

我已经尝试了好几个SKAction.moveTo(x: "Dosen't matter", duration: "Dosen't matter"),并且我想知道如何一直持续运行直到鸟死。

pipe.run(SKAction.moveTo(x: <#T##CGFloat#>, duration: <#T##TimeInterval#>))

我不知道如何使它永远持续下去。我只去一次。

1 个答案:

答案 0 :(得分:2)

使用repeatForever

 pipe.run(SKAction.repeatForever(SKAction.moveTo(x: <#T##CGFloat#>, duration: <#T##TimeInterval#>)))