When you launch Among Us through Nebula, the FusionCore runtime attaches a persistent overlay that stays active throughout your session. Part of that overlay is a utility menu — a quick-access panel you can open at any time while the game is running, without leaving the match or navigating away from the screen.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/Nebula-Modmakers/Nebula-Launcher/llms.txt
Use this file to discover all available pages before exploring further.
How to open the utility menu
Launch Among Us through Nebula
Start the game from the Nebula launcher by tapping Launch. The utility menu is only injected when the game starts via Nebula; it is not available if Among Us is opened from the standard Android home screen or app drawer.
What it provides
The utility menu gives you access to quick actions and runtime information without leaving the game session:Quick actions
Perform common actions such as quitting the game directly from the overlay, so you do not need to navigate through Among Us’s own menus.
Runtime information
View useful details about the active Nebula session and runtime state, helpful for confirming that mods loaded correctly or checking which profile is active.
Display notes
Nebula adjusts several display settings when Among Us is running to give the game full use of the screen:- Status bar hidden. The normal Android status bar (showing the time, battery, and signal icons) is hidden for the entire game session. This is handled by
BootstrapActivity, which callshideSystemBarsfor both the bootstrap screen and the game activity itself, hiding both status bars and navigation bars. - Landscape orientation enforced.
BootstrapActivitycallssetRequestedOrientation(SCREEN_ORIENTATION_SENSOR_LANDSCAPE)before handing off to Among Us, and applies the same orientation setting to the game’s own launcher activity via the pre-onCreatehook. The game will follow physical sensor rotation between landscape-left and landscape-right, but portrait orientation is not permitted while Nebula is active.
The utility menu is only available when Among Us was launched through Nebula. It will not appear if you launched Among Us from the standard Android launcher. If tapping the bottom-right corner does nothing, confirm that you started the session from the Nebula app.