- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试从“diceCollada.scn”文件创建一个新的 SCNScene
。但是这个文件不会被加载。
此文件位于“ARDicee/art.assets”文件夹中。
不仅是“diceCollada.scn”,它还无法加载默认的“ship.scn”。我不知道为什么它不加载文件。
这是我的代码。
import UIKit
import SceneKit
import ARKit
class ViewController: UIViewController, ARSCNViewDelegate {
@IBOutlet var sceneView: ARSCNView!
override func viewDidLoad() {
super.viewDidLoad()
// Set the view's delegate
sceneView.delegate = self
// Show statistics such as fps and timing information
sceneView.showsStatistics = true
// Create a new scene. ---------- The error is here ---------------
guard let diceScene = SCNScene(named: "art.scnassets/diceCollada.scn") else {
fatalError()
}
// Setting node
if let diceNode = diceScene.rootNode.childNode(withName: "Dice", recursively: true) {
diceNode.position = SCNVector3(x: 0, y: 0, z: -0.1)
sceneView.scene.rootNode.addChildNode(diceNode)
}
}
override func viewWillAppear(_ animated: Bool) {
super.viewWillAppear(animated)
if ARWorldTrackingConfiguration.isSupported {
// Create a session configuration
let configuration = ARWorldTrackingConfiguration()
// Run the view's session
sceneView.session.run(configuration)
}
}
override func viewWillDisappear(_ animated: Bool) {
super.viewWillDisappear(animated)
// Pause the view's session
sceneView.session.pause()
}
}
Xcode - 版本 14.1
macOS Ventura - 版本 13.0.1
GitHub - This project
我还尝试以另一种方式创建 SCNScene
。
override func viewDidLoad() {
super.viewDidLoad()
// Set the view's delegate
sceneView.delegate = self
// Show statistics such as fps and timing information
sceneView.showsStatistics = true
// --- Another way to create SCNScene ---
let filePath = URL(fileURLWithPath: "/Applications/xcode/Development/ARDicee/ARDicee/art.scnassets/diceCollada.scn")
do {
let diceScene = try SCNScene(url: filePath)
if let diceNode = diceScene.rootNode.childNode(withName: "Dice", recursively: true) {
diceNode.position = SCNVector3(x: 0, y: 0, z: -0.1)
sceneView.scene.rootNode.addChildNode(diceNode)
}
} catch {
print(error)
}
}
但它给出了这个错误。
Error Domain=NSCocoaErrorDomain Code=260 "The file “diceCollada.scn” couldn’t be opened because there is no such file." UserInfo={NSFilePath=/Applications/xcode/Development/ARDicee/ARDicee/art.scnassets/diceCollada.scn, NSUnderlyingError=0x282924570 {Error Domain=NSPOSIXErrorDomain Code=2 "No such file or directory"}}
我正在尝试从“diceCollada.scn”文件创建一个新的SCNScene
。
最佳答案
如果应用无法从 Apple 模板加载宇宙飞船,则项目可能会以某种方式中断。尝试创建一个全新的默认 SceneKit/ARKit 项目,直接编译它并检查飞船是否正确加载。如果是,请将当前项目中的代码复制并粘贴到新项目中。如果宇宙飞船甚至没有从新模板加载,您的 xCode 安装可能会被破坏。您还可以清理项目构建文件夹或删除派生数据,这里有关于如何执行此类操作的文章。此外,您可以在 StackOverflow 上分享您的项目,以便我们查看。
关于Swift-SceneKit-无法从 '.scn' 加载 'art.scnassets' 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/74653849/
我正在研究 ARKit(iPhone 框架),ARKit 项目免费提供的文件夹之一是标题为:art.scnassets 的文件夹。 .这些代表什么:art. ? .scn ? .dea ? tex ?
在 Xcode 中创建一个新的“增强现实应用程序”项目后,我想将 art.scnassets 文件夹从其默认位置移动到我创建的 /Resources/ 文件夹.因此文件夹路径类似于 Resources
我是 SceneKit 新手,我只是好奇创建(更不用说使用)在 Xcode 中的 SceneKit 游戏项目模板中创建的 .scnassets 资源目录的正确方法是什么。 我知道我可以创建一个文件夹并
我对加载/显示位于 Xcode 中 art.scnassets 文件夹内的文件夹中的多个 3D 模型有疑问。请耐心等待我,因为我是 iOS 的 swift 和编程新手。 我的基本程序是我有一个 QR
我想添加一个位于我的 art.assets 文件夹中的 .dae 文件。到现场。就是这样,哈哈,很快就更可取了,但我也会选择 Objective-C。感谢这里的一些代码,它只是 Xcode 为您提供的
我正在尝试从“diceCollada.scn”文件创建一个新的 SCNScene。但是这个文件不会被加载。 此文件位于“ARDicee/art.assets”文件夹中。 不仅是“diceCollada
我正在尝试从“diceCollada.scn”文件创建一个新的 SCNScene。但是这个文件不会被加载。 此文件位于“ARDicee/art.assets”文件夹中。 不仅是“diceCollada
尝试创建一个使用 .scnassets 文件夹的 cocoapod。该文件夹导入到 Resources 中,子对象没有任何问题,但我找不到将 .dae 文件加载到 SCNScene。据我了解,XCod
我是一名优秀的程序员,十分优秀!