entries
The list of NavEntrys that can be displayed in this scene.
When animating between scenes, the underlying content for each NavEntry will only be rendered by the scene that is most recently the target scene, and is displaying that NavEntry as determined by this entries list.
For example, consider a transition from Scene1 to Scene2 below:
Scene1: Scene2:
+---+---+ +---+---+
| | | | | |
| A | B | --> | B | C |
| | | | | |
+---+---+ +---+---+Content copied to clipboard
Scene1.entries should be [A, B], and Scene2.entries should be [B, C]
When both are being rendered at the same time during the transition, the content for A will be rendered in Scene1, while the content for B and C will be rendered in Scene2.