gpt4 book ai didi

ios - 如何在 swift 中为 SKSpriteNode 创建翻转效果

转载 作者:可可西里 更新时间:2023-11-01 02:19:39 25 4
gpt4 key购买 nike

我想像这样使用 SKSpriteNode 在 swift 中创建翻转效果 effect .我试试这个solution但在水平旋转之前我们可以看到垂直旋转。我只想要像 HTML/CSS 示例中那样的水平旋转。

最佳答案

使用 SKSpriteNode 做翻转的解决方案:

    func flipTile(node : RectSprite){

let flip = SKAction.scaleXTo(-1, duration: 0.4)

node.setScale(1.0)

var changeColor = SKAction.runBlock( { node.texture = SKTexture(imageNamed: "blue")})
var action = SKAction.sequence([flip, changeColor] )

node.runAction(action)

}

关于ios - 如何在 swift 中为 SKSpriteNode 创建翻转效果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31652555/

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