5.18.17
Patch Changes
- Updated dependencies [d2ed3d6]
- @antv/[email protected]
Add onframe
callback in gotoLandmark
params:
camera.gotoLandmark('reset', {
duration: 1000,
easing: 'ease-in',
onfinish: () => {},
onframe: (t) => {
console.log(t); // [0, 1]
}
});