将背景图像添加到 ScnScene

Adding background image to ScnScene

我有一个使用 SpriteKit 和发射器粒子 (sks) 的应用程序,我发现它不像 Scene kit 的粒子 (scnp) 那样逼真。所以我希望将它合并到 SKScene 中,但我不确定这是否可能。所以我决定创建一个 SCNScene 和粒子(scnp)。但是我想添加背景图像,唯一的 3D 效果就是粒子。谁能帮我为我的 SCNScene 设置背景图片。传统上我会像这样将它添加到 SKScene,但我找不到 SceneKit 的任何在线帮助。

 let backgroundNode = SKSpriteNode(imageNamed: "backgroundImage")
    backgroundNode.size = view.frame.size
    backgroundNode.position = CGPointMake(view.frame.size.width/2, view.frame.height/2)

    self.addChild(backgroundNode)

提前致谢

let scnScene = SCNScene()
scnScene.background.contents = UIImage(named: "earth.jpg")

基本上与@Kusal Shrestha 的答案相同,但我能够使用多种不同的技术来放置渐变背景。还是很简单好用的。

    const CGFloat DIVISOR = 255.0f;
    CIColor *bottomColor = [CIColor colorWithRed:(CGFloat)0xee / DIVISOR green:(CGFloat)0x78 / DIVISOR blue:(CGFloat)0x0f / DIVISOR alpha:1];
    CIColor *topColor = [CIColor colorWithRed:0xff / DIVISOR green:0xfb / DIVISOR blue:0xcf / DIVISOR alpha:1];
    SKTexture* textureGradient = [SKTexture textureWithVerticalGradientofSize:scnview.frame.size topColor:topColor bottomColor:bottomColor];
    UIImage* uiimageGradient = [UIImage imageWithCGImage:textureGradient.CGImage];
    self.background.contents = uiimageGradient;

其中 "self" 是 SCNScene 的子类。

此示例需要来自此处的纹理类别:https://gist.github.com/Tantas/7fc01803d6b559da48d6

我尝试使用@Kusal Shresthas 的回答。但是,当我将图像文件放入 scnassets 时,图像没有加载。但是当我将文件放入 xcassets 时,它起作用了。

scnScene.background.contents = UIImage(named: "earth")