├── .gitignore ├── Emitter.playground ├── Contents.swift ├── Resources │ └── heart.png ├── contents.xcplayground ├── playground.xcworkspace │ └── contents.xcworkspacedata └── timeline.xctimeline ├── LICENSE.md ├── README.md └── Screenshots └── image.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/ParticlePlayground/HEAD/.gitignore -------------------------------------------------------------------------------- /Emitter.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/ParticlePlayground/HEAD/Emitter.playground/Contents.swift -------------------------------------------------------------------------------- /Emitter.playground/Resources/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/ParticlePlayground/HEAD/Emitter.playground/Resources/heart.png -------------------------------------------------------------------------------- /Emitter.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/ParticlePlayground/HEAD/Emitter.playground/contents.xcplayground -------------------------------------------------------------------------------- /Emitter.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/ParticlePlayground/HEAD/Emitter.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Emitter.playground/timeline.xctimeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/ParticlePlayground/HEAD/Emitter.playground/timeline.xctimeline -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/ParticlePlayground/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/ParticlePlayground/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/ParticlePlayground/HEAD/Screenshots/image.png --------------------------------------------------------------------------------