Measure icon indicating copy to clipboard operation
Measure copied to clipboard

ARWorldTrackingSessionConfiguration cannot be found

Open dannliu opened this issue 7 years ago • 3 comments

In the ViewController.swift fileprivate lazy var sessionConfiguration = ARWorldTrackingConfiguration() raise a compile error.

dannliu avatar Oct 17 '17 02:10 dannliu

ARWorldTrackingConfiguration() worked for me. However the app failed to run on my device because of some other error.

hoonahn avatar Dec 04 '17 08:12 hoonahn

Replace it with AROrientationTrackingConfiguration works for me. For reference : https://stackoverflow.com/questions/46320198/arsessionconfiguration-unresolved-in-xcode-9-gm

ankitjaiswal1994 avatar Apr 09 '18 11:04 ankitjaiswal1994

Replace the line:

fileprivate lazy var sessionConfiguration = ARWorldTrackingSessionConfiguration()

with:

fileprivate lazy var sessionConfiguration = ARWorldTrackingConfiguration()

ad-okshaj avatar Apr 29 '24 06:04 ad-okshaj