我可以从 Xcode 中的场景编辑器设置 SCNScene 的背景吗?

发布于 2025-01-12 23:50:46 字数 367 浏览 0 评论 0原文

这可能是一个愚蠢的问题,但如何从场景编辑器本身设置场景的背景?我希望场景是透明的,这样我就可以将它覆盖在 UI 之上,现在我用代码来实现:

func initMainScene() -> SCNScene {
    guard let newScene = SCNScene(named : "mainScene.scn")
        else { fatalError("Unable to load scene file.") }
    newScene.background.contents = UIColor.clear
    return newScene
}

This might be a stupid question, but how can I set the background of my scene from the Scene editor itself ? I want the Scene to be transparent so I can overlay it on top of UI, for now I do it in code :

func initMainScene() -> SCNScene {
    guard let newScene = SCNScene(named : "mainScene.scn")
        else { fatalError("Unable to load scene file.") }
    newScene.background.contents = UIColor.clear
    return newScene
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

两人的回忆 2025-01-19 23:50:46

场景背景颜色可以在右侧最后一个检查器中编辑(名为“场景检查器”,使用快捷键 8

the scene background color can be edited in the very last inspector on the right (named "Scene Inspector", with shortcut 8)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文