gpt4 book ai didi

scenekit - 如何为 SCNNode 创建边框以指示其在 iOS 11 ARKit-Scenekit 中的选择?

转载 作者:行者123 更新时间:2023-12-04 04:15:15 26 4
gpt4 key购买 nike

如何绘制边框以突出显示 SCNNode 并向用户指示该节点已被选中?
在我的项目中,用户可以放置多个虚拟对象,用户可以随时选择任何对象。选择后,我应该向用户显示突出显示的 3D 对象。有没有办法直接实现这一点或在 SCNNode 上画一个边界?

最佳答案

您需要向 sceneView 添加点击手势识别器.

// add a tap gesture recognizer
let tapGesture = UITapGestureRecognizer(target: self, action: #selector(handleTap(_:)))
scnView.addGestureRecognizer(tapGesture)

然后,处理水龙头并突出显示节点:
@objc
func handleTap(_ gestureRecognize: UIGestureRecognizer) {
// retrieve the SCNView
let scnView = self.view as! SCNView

// check what nodes are tapped
let p = gestureRecognize.location(in: scnView)
let hitResults = scnView.hitTest(p, options: [:])
// check that we clicked on at least one object
if hitResults.count > 0 {
// retrieved the first clicked object
let result = hitResults[0]

// get its material
let material = result.node.geometry!.firstMaterial!

// highlight it
SCNTransaction.begin()
SCNTransaction.animationDuration = 0.5

// on completion - unhighlight
SCNTransaction.completionBlock = {
SCNTransaction.begin()
SCNTransaction.animationDuration = 0.5

material.emission.contents = UIColor.black

SCNTransaction.commit()
}

material.emission.contents = UIColor.red

SCNTransaction.commit()
}
}

上面的代码片段突出显示了整个节点。如果这是您要找的,您必须调整它以仅突出显示边框。

免责声明:
此代码直接取自在打开新游戏 ( SceneKit ) 项目时创建的 Xcode 模板代码。

关于scenekit - 如何为 SCNNode 创建边框以指示其在 iOS 11 ARKit-Scenekit 中的选择?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46073981/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com