Measure
Measure copied to clipboard
ARWorldTrackingSessionConfiguration cannot be found
In the ViewController.swift fileprivate lazy var sessionConfiguration = ARWorldTrackingConfiguration()
raise a compile error.
ARWorldTrackingConfiguration()
worked for me.
However the app failed to run on my device because of some other error.
Replace it with AROrientationTrackingConfiguration works for me. For reference : https://stackoverflow.com/questions/46320198/arsessionconfiguration-unresolved-in-xcode-9-gm
Replace the line:
fileprivate lazy var sessionConfiguration = ARWorldTrackingSessionConfiguration()
with:
fileprivate lazy var sessionConfiguration = ARWorldTrackingConfiguration()