Reality composer のオブジェクトをタップで Xcodeに通知
Reality Composerで編集
Xcodeで編集
import UIKit
import RealityKit
class ViewController: UIViewController {
@IBOutlet var arView: ARView!
override func viewDidLoad() {
super.viewDidLoad()
// Load the "Box" scene from the "Experience" Reality File
let boxAnchor = try! Experience.loadBox()
//追記「tapped」は上記図の赤枠で設定
boxAnchor.actions.tapped.onAction = handleTapOnEntity(_:)
// Add the box anchor to the scene
arView.scene.anchors.append(boxAnchor)
}
//関数を追記
func handleTapOnEntity(_ entity: Entity?) {
guard let entity = entity else { return }
// Do something with entity...
print(entity) //Do something
}
}
Author And Source
この問題について(Reality composer のオブジェクトをタップで Xcodeに通知), 我々は、より多くの情報をここで見つけました https://qiita.com/oberheim/items/e6ad645cf68d6ec8aa06著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .