├── .gitattributes ├── .gitignore ├── Example ├── ParticlesLoadingView.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── ParticlesLoadingView-Example.xcscheme ├── ParticlesLoadingView.xcworkspace │ └── contents.xcworkspacedata ├── ParticlesLoadingView │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── Spark.sks │ ├── ViewController.swift │ └── spark.png ├── Podfile ├── Podfile.lock └── Pods │ ├── Local Podspecs │ └── ParticlesLoadingView.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── Target Support Files │ ├── ParticlesLoadingView │ ├── Info.plist │ ├── ParticlesLoadingView-dummy.m │ ├── ParticlesLoadingView-prefix.pch │ ├── ParticlesLoadingView-umbrella.h │ ├── ParticlesLoadingView.modulemap │ ├── ParticlesLoadingView.xcconfig │ └── ResourceBundle-ParticlesLoadingView-Info.plist │ └── Pods-ParticlesLoadingView_Example │ ├── Info.plist │ ├── Pods-ParticlesLoadingView_Example-acknowledgements.markdown │ ├── Pods-ParticlesLoadingView_Example-acknowledgements.plist │ ├── Pods-ParticlesLoadingView_Example-dummy.m │ ├── Pods-ParticlesLoadingView_Example-frameworks.sh │ ├── Pods-ParticlesLoadingView_Example-resources.sh │ ├── Pods-ParticlesLoadingView_Example-umbrella.h │ ├── Pods-ParticlesLoadingView_Example.debug.xcconfig │ ├── Pods-ParticlesLoadingView_Example.modulemap │ └── Pods-ParticlesLoadingView_Example.release.xcconfig ├── LICENSE ├── ParticlesLoadingView.podspec ├── Pod ├── Assets │ ├── .gitkeep │ ├── Bokeh.sks │ ├── Fire.sks │ ├── Laser.sks │ ├── Spark.sks │ └── spark.png └── Classes │ ├── .gitkeep │ ├── EmitterCreator.swift │ ├── ParticleEffect.swift │ ├── ParticlesLoadingView.swift │ ├── ParticlesScene.swift │ └── UIView+ParticlesAnimation.swift ├── README.md ├── Resources └── ParticlesEmitterEditor.png └── _Pods.xcodeproj /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sh linguist-language=Swift 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalestraPatrick/ParticlesLoadingView/HEAD/.gitignore -------------------------------------------------------------------------------- /Example/ParticlesLoadingView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalestraPatrick/ParticlesLoadingView/HEAD/Example/ParticlesLoadingView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/ParticlesLoadingView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalestraPatrick/ParticlesLoadingView/HEAD/Example/ParticlesLoadingView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/ParticlesLoadingView.xcodeproj/xcshareddata/xcschemes/ParticlesLoadingView-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalestraPatrick/ParticlesLoadingView/HEAD/Example/ParticlesLoadingView.xcodeproj/xcshareddata/xcschemes/ParticlesLoadingView-Example.xcscheme -------------------------------------------------------------------------------- /Example/ParticlesLoadingView.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalestraPatrick/ParticlesLoadingView/HEAD/Example/ParticlesLoadingView.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/ParticlesLoadingView/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalestraPatrick/ParticlesLoadingView/HEAD/Example/ParticlesLoadingView/AppDelegate.swift -------------------------------------------------------------------------------- /Example/ParticlesLoadingView/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalestraPatrick/ParticlesLoadingView/HEAD/Example/ParticlesLoadingView/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/ParticlesLoadingView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalestraPatrick/ParticlesLoadingView/HEAD/Example/ParticlesLoadingView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/ParticlesLoadingView/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalestraPatrick/ParticlesLoadingView/HEAD/Example/ParticlesLoadingView/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/ParticlesLoadingView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalestraPatrick/ParticlesLoadingView/HEAD/Example/ParticlesLoadingView/Info.plist -------------------------------------------------------------------------------- /Example/ParticlesLoadingView/Spark.sks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalestraPatrick/ParticlesLoadingView/HEAD/Example/ParticlesLoadingView/Spark.sks -------------------------------------------------------------------------------- /Example/ParticlesLoadingView/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalestraPatrick/ParticlesLoadingView/HEAD/Example/ParticlesLoadingView/ViewController.swift -------------------------------------------------------------------------------- /Example/ParticlesLoadingView/spark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalestraPatrick/ParticlesLoadingView/HEAD/Example/ParticlesLoadingView/spark.png -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalestraPatrick/ParticlesLoadingView/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalestraPatrick/ParticlesLoadingView/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/ParticlesLoadingView.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalestraPatrick/ParticlesLoadingView/HEAD/Example/Pods/Local Podspecs/ParticlesLoadingView.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalestraPatrick/ParticlesLoadingView/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalestraPatrick/ParticlesLoadingView/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalestraPatrick/ParticlesLoadingView/HEAD/Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ParticlesLoadingView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalestraPatrick/ParticlesLoadingView/HEAD/Example/Pods/Target Support Files/ParticlesLoadingView/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ParticlesLoadingView/ParticlesLoadingView-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalestraPatrick/ParticlesLoadingView/HEAD/Example/Pods/Target Support Files/ParticlesLoadingView/ParticlesLoadingView-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ParticlesLoadingView/ParticlesLoadingView-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalestraPatrick/ParticlesLoadingView/HEAD/Example/Pods/Target Support Files/ParticlesLoadingView/ParticlesLoadingView-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ParticlesLoadingView/ParticlesLoadingView-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalestraPatrick/ParticlesLoadingView/HEAD/Example/Pods/Target Support Files/ParticlesLoadingView/ParticlesLoadingView-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ParticlesLoadingView/ParticlesLoadingView.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalestraPatrick/ParticlesLoadingView/HEAD/Example/Pods/Target Support Files/ParticlesLoadingView/ParticlesLoadingView.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ParticlesLoadingView/ParticlesLoadingView.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalestraPatrick/ParticlesLoadingView/HEAD/Example/Pods/Target Support Files/ParticlesLoadingView/ParticlesLoadingView.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ParticlesLoadingView/ResourceBundle-ParticlesLoadingView-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalestraPatrick/ParticlesLoadingView/HEAD/Example/Pods/Target Support Files/ParticlesLoadingView/ResourceBundle-ParticlesLoadingView-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ParticlesLoadingView_Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalestraPatrick/ParticlesLoadingView/HEAD/Example/Pods/Target Support Files/Pods-ParticlesLoadingView_Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ParticlesLoadingView_Example/Pods-ParticlesLoadingView_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalestraPatrick/ParticlesLoadingView/HEAD/Example/Pods/Target Support Files/Pods-ParticlesLoadingView_Example/Pods-ParticlesLoadingView_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ParticlesLoadingView_Example/Pods-ParticlesLoadingView_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalestraPatrick/ParticlesLoadingView/HEAD/Example/Pods/Target Support Files/Pods-ParticlesLoadingView_Example/Pods-ParticlesLoadingView_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ParticlesLoadingView_Example/Pods-ParticlesLoadingView_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalestraPatrick/ParticlesLoadingView/HEAD/Example/Pods/Target Support Files/Pods-ParticlesLoadingView_Example/Pods-ParticlesLoadingView_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ParticlesLoadingView_Example/Pods-ParticlesLoadingView_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalestraPatrick/ParticlesLoadingView/HEAD/Example/Pods/Target Support Files/Pods-ParticlesLoadingView_Example/Pods-ParticlesLoadingView_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ParticlesLoadingView_Example/Pods-ParticlesLoadingView_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalestraPatrick/ParticlesLoadingView/HEAD/Example/Pods/Target Support Files/Pods-ParticlesLoadingView_Example/Pods-ParticlesLoadingView_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ParticlesLoadingView_Example/Pods-ParticlesLoadingView_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalestraPatrick/ParticlesLoadingView/HEAD/Example/Pods/Target Support Files/Pods-ParticlesLoadingView_Example/Pods-ParticlesLoadingView_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ParticlesLoadingView_Example/Pods-ParticlesLoadingView_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalestraPatrick/ParticlesLoadingView/HEAD/Example/Pods/Target Support Files/Pods-ParticlesLoadingView_Example/Pods-ParticlesLoadingView_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ParticlesLoadingView_Example/Pods-ParticlesLoadingView_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalestraPatrick/ParticlesLoadingView/HEAD/Example/Pods/Target Support Files/Pods-ParticlesLoadingView_Example/Pods-ParticlesLoadingView_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ParticlesLoadingView_Example/Pods-ParticlesLoadingView_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalestraPatrick/ParticlesLoadingView/HEAD/Example/Pods/Target Support Files/Pods-ParticlesLoadingView_Example/Pods-ParticlesLoadingView_Example.release.xcconfig -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalestraPatrick/ParticlesLoadingView/HEAD/LICENSE -------------------------------------------------------------------------------- /ParticlesLoadingView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalestraPatrick/ParticlesLoadingView/HEAD/ParticlesLoadingView.podspec -------------------------------------------------------------------------------- /Pod/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Assets/Bokeh.sks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalestraPatrick/ParticlesLoadingView/HEAD/Pod/Assets/Bokeh.sks -------------------------------------------------------------------------------- /Pod/Assets/Fire.sks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalestraPatrick/ParticlesLoadingView/HEAD/Pod/Assets/Fire.sks -------------------------------------------------------------------------------- /Pod/Assets/Laser.sks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalestraPatrick/ParticlesLoadingView/HEAD/Pod/Assets/Laser.sks -------------------------------------------------------------------------------- /Pod/Assets/Spark.sks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalestraPatrick/ParticlesLoadingView/HEAD/Pod/Assets/Spark.sks -------------------------------------------------------------------------------- /Pod/Assets/spark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalestraPatrick/ParticlesLoadingView/HEAD/Pod/Assets/spark.png -------------------------------------------------------------------------------- /Pod/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/EmitterCreator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalestraPatrick/ParticlesLoadingView/HEAD/Pod/Classes/EmitterCreator.swift -------------------------------------------------------------------------------- /Pod/Classes/ParticleEffect.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalestraPatrick/ParticlesLoadingView/HEAD/Pod/Classes/ParticleEffect.swift -------------------------------------------------------------------------------- /Pod/Classes/ParticlesLoadingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalestraPatrick/ParticlesLoadingView/HEAD/Pod/Classes/ParticlesLoadingView.swift -------------------------------------------------------------------------------- /Pod/Classes/ParticlesScene.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalestraPatrick/ParticlesLoadingView/HEAD/Pod/Classes/ParticlesScene.swift -------------------------------------------------------------------------------- /Pod/Classes/UIView+ParticlesAnimation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalestraPatrick/ParticlesLoadingView/HEAD/Pod/Classes/UIView+ParticlesAnimation.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalestraPatrick/ParticlesLoadingView/HEAD/README.md -------------------------------------------------------------------------------- /Resources/ParticlesEmitterEditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BalestraPatrick/ParticlesLoadingView/HEAD/Resources/ParticlesEmitterEditor.png -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------