作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在更改我正在编写的游戏中的一些 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/
我是一名优秀的程序员,十分优秀!