0 votes
by (130 points)
In sugarcube2, are you able to have the game start with the UI bar hidden without clicking the hide button? I don't want to disable the UI bar, but make it so that when the game starts players cannot see side menu.

1 Answer

+1 vote
by (68.6k points)

You seem to be talking about stowing the UI bar, not hiding it.  To have the UI bar start initially stowed, you want the Config.ui.stowBarInitially config setting.  For example, place the following within your Story JavaScript:

Config.ui.stowBarInitially = true;

 

...