We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When you put start option into a scene does not work
const scene_1 = Fat.animate(box, { translateX: '200px' }, { start: false, duration: 1000 })
You have to set it as a control to work
const scene_1 = Fat.animate(box, { translateX: '200px' }, { duration: 1000 }).start(false)
And i think that shift control is not working as expected.
example: https://codepen.io/gaougalos/pen/XWrVvaX?editors=0110
The text was updated successfully, but these errors were encountered:
ts-thomas
No branches or pull requests
When you put start option into a scene does not work
You have to set it as a control to work
And i think that shift control is not working as expected.
example:
https://codepen.io/gaougalos/pen/XWrVvaX?editors=0110
The text was updated successfully, but these errors were encountered: