├── ProtoParticle.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── Aymenworks.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── Aymenworks.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── ProtoParticle.xcscheme │ └── xcschememanagement.plist ├── ProtoParticle ├── Animable.swift ├── AnimationType │ ├── DragonAnimation.swift │ ├── FacebookAnimation.swift │ ├── SnowAnimation.swift │ └── VolcanoAnimation.swift ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── angry.imageset │ │ ├── Contents.json │ │ └── angry.png │ ├── circle.imageset │ │ ├── Contents.json │ │ └── circle.png │ ├── dragon.imageset │ │ ├── Contents.json │ │ └── dragon.pdf │ ├── facebookVideo.imageset │ │ ├── Contents.json │ │ └── IMG_7549.PNG │ ├── fire-pdf.imageset │ │ ├── Contents.json │ │ └── fire-pdf.pdf │ ├── fire.imageset │ │ ├── Contents.json │ │ └── fire.png │ ├── haha.imageset │ │ ├── Contents.json │ │ └── haha.png │ ├── like.imageset │ │ ├── Contents.json │ │ └── like.png │ ├── love.imageset │ │ ├── Contents.json │ │ └── love.png │ ├── mountain.imageset │ │ ├── Contents.json │ │ └── mountain.pdf │ ├── notebook.imageset │ │ ├── Contents.json │ │ └── notebook.pdf │ ├── sad.imageset │ │ ├── Contents.json │ │ └── sad.png │ ├── snowing.imageset │ │ ├── Contents.json │ │ └── snowing.png │ ├── thumb-up-fill.imageset │ │ ├── Contents.json │ │ └── thumb-up-fill.pdf │ ├── thumb-up.imageset │ │ ├── Contents.json │ │ └── thumb-up.pdf │ ├── volcano.imageset │ │ ├── Contents.json │ │ └── volcano.pdf │ ├── wow.imageset │ │ ├── Contents.json │ │ └── wow.png │ └── ya.imageset │ │ ├── Contents.json │ │ └── ya.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── BurnViewController.swift ├── DragonViewController.swift ├── FacebookLiveViewController.swift ├── Info.plist └── SnowViewController.swift ├── README.md └── README ├── Demo.gif ├── FacebookLive.png └── Fire.png /ProtoParticle.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymenworks/particle-animations/HEAD/ProtoParticle.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ProtoParticle.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymenworks/particle-animations/HEAD/ProtoParticle.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ProtoParticle.xcodeproj/project.xcworkspace/xcuserdata/Aymenworks.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymenworks/particle-animations/HEAD/ProtoParticle.xcodeproj/project.xcworkspace/xcuserdata/Aymenworks.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ProtoParticle.xcodeproj/xcuserdata/Aymenworks.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymenworks/particle-animations/HEAD/ProtoParticle.xcodeproj/xcuserdata/Aymenworks.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /ProtoParticle.xcodeproj/xcuserdata/Aymenworks.xcuserdatad/xcschemes/ProtoParticle.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymenworks/particle-animations/HEAD/ProtoParticle.xcodeproj/xcuserdata/Aymenworks.xcuserdatad/xcschemes/ProtoParticle.xcscheme -------------------------------------------------------------------------------- /ProtoParticle.xcodeproj/xcuserdata/Aymenworks.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymenworks/particle-animations/HEAD/ProtoParticle.xcodeproj/xcuserdata/Aymenworks.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ProtoParticle/Animable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymenworks/particle-animations/HEAD/ProtoParticle/Animable.swift -------------------------------------------------------------------------------- /ProtoParticle/AnimationType/DragonAnimation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymenworks/particle-animations/HEAD/ProtoParticle/AnimationType/DragonAnimation.swift -------------------------------------------------------------------------------- /ProtoParticle/AnimationType/FacebookAnimation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymenworks/particle-animations/HEAD/ProtoParticle/AnimationType/FacebookAnimation.swift -------------------------------------------------------------------------------- /ProtoParticle/AnimationType/SnowAnimation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymenworks/particle-animations/HEAD/ProtoParticle/AnimationType/SnowAnimation.swift -------------------------------------------------------------------------------- /ProtoParticle/AnimationType/VolcanoAnimation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymenworks/particle-animations/HEAD/ProtoParticle/AnimationType/VolcanoAnimation.swift -------------------------------------------------------------------------------- /ProtoParticle/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymenworks/particle-animations/HEAD/ProtoParticle/AppDelegate.swift -------------------------------------------------------------------------------- /ProtoParticle/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymenworks/particle-animations/HEAD/ProtoParticle/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ProtoParticle/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymenworks/particle-animations/HEAD/ProtoParticle/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ProtoParticle/Assets.xcassets/angry.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymenworks/particle-animations/HEAD/ProtoParticle/Assets.xcassets/angry.imageset/Contents.json -------------------------------------------------------------------------------- /ProtoParticle/Assets.xcassets/angry.imageset/angry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymenworks/particle-animations/HEAD/ProtoParticle/Assets.xcassets/angry.imageset/angry.png -------------------------------------------------------------------------------- /ProtoParticle/Assets.xcassets/circle.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymenworks/particle-animations/HEAD/ProtoParticle/Assets.xcassets/circle.imageset/Contents.json -------------------------------------------------------------------------------- /ProtoParticle/Assets.xcassets/circle.imageset/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymenworks/particle-animations/HEAD/ProtoParticle/Assets.xcassets/circle.imageset/circle.png -------------------------------------------------------------------------------- /ProtoParticle/Assets.xcassets/dragon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymenworks/particle-animations/HEAD/ProtoParticle/Assets.xcassets/dragon.imageset/Contents.json -------------------------------------------------------------------------------- /ProtoParticle/Assets.xcassets/dragon.imageset/dragon.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymenworks/particle-animations/HEAD/ProtoParticle/Assets.xcassets/dragon.imageset/dragon.pdf -------------------------------------------------------------------------------- /ProtoParticle/Assets.xcassets/facebookVideo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymenworks/particle-animations/HEAD/ProtoParticle/Assets.xcassets/facebookVideo.imageset/Contents.json -------------------------------------------------------------------------------- /ProtoParticle/Assets.xcassets/facebookVideo.imageset/IMG_7549.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymenworks/particle-animations/HEAD/ProtoParticle/Assets.xcassets/facebookVideo.imageset/IMG_7549.PNG -------------------------------------------------------------------------------- /ProtoParticle/Assets.xcassets/fire-pdf.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymenworks/particle-animations/HEAD/ProtoParticle/Assets.xcassets/fire-pdf.imageset/Contents.json -------------------------------------------------------------------------------- /ProtoParticle/Assets.xcassets/fire-pdf.imageset/fire-pdf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymenworks/particle-animations/HEAD/ProtoParticle/Assets.xcassets/fire-pdf.imageset/fire-pdf.pdf -------------------------------------------------------------------------------- /ProtoParticle/Assets.xcassets/fire.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymenworks/particle-animations/HEAD/ProtoParticle/Assets.xcassets/fire.imageset/Contents.json -------------------------------------------------------------------------------- /ProtoParticle/Assets.xcassets/fire.imageset/fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymenworks/particle-animations/HEAD/ProtoParticle/Assets.xcassets/fire.imageset/fire.png -------------------------------------------------------------------------------- /ProtoParticle/Assets.xcassets/haha.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymenworks/particle-animations/HEAD/ProtoParticle/Assets.xcassets/haha.imageset/Contents.json -------------------------------------------------------------------------------- /ProtoParticle/Assets.xcassets/haha.imageset/haha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymenworks/particle-animations/HEAD/ProtoParticle/Assets.xcassets/haha.imageset/haha.png -------------------------------------------------------------------------------- /ProtoParticle/Assets.xcassets/like.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymenworks/particle-animations/HEAD/ProtoParticle/Assets.xcassets/like.imageset/Contents.json -------------------------------------------------------------------------------- /ProtoParticle/Assets.xcassets/like.imageset/like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymenworks/particle-animations/HEAD/ProtoParticle/Assets.xcassets/like.imageset/like.png -------------------------------------------------------------------------------- /ProtoParticle/Assets.xcassets/love.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymenworks/particle-animations/HEAD/ProtoParticle/Assets.xcassets/love.imageset/Contents.json -------------------------------------------------------------------------------- /ProtoParticle/Assets.xcassets/love.imageset/love.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymenworks/particle-animations/HEAD/ProtoParticle/Assets.xcassets/love.imageset/love.png -------------------------------------------------------------------------------- /ProtoParticle/Assets.xcassets/mountain.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymenworks/particle-animations/HEAD/ProtoParticle/Assets.xcassets/mountain.imageset/Contents.json -------------------------------------------------------------------------------- /ProtoParticle/Assets.xcassets/mountain.imageset/mountain.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymenworks/particle-animations/HEAD/ProtoParticle/Assets.xcassets/mountain.imageset/mountain.pdf -------------------------------------------------------------------------------- /ProtoParticle/Assets.xcassets/notebook.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymenworks/particle-animations/HEAD/ProtoParticle/Assets.xcassets/notebook.imageset/Contents.json -------------------------------------------------------------------------------- /ProtoParticle/Assets.xcassets/notebook.imageset/notebook.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymenworks/particle-animations/HEAD/ProtoParticle/Assets.xcassets/notebook.imageset/notebook.pdf -------------------------------------------------------------------------------- /ProtoParticle/Assets.xcassets/sad.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymenworks/particle-animations/HEAD/ProtoParticle/Assets.xcassets/sad.imageset/Contents.json -------------------------------------------------------------------------------- /ProtoParticle/Assets.xcassets/sad.imageset/sad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymenworks/particle-animations/HEAD/ProtoParticle/Assets.xcassets/sad.imageset/sad.png -------------------------------------------------------------------------------- /ProtoParticle/Assets.xcassets/snowing.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymenworks/particle-animations/HEAD/ProtoParticle/Assets.xcassets/snowing.imageset/Contents.json -------------------------------------------------------------------------------- /ProtoParticle/Assets.xcassets/snowing.imageset/snowing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymenworks/particle-animations/HEAD/ProtoParticle/Assets.xcassets/snowing.imageset/snowing.png -------------------------------------------------------------------------------- /ProtoParticle/Assets.xcassets/thumb-up-fill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymenworks/particle-animations/HEAD/ProtoParticle/Assets.xcassets/thumb-up-fill.imageset/Contents.json -------------------------------------------------------------------------------- /ProtoParticle/Assets.xcassets/thumb-up-fill.imageset/thumb-up-fill.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymenworks/particle-animations/HEAD/ProtoParticle/Assets.xcassets/thumb-up-fill.imageset/thumb-up-fill.pdf -------------------------------------------------------------------------------- /ProtoParticle/Assets.xcassets/thumb-up.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymenworks/particle-animations/HEAD/ProtoParticle/Assets.xcassets/thumb-up.imageset/Contents.json -------------------------------------------------------------------------------- /ProtoParticle/Assets.xcassets/thumb-up.imageset/thumb-up.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymenworks/particle-animations/HEAD/ProtoParticle/Assets.xcassets/thumb-up.imageset/thumb-up.pdf -------------------------------------------------------------------------------- /ProtoParticle/Assets.xcassets/volcano.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymenworks/particle-animations/HEAD/ProtoParticle/Assets.xcassets/volcano.imageset/Contents.json -------------------------------------------------------------------------------- /ProtoParticle/Assets.xcassets/volcano.imageset/volcano.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymenworks/particle-animations/HEAD/ProtoParticle/Assets.xcassets/volcano.imageset/volcano.pdf -------------------------------------------------------------------------------- /ProtoParticle/Assets.xcassets/wow.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymenworks/particle-animations/HEAD/ProtoParticle/Assets.xcassets/wow.imageset/Contents.json -------------------------------------------------------------------------------- /ProtoParticle/Assets.xcassets/wow.imageset/wow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymenworks/particle-animations/HEAD/ProtoParticle/Assets.xcassets/wow.imageset/wow.png -------------------------------------------------------------------------------- /ProtoParticle/Assets.xcassets/ya.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymenworks/particle-animations/HEAD/ProtoParticle/Assets.xcassets/ya.imageset/Contents.json -------------------------------------------------------------------------------- /ProtoParticle/Assets.xcassets/ya.imageset/ya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymenworks/particle-animations/HEAD/ProtoParticle/Assets.xcassets/ya.imageset/ya.png -------------------------------------------------------------------------------- /ProtoParticle/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymenworks/particle-animations/HEAD/ProtoParticle/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ProtoParticle/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymenworks/particle-animations/HEAD/ProtoParticle/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ProtoParticle/BurnViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymenworks/particle-animations/HEAD/ProtoParticle/BurnViewController.swift -------------------------------------------------------------------------------- /ProtoParticle/DragonViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymenworks/particle-animations/HEAD/ProtoParticle/DragonViewController.swift -------------------------------------------------------------------------------- /ProtoParticle/FacebookLiveViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymenworks/particle-animations/HEAD/ProtoParticle/FacebookLiveViewController.swift -------------------------------------------------------------------------------- /ProtoParticle/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymenworks/particle-animations/HEAD/ProtoParticle/Info.plist -------------------------------------------------------------------------------- /ProtoParticle/SnowViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymenworks/particle-animations/HEAD/ProtoParticle/SnowViewController.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymenworks/particle-animations/HEAD/README.md -------------------------------------------------------------------------------- /README/Demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymenworks/particle-animations/HEAD/README/Demo.gif -------------------------------------------------------------------------------- /README/FacebookLive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymenworks/particle-animations/HEAD/README/FacebookLive.png -------------------------------------------------------------------------------- /README/Fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymenworks/particle-animations/HEAD/README/Fire.png --------------------------------------------------------------------------------