├── .gitignore ├── Classes ├── FileUtil.swift ├── Logger.swift ├── PhotosUtil.swift ├── UIImage+VideoRender.swift └── VideoRenderer.swift ├── LICENSE ├── README.md ├── README.png ├── SceneKit2Video.podspec ├── SceneKit2Video.xcodeproj ├── project.pbxproj └── xcshareddata │ └── xcschemes │ └── SceneKit2Video.xcscheme └── SceneKit2Video ├── AppDelegate.swift ├── Assets.xcassets ├── AppIcon.appiconset │ └── Contents.json ├── Contents.json └── demo-overlay.imageset │ ├── Contents.json │ └── demo-overlay.png ├── Base.lproj ├── LaunchScreen.storyboard └── Main.storyboard ├── DemoCubeScene.swift ├── Info.plist └── ViewController.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacyrhoades/SceneKit2Video/HEAD/.gitignore -------------------------------------------------------------------------------- /Classes/FileUtil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacyrhoades/SceneKit2Video/HEAD/Classes/FileUtil.swift -------------------------------------------------------------------------------- /Classes/Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacyrhoades/SceneKit2Video/HEAD/Classes/Logger.swift -------------------------------------------------------------------------------- /Classes/PhotosUtil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacyrhoades/SceneKit2Video/HEAD/Classes/PhotosUtil.swift -------------------------------------------------------------------------------- /Classes/UIImage+VideoRender.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacyrhoades/SceneKit2Video/HEAD/Classes/UIImage+VideoRender.swift -------------------------------------------------------------------------------- /Classes/VideoRenderer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacyrhoades/SceneKit2Video/HEAD/Classes/VideoRenderer.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacyrhoades/SceneKit2Video/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacyrhoades/SceneKit2Video/HEAD/README.md -------------------------------------------------------------------------------- /README.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacyrhoades/SceneKit2Video/HEAD/README.png -------------------------------------------------------------------------------- /SceneKit2Video.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacyrhoades/SceneKit2Video/HEAD/SceneKit2Video.podspec -------------------------------------------------------------------------------- /SceneKit2Video.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacyrhoades/SceneKit2Video/HEAD/SceneKit2Video.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SceneKit2Video.xcodeproj/xcshareddata/xcschemes/SceneKit2Video.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacyrhoades/SceneKit2Video/HEAD/SceneKit2Video.xcodeproj/xcshareddata/xcschemes/SceneKit2Video.xcscheme -------------------------------------------------------------------------------- /SceneKit2Video/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacyrhoades/SceneKit2Video/HEAD/SceneKit2Video/AppDelegate.swift -------------------------------------------------------------------------------- /SceneKit2Video/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacyrhoades/SceneKit2Video/HEAD/SceneKit2Video/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SceneKit2Video/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacyrhoades/SceneKit2Video/HEAD/SceneKit2Video/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SceneKit2Video/Assets.xcassets/demo-overlay.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacyrhoades/SceneKit2Video/HEAD/SceneKit2Video/Assets.xcassets/demo-overlay.imageset/Contents.json -------------------------------------------------------------------------------- /SceneKit2Video/Assets.xcassets/demo-overlay.imageset/demo-overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacyrhoades/SceneKit2Video/HEAD/SceneKit2Video/Assets.xcassets/demo-overlay.imageset/demo-overlay.png -------------------------------------------------------------------------------- /SceneKit2Video/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacyrhoades/SceneKit2Video/HEAD/SceneKit2Video/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SceneKit2Video/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacyrhoades/SceneKit2Video/HEAD/SceneKit2Video/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SceneKit2Video/DemoCubeScene.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacyrhoades/SceneKit2Video/HEAD/SceneKit2Video/DemoCubeScene.swift -------------------------------------------------------------------------------- /SceneKit2Video/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacyrhoades/SceneKit2Video/HEAD/SceneKit2Video/Info.plist -------------------------------------------------------------------------------- /SceneKit2Video/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacyrhoades/SceneKit2Video/HEAD/SceneKit2Video/ViewController.swift --------------------------------------------------------------------------------