Last active
January 29, 2016 13:47
-
-
Save TimonVS/3e8a8c89fd5fa5620f97 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
| liked = false | |
| heart.on Events.Click, -> | |
| heart.animate | |
| time: 0.1 | |
| properties: | |
| scale: if liked then 0.4 else 0.75 | |
| Utils.delay 0.1, -> heart.animate | |
| time: 0.5 | |
| properties: | |
| scale: 0.5 | |
| heartLeft.animate | |
| time: 0.2 | |
| properties: backgroundColor: if liked then gray else pink | |
| heartRight.animate | |
| time: 0.2 | |
| properties: backgroundColor: if liked then gray else pink | |
| liked = not liked |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment