├── ARKitLightEstimation.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ ├── jayvennhan.xcuserdatad │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ │ └── xcschememanagement.plist │ └── simon.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── ARKitLightEstimation ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist └── ViewController.swift ├── ARKitLightEstimationStarter.zip └── README.md /ARKitLightEstimation.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/ARKitLightEstimationDemo/HEAD/ARKitLightEstimation.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ARKitLightEstimation.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/ARKitLightEstimationDemo/HEAD/ARKitLightEstimation.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ARKitLightEstimation.xcodeproj/xcuserdata/jayvennhan.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/ARKitLightEstimationDemo/HEAD/ARKitLightEstimation.xcodeproj/xcuserdata/jayvennhan.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /ARKitLightEstimation.xcodeproj/xcuserdata/jayvennhan.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/ARKitLightEstimationDemo/HEAD/ARKitLightEstimation.xcodeproj/xcuserdata/jayvennhan.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ARKitLightEstimation.xcodeproj/xcuserdata/simon.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/ARKitLightEstimationDemo/HEAD/ARKitLightEstimation.xcodeproj/xcuserdata/simon.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ARKitLightEstimation/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/ARKitLightEstimationDemo/HEAD/ARKitLightEstimation/AppDelegate.swift -------------------------------------------------------------------------------- /ARKitLightEstimation/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/ARKitLightEstimationDemo/HEAD/ARKitLightEstimation/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ARKitLightEstimation/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/ARKitLightEstimationDemo/HEAD/ARKitLightEstimation/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ARKitLightEstimation/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/ARKitLightEstimationDemo/HEAD/ARKitLightEstimation/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ARKitLightEstimation/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/ARKitLightEstimationDemo/HEAD/ARKitLightEstimation/Info.plist -------------------------------------------------------------------------------- /ARKitLightEstimation/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/ARKitLightEstimationDemo/HEAD/ARKitLightEstimation/ViewController.swift -------------------------------------------------------------------------------- /ARKitLightEstimationStarter.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/ARKitLightEstimationDemo/HEAD/ARKitLightEstimationStarter.zip -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/ARKitLightEstimationDemo/HEAD/README.md --------------------------------------------------------------------------------