fat icon indicating copy to clipboard operation
fat copied to clipboard

some issues with scene option (start) & shift control on scene

Open gaou-piou opened this issue 6 years ago • 0 comments

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

gaou-piou avatar Sep 07 '19 00:09 gaou-piou