├── .gitignore ├── README.md ├── VR-iOS-Experiment.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── VR-iOS-Experiment ├── AppDelegate.swift ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── FireParticles.scnp ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Info.plist ├── ViewController.swift ├── checkerboard_pattern.png └── spark.png ├── VR-iOS-ExperimentTests ├── Info.plist └── VR_iOS_ExperimentTests.swift └── screenshot.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjs/VR-iOS-Experiment/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjs/VR-iOS-Experiment/HEAD/README.md -------------------------------------------------------------------------------- /VR-iOS-Experiment.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjs/VR-iOS-Experiment/HEAD/VR-iOS-Experiment.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /VR-iOS-Experiment.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjs/VR-iOS-Experiment/HEAD/VR-iOS-Experiment.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /VR-iOS-Experiment/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjs/VR-iOS-Experiment/HEAD/VR-iOS-Experiment/AppDelegate.swift -------------------------------------------------------------------------------- /VR-iOS-Experiment/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjs/VR-iOS-Experiment/HEAD/VR-iOS-Experiment/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /VR-iOS-Experiment/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjs/VR-iOS-Experiment/HEAD/VR-iOS-Experiment/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /VR-iOS-Experiment/FireParticles.scnp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjs/VR-iOS-Experiment/HEAD/VR-iOS-Experiment/FireParticles.scnp -------------------------------------------------------------------------------- /VR-iOS-Experiment/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjs/VR-iOS-Experiment/HEAD/VR-iOS-Experiment/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /VR-iOS-Experiment/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjs/VR-iOS-Experiment/HEAD/VR-iOS-Experiment/Info.plist -------------------------------------------------------------------------------- /VR-iOS-Experiment/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjs/VR-iOS-Experiment/HEAD/VR-iOS-Experiment/ViewController.swift -------------------------------------------------------------------------------- /VR-iOS-Experiment/checkerboard_pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjs/VR-iOS-Experiment/HEAD/VR-iOS-Experiment/checkerboard_pattern.png -------------------------------------------------------------------------------- /VR-iOS-Experiment/spark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjs/VR-iOS-Experiment/HEAD/VR-iOS-Experiment/spark.png -------------------------------------------------------------------------------- /VR-iOS-ExperimentTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjs/VR-iOS-Experiment/HEAD/VR-iOS-ExperimentTests/Info.plist -------------------------------------------------------------------------------- /VR-iOS-ExperimentTests/VR_iOS_ExperimentTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjs/VR-iOS-Experiment/HEAD/VR-iOS-ExperimentTests/VR_iOS_ExperimentTests.swift -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjs/VR-iOS-Experiment/HEAD/screenshot.png --------------------------------------------------------------------------------