Last active
November 20, 2018 09:18
-
-
Save daybrush/59e0382007cd3c586590766f1a69f610 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
/* CSS Easing */ | |
{ | |
easing: Scene.EASE_IN, // EASE_OUT, EASE_IN_OUT, ... | |
} | |
/* Custom */ | |
{ | |
easing: t => 1 - Math.pow(t, 3), | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment