Created
January 29, 2016 14:23
-
-
Save TimonVS/b548f28500abb72c9da2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| spray = -> | |
| for i in [0..10] | |
| dot = new Layer | |
| width: 10 | |
| height: 10 | |
| borderRadius: "50%" | |
| backgroundColor: Color.random() | |
| dot.center() | |
| dot.placeBehind heart | |
| dot.animate | |
| properties: | |
| x: heart.midX + randomXY() | |
| y: heart.midY + randomXY() | |
| dot.animate | |
| delay: 0.5 | |
| properties: scale: 0 | |
| dot.on Events.AnimationEnd, -> @destroy() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment