Last active
October 15, 2018 20:30
-
-
Save gskachkov/d96ae73bdc08e87380f5d952dde70011 to your computer and use it in GitHub Desktop.
This file contains 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
class factor { | |
constructor(options = {}) { | |
this.factor = options.factor || 1; | |
} | |
animate(currentTime, effect) { | |
effect.localTime = currentTime * this.factor; | |
} | |
}; | |
registerAnimator('factor', factor); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment