├── .github └── FUNDING.yml ├── .gitignore ├── Cartfile ├── Cartfile.resolved ├── GLTFQuickLook.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ └── GLTFQuickLook.xcscheme ├── GLTFQuickLook ├── CreateSnapshot.h ├── CreateSnapshot.m ├── GeneratePreviewForURL.m ├── GenerateThumbnailForURL.m ├── Info.plist └── main.c ├── LICENSE ├── README.md ├── screenshot.png └── screenshot2.gif /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicien/GLTFQuickLook/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicien/GLTFQuickLook/HEAD/.gitignore -------------------------------------------------------------------------------- /Cartfile: -------------------------------------------------------------------------------- 1 | github "magicien/GLTFSceneKit" 2 | -------------------------------------------------------------------------------- /Cartfile.resolved: -------------------------------------------------------------------------------- 1 | github "magicien/GLTFSceneKit" "v0.1.3" 2 | -------------------------------------------------------------------------------- /GLTFQuickLook.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicien/GLTFQuickLook/HEAD/GLTFQuickLook.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /GLTFQuickLook.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicien/GLTFQuickLook/HEAD/GLTFQuickLook.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /GLTFQuickLook.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicien/GLTFQuickLook/HEAD/GLTFQuickLook.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /GLTFQuickLook.xcodeproj/xcshareddata/xcschemes/GLTFQuickLook.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicien/GLTFQuickLook/HEAD/GLTFQuickLook.xcodeproj/xcshareddata/xcschemes/GLTFQuickLook.xcscheme -------------------------------------------------------------------------------- /GLTFQuickLook/CreateSnapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicien/GLTFQuickLook/HEAD/GLTFQuickLook/CreateSnapshot.h -------------------------------------------------------------------------------- /GLTFQuickLook/CreateSnapshot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicien/GLTFQuickLook/HEAD/GLTFQuickLook/CreateSnapshot.m -------------------------------------------------------------------------------- /GLTFQuickLook/GeneratePreviewForURL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicien/GLTFQuickLook/HEAD/GLTFQuickLook/GeneratePreviewForURL.m -------------------------------------------------------------------------------- /GLTFQuickLook/GenerateThumbnailForURL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicien/GLTFQuickLook/HEAD/GLTFQuickLook/GenerateThumbnailForURL.m -------------------------------------------------------------------------------- /GLTFQuickLook/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicien/GLTFQuickLook/HEAD/GLTFQuickLook/Info.plist -------------------------------------------------------------------------------- /GLTFQuickLook/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicien/GLTFQuickLook/HEAD/GLTFQuickLook/main.c -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicien/GLTFQuickLook/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicien/GLTFQuickLook/HEAD/README.md -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicien/GLTFQuickLook/HEAD/screenshot.png -------------------------------------------------------------------------------- /screenshot2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicien/GLTFQuickLook/HEAD/screenshot2.gif --------------------------------------------------------------------------------