├── .gitignore ├── ARViewer.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── ARViewer ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── bullet_texture.imageset │ │ ├── Contents.json │ │ └── bullet.1.jpg │ ├── galaxy.imageset │ │ ├── Contents.json │ │ └── galaxy.png │ └── texture.imageset │ │ ├── Contents.json │ │ └── texture.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Bullet.swift ├── Info.plist ├── Ship.swift ├── ViewController.swift ├── collision.mp3 ├── explosion.mp3 ├── explosion.scnp ├── spark.png └── torpedo.mp3 ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farice/ARShooter/HEAD/.gitignore -------------------------------------------------------------------------------- /ARViewer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farice/ARShooter/HEAD/ARViewer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ARViewer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farice/ARShooter/HEAD/ARViewer.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ARViewer/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farice/ARShooter/HEAD/ARViewer/AppDelegate.swift -------------------------------------------------------------------------------- /ARViewer/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farice/ARShooter/HEAD/ARViewer/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ARViewer/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farice/ARShooter/HEAD/ARViewer/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ARViewer/Assets.xcassets/bullet_texture.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farice/ARShooter/HEAD/ARViewer/Assets.xcassets/bullet_texture.imageset/Contents.json -------------------------------------------------------------------------------- /ARViewer/Assets.xcassets/bullet_texture.imageset/bullet.1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farice/ARShooter/HEAD/ARViewer/Assets.xcassets/bullet_texture.imageset/bullet.1.jpg -------------------------------------------------------------------------------- /ARViewer/Assets.xcassets/galaxy.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farice/ARShooter/HEAD/ARViewer/Assets.xcassets/galaxy.imageset/Contents.json -------------------------------------------------------------------------------- /ARViewer/Assets.xcassets/galaxy.imageset/galaxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farice/ARShooter/HEAD/ARViewer/Assets.xcassets/galaxy.imageset/galaxy.png -------------------------------------------------------------------------------- /ARViewer/Assets.xcassets/texture.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farice/ARShooter/HEAD/ARViewer/Assets.xcassets/texture.imageset/Contents.json -------------------------------------------------------------------------------- /ARViewer/Assets.xcassets/texture.imageset/texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farice/ARShooter/HEAD/ARViewer/Assets.xcassets/texture.imageset/texture.png -------------------------------------------------------------------------------- /ARViewer/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farice/ARShooter/HEAD/ARViewer/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ARViewer/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farice/ARShooter/HEAD/ARViewer/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ARViewer/Bullet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farice/ARShooter/HEAD/ARViewer/Bullet.swift -------------------------------------------------------------------------------- /ARViewer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farice/ARShooter/HEAD/ARViewer/Info.plist -------------------------------------------------------------------------------- /ARViewer/Ship.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farice/ARShooter/HEAD/ARViewer/Ship.swift -------------------------------------------------------------------------------- /ARViewer/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farice/ARShooter/HEAD/ARViewer/ViewController.swift -------------------------------------------------------------------------------- /ARViewer/collision.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farice/ARShooter/HEAD/ARViewer/collision.mp3 -------------------------------------------------------------------------------- /ARViewer/explosion.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farice/ARShooter/HEAD/ARViewer/explosion.mp3 -------------------------------------------------------------------------------- /ARViewer/explosion.scnp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farice/ARShooter/HEAD/ARViewer/explosion.scnp -------------------------------------------------------------------------------- /ARViewer/spark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farice/ARShooter/HEAD/ARViewer/spark.png -------------------------------------------------------------------------------- /ARViewer/torpedo.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farice/ARShooter/HEAD/ARViewer/torpedo.mp3 -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farice/ARShooter/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farice/ARShooter/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farice/ARShooter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farice/ARShooter/HEAD/README.md --------------------------------------------------------------------------------