在 ViewController ARSession 前面添加欢迎 ViewController 屏幕

Adding a Welcome ViewController screen in front of ViewController ARSession

我正在开发一个应用程序,我想添加一个“欢迎!”屏幕上有一个按钮,可以将用户带到 AR 会话。 AR 会话像往常一样在第一个视图控制器上设置。添加提示用户进入 AR 会话的屏幕(不是初始屏幕)的最佳方式是什么? 我尝试创建一个新的 ViewController 并在现有代码之前包含代码,但这对我不起作用。我从来没有真正做过这样的屏幕更改,所以非常感谢任何建议!

import UIKit
import RealityKit
import ARKit
    

 class ViewController: UIViewController, ARSessionDelegate {
     //delay app launch to show splash screen
    func application(_ application: UIApplication, didFinishLaunchingWithOptions 
  launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
        Thread.sleep(forTimeInterval: 3.0)
        // Override point for customization after application launch.
        return true
    }
  //end splash screen delay
  @IBOutlet var arView: ARView!

  override func viewDidLoad() {
    super.viewDidLoad()
 
    arView.session.delegate = self
    
    showModel()
    overlayCoachingView()
    setupARView()
    
    arView.addGestureRecognizer(UITapGestureRecognizer(target: self, action: #selector(handleTap(recognizer:))))
    
}

func showModel(){
    
    let anchorEntity = AnchorEntity(plane: .horizontal, minimumBounds:[0.7, 0.7])
    
   anchorEntity.scale = [0.2, 0.2, 0.2]
    
    let entity = try! Entity.loadModel(named: "COW_ANIMATIONS")
    entity.setParent(anchorEntity)
    
    arView.scene.addAnchor(anchorEntity)
    

}
//Overlay coaching view "adjust iphone scan"
func overlayCoachingView () {
    
    let coachingView = ARCoachingOverlayView(frame: CGRect(x: 0, y: 0, width: 
 arView.frame.width, height: arView.frame.height))
    
    coachingView.session = arView.session
    coachingView.activatesAutomatically = true
    coachingView.goal = .horizontalPlane
    
    view.addSubview(coachingView)
    
}//end overlay
    

func setupARView(){
    arView.automaticallyConfigureSession = false
    let configuration = ARWorldTrackingConfiguration()
    configuration.planeDetection = [.horizontal, .vertical]
    configuration.environmentTexturing = .automatic
    arView.session.run(configuration)
}

//object placement

@objc
func handleTap(recognizer: UITapGestureRecognizer){
    let location = recognizer.location(in:arView)
    
    let results = arView.raycast(from: location, allowing: .estimatedPlane, alignment: .horizontal)
    
    if let firstResult = results.first {
        let brownCowAnchor = ARAnchor(name: "COW_ANIMATIONS", transform: firstResult.worldTransform)
        arView.session.add(anchor: brownCowAnchor)
    } else {
        print("Object placement failed - couldn't find surface.")
        
        
        
        //cow animations
        //let robot = try! ModelEntity.load(named: "COW_ANIMATIONS")
       let brownCowAnchor = AnchorEntity()
        let blackCowAnchor = AnchorEntity()
  
        //anchor.children.append(robot)
        //arView.scene.anchors.append(anchor)

        //robot.playAnimation(robot.availableAnimations[0].repeat(duration: .infinity),
                                                      //transitionDuration: 0.5,
                                                            //startsPaused: false)
        
        //start cow animation
        
        
        let brownCow = try! ModelEntity.load(named: "COW_ANIMATIONS")
        let blackCow = try! ModelEntity.load(named: "Cow")

        brownCow.position.x = -1.0
        blackCow.position.x = 1.0
        brownCowAnchor.position.z = -2.0
        blackCowAnchor.position.z = -2.0
        brownCow.setParent(brownCowAnchor)
        blackCow.setParent(blackCowAnchor)
        arView.scene.anchors.append(brownCowAnchor)
        arView.scene.anchors.append(blackCowAnchor)
        
        let cowAnimationResource = brownCow.availableAnimations[0]
        let horseAnimationResource = blackCow.availableAnimations[0]

        brownCow.playAnimation(cowAnimationResource.repeat(duration: .infinity),
                                            transitionDuration: 1.25,
                                                  startsPaused: false)

        blackCow.playAnimation(horseAnimationResource.repeat(duration: .infinity),
                                                transitionDuration: 0.75,
                                                      startsPaused: false)
        
        //end cow animations
    }
  }
  
  func placeObject(named entityName: String, for anchor: ARAnchor)  {
    let entity = try! ModelEntity.loadModel(named: entityName)
    
    entity.generateCollisionShapes(recursive: true)
    arView.installGestures([.rotation, .translation], for: entity)
    
    
    let anchorEntity = AnchorEntity(anchor: anchor)
    anchorEntity.addChild(entity)
    arView.scene.addAnchor(anchorEntity)
    
    
   }
 }

首先,您可以拖动故事板中的箭头来设置您的初始视图控制器。

然后,为欢迎屏幕制作一个新的 UIViewController class。

class WelcomeViewController: UIViewController {


}

然后,在故事板中,将欢迎视图控制器设置为 WelcomeViewController class。

通过 @IBAction 将“开始”按钮连接到 WelcomeViewController

@IBAction 内,执行此操作:

@IBAction func goPressed(_ sender: Any) {
    let storyboard = UIStoryboard(name: "Main", bundle: nil)
    if let viewController = storyboard.instantiateViewController(withIdentifier: "ViewController") as? ViewController {
        self.present(viewController, animated: true, completion: nil) /// present the view controller (the one with the ARKit)!
    }
}

然后,回到故事板,将 Storyboard ID 设置到主视图控制器(带有 ARSCNView 的那个)到 ViewController:

就是这样!