If you use auto animate to have a scene node or scene nodes fade out in one artboard as it moves to another artboard is it possible to get that transition or interactions?
I found this:
Note: currently, this API excludes all of the document’s keyboard/gamepad, hover, and state-transition interactions.
But some of the interactions have transition information.
sceneNode.triggeredInteraction: {
trigger: {
type: 'tap'
},
action: {
type: 'goToArtboard',
destination: Artboard ('Artboard – 2'),
preserveScrollPosition: false,
transition: {
type: 'dissolve',
easing: 'ease-out',
duration: 0.3
}
}
}