{ "items": [ // Boot check: make sure a save device is available before handing off // to the main menu. { "type": "MODAL", "title": "initial.checking_save.title", "message": "initial.checking_save.message" }, { "type": "WAIT", "seconds": 0.2 }, { "type": "SAVE_DEVICE_CHECK", "successMarker": "CONTINUE", "failureMarker": "NO_DEVICE" }, // No save device found - offer to retry or continue without saving. { "type": "MARKER", "name": "NO_DEVICE" }, { "type": "MODAL_CLOSE" }, { "type": "MODAL_OPTIONS_MARKERS", "title": "initial.no_device.title", "message": "initial.no_device.message", "options": [ { "text": "initial.no_device.retry", "marker": "RETRY" }, { "text": "initial.no_device.continue", "marker": "CONTINUE" } ] }, { "type": "MARKER", "name": "RETRY" }, { "type": "MODAL_CLOSE" }, { "type": "RESTART" }, // Save device found (or continuing without one) - hand off to the // main menu scene. { "type": "MARKER", "name": "CONTINUE" }, { "type": "MODAL_CLOSE" }, { "type": "SCENE", "sceneType": "MAIN_MENU" } ] }