├── MetalParticles.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── MetalParticles ├── AppDelegate.swift ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Info.plist ├── MarkerWidget.swift ├── ParticleLab.swift ├── Particles.metal ├── ViewController.swift └── hamburger.png ├── MetalParticlesTests ├── Info.plist └── MetalParticlesTests.swift └── README.md /MetalParticles.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlexMonkey/ParticleLab/HEAD/MetalParticles.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MetalParticles.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlexMonkey/ParticleLab/HEAD/MetalParticles.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /MetalParticles/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlexMonkey/ParticleLab/HEAD/MetalParticles/AppDelegate.swift -------------------------------------------------------------------------------- /MetalParticles/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlexMonkey/ParticleLab/HEAD/MetalParticles/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /MetalParticles/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlexMonkey/ParticleLab/HEAD/MetalParticles/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /MetalParticles/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlexMonkey/ParticleLab/HEAD/MetalParticles/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /MetalParticles/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlexMonkey/ParticleLab/HEAD/MetalParticles/Info.plist -------------------------------------------------------------------------------- /MetalParticles/MarkerWidget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlexMonkey/ParticleLab/HEAD/MetalParticles/MarkerWidget.swift -------------------------------------------------------------------------------- /MetalParticles/ParticleLab.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlexMonkey/ParticleLab/HEAD/MetalParticles/ParticleLab.swift -------------------------------------------------------------------------------- /MetalParticles/Particles.metal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlexMonkey/ParticleLab/HEAD/MetalParticles/Particles.metal -------------------------------------------------------------------------------- /MetalParticles/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlexMonkey/ParticleLab/HEAD/MetalParticles/ViewController.swift -------------------------------------------------------------------------------- /MetalParticles/hamburger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlexMonkey/ParticleLab/HEAD/MetalParticles/hamburger.png -------------------------------------------------------------------------------- /MetalParticlesTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlexMonkey/ParticleLab/HEAD/MetalParticlesTests/Info.plist -------------------------------------------------------------------------------- /MetalParticlesTests/MetalParticlesTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlexMonkey/ParticleLab/HEAD/MetalParticlesTests/MetalParticlesTests.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlexMonkey/ParticleLab/HEAD/README.md --------------------------------------------------------------------------------