gpt4 book ai didi

multithreading - 更改后台线程上 SKSpriteNode 纹理的色调

转载 作者:行者123 更新时间:2023-11-30 13:56:05 35 4
gpt4 key购买 nike

我正在更改我正在编写的游戏中的一些 Sprite 的色调。色调改变函数是 -

private func image(fromOriginalImage image: UIImage, withHue hue: CGFloat) -> UIImage
{
let rect = CGRect(origin: CGPoint(x: 0.0, y: 0.0), size: image.size)

UIGraphicsBeginImageContext(image.size)

let context = UIGraphicsGetCurrentContext()

CGContextTranslateCTM(context, 0.0, image.size.height)
CGContextScaleCTM(context, 1.0, -1.0)

CGContextDrawImage(context, rect, image.CGImage)

CGContextSetBlendMode(context, CGBlendMode.Hue)

CGContextClipToMask(context, rect, image.CGImage)
CGContextSetFillColorWithColor(context, UIColor(hue: hue, saturation: 0.5, brightness: 0.4, alpha: 1.0).CGColor)
CGContextFillRect(context, rect)

let colouredImage = UIGraphicsGetImageFromCurrentImageContext()

UIGraphicsEndImageContext()


return colouredImage
}

这在后台线程上运行良好,然后我将它返回的图像返回到主线程以更新 SKSpriteNode 的纹理,有时我会在游戏中遇到明显的卡顿 -

GCD.async
{
if let colouredImage = self.image(fromOriginalImage: image, withHue: hue)
{
GCD.async_main
{
self.texture = SKTexture(image: colouredImage)
}
}
}

如果有人有任何建议如何做得更好,我会非常高兴。

谢谢

最佳答案

修复方法是将纹理更改放入 SKAction -

GCD.async
{
if let colouredImage = self.image(fromOriginalImage: image, withHue: hue)
{
let changeTexture = SKAction.setTexture(SKTexture(image: colouredImage))
self.runAction(changeTexture)
}
}

spriteKit 引擎会在自己的时间内处理它...

关于multithreading - 更改后台线程上 SKSpriteNode 纹理的色调,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33594239/

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