I have a method, which runs anthe action MenuScreen at the very end. It never fires. Why is that?
fun method() {
scene.addSegment(SceneSegment(theEnd, Actions.fadeIn(4f)))
scene.addSegment(SceneSegment(background, Actions.delay(10f)))
scene.addSegment(SceneSegment(background, Actions.run { MenuScreen() }))
scene.start()
}
theEndtheEnd fades in properly, but the MenuScreenMenuScreen is never called.