20 lines
489 B
Swift
20 lines
489 B
Swift
//
|
|
// UIDevice+Processor.swift
|
|
// Delta
|
|
//
|
|
// Created by Riley Testut on 9/21/19.
|
|
// Copyright © 2019 Riley Testut. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
import ARKit
|
|
|
|
extension UIDevice
|
|
{
|
|
var hasA9ProcessorOrBetter: Bool {
|
|
// ARKit is only supported by devices with an A9 processor or better, according to the documentation.
|
|
// https://developer.apple.com/documentation/arkit/arconfiguration/2923553-issupported
|
|
return ARConfiguration.isSupported
|
|
}
|
|
}
|