Skip to content

Commit

Permalink
Merge pull request #95 from adrgrondin/master
Browse files Browse the repository at this point in the history
Fix a switch statement not being exhaustive after ARKit 1.5 update
  • Loading branch information
aaronbrethorst committed May 26, 2018
2 parents ec75b28 + 63fb91d commit 2fd1ee7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ARKit+CoreLocation/Source/SceneLocationView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -486,6 +486,8 @@ public class SceneLocationView: ARSCNView, ARSCNViewDelegate {
print("camera did change tracking state: normal")
case .notAvailable:
print("camera did change tracking state: not available")
case .limited(.relocalizing):
print("camera did change tracking state: limited, relocalizing")
}
}
}
Expand Down

0 comments on commit 2fd1ee7

Please sign in to comment.