├── .gitignore ├── LICENSE ├── README.md ├── Resources ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ └── restart.imageset │ │ ├── Contents.json │ │ ├── refresh@2x.png │ │ └── refresh@3x.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── Settings.bundle │ ├── Root.plist │ └── en.lproj │ │ └── Root.strings ├── art.scnassets │ └── texture.png └── freeVideo.mp4 ├── WallStreaming.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── konrad.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── WallStreaming ├── AVPlayer+Debugging.swift ├── AppDelegate.swift ├── VideoPlayer.swift ├── ViewController.swift └── VirtualWall.swift └── exampleVideo.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bersaelor/WallStreaming/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bersaelor/WallStreaming/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bersaelor/WallStreaming/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bersaelor/WallStreaming/HEAD/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bersaelor/WallStreaming/HEAD/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Resources/Assets.xcassets/restart.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bersaelor/WallStreaming/HEAD/Resources/Assets.xcassets/restart.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets.xcassets/restart.imageset/refresh@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bersaelor/WallStreaming/HEAD/Resources/Assets.xcassets/restart.imageset/refresh@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/restart.imageset/refresh@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bersaelor/WallStreaming/HEAD/Resources/Assets.xcassets/restart.imageset/refresh@3x.png -------------------------------------------------------------------------------- /Resources/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bersaelor/WallStreaming/HEAD/Resources/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Resources/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bersaelor/WallStreaming/HEAD/Resources/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bersaelor/WallStreaming/HEAD/Resources/Info.plist -------------------------------------------------------------------------------- /Resources/Settings.bundle/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bersaelor/WallStreaming/HEAD/Resources/Settings.bundle/Root.plist -------------------------------------------------------------------------------- /Resources/Settings.bundle/en.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bersaelor/WallStreaming/HEAD/Resources/Settings.bundle/en.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/art.scnassets/texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bersaelor/WallStreaming/HEAD/Resources/art.scnassets/texture.png -------------------------------------------------------------------------------- /Resources/freeVideo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bersaelor/WallStreaming/HEAD/Resources/freeVideo.mp4 -------------------------------------------------------------------------------- /WallStreaming.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bersaelor/WallStreaming/HEAD/WallStreaming.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /WallStreaming.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bersaelor/WallStreaming/HEAD/WallStreaming.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /WallStreaming.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bersaelor/WallStreaming/HEAD/WallStreaming.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /WallStreaming.xcodeproj/xcuserdata/konrad.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bersaelor/WallStreaming/HEAD/WallStreaming.xcodeproj/xcuserdata/konrad.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /WallStreaming/AVPlayer+Debugging.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bersaelor/WallStreaming/HEAD/WallStreaming/AVPlayer+Debugging.swift -------------------------------------------------------------------------------- /WallStreaming/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bersaelor/WallStreaming/HEAD/WallStreaming/AppDelegate.swift -------------------------------------------------------------------------------- /WallStreaming/VideoPlayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bersaelor/WallStreaming/HEAD/WallStreaming/VideoPlayer.swift -------------------------------------------------------------------------------- /WallStreaming/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bersaelor/WallStreaming/HEAD/WallStreaming/ViewController.swift -------------------------------------------------------------------------------- /WallStreaming/VirtualWall.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bersaelor/WallStreaming/HEAD/WallStreaming/VirtualWall.swift -------------------------------------------------------------------------------- /exampleVideo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bersaelor/WallStreaming/HEAD/exampleVideo.gif --------------------------------------------------------------------------------