Comment on page
Quick Menu
<quick-menu></quick-menu>
The quick menu is the small menu rendered in the bottom of the screen, or on the top if you're in mobile. It's a menu that allows access to certain features during the game such as saving, loading, showing the log etc.
The quick menu will render each of the buttons it has on its global configuration
static addButton ({ string, icon, data, ... }): void
Adds a button to the end of the menu.
Example
monogatari.component ('quick-menu').addButton ({
string: 'Stats',
icon: 'fas fa-tasks',
data: {
action: 'show-stats'
}
});
static addButtonAfter (after: string, { string, icon, data, ... }): void
Adds a button immediately after the button that has the string specified in the
after
argument.Example
The following sample will add the button after the
Back
buttonmonogatari.component ('quick-menu').addButtonAfter ('Back', {
string: 'Stats',
icon: 'fas fa-tasks',
data: {
action: 'show-stats'
}
});
static addButtonBefore (before: string, { string, icon, data, ... }): void
Adds a button immediately before the button that has the string specified in the
before
argument.Example
The following sample will add the button before the
Back
buttonmonogatari.component ('quick-menu').addButtonBefore ('Back', {
string: 'Stats',
icon: 'fas fa-tasks',
data: {
action: 'show-stats'
}
});
The following sample will remove the "Hide" button.
monogatari.component ('quick-menu').removeButton ('Hide');
Last modified 2yr ago