我可以从 Xcode 中的场景编辑器设置 SCNScene 的背景吗?
这可能是一个愚蠢的问题,但如何从场景编辑器本身设置场景的背景?我希望场景是透明的,这样我就可以将它覆盖在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
场景背景颜色可以在右侧最后一个检查器中编辑(名为“场景检查器”,使用快捷键 ⌘⌥8)
the scene background color can be edited in the very last inspector on the right (named "Scene Inspector", with shortcut ⌘⌥8)