Get the list of available in-game panels
this.$api.toolbar.get_panels()
Returns an array with available panels.
Get info on a specific in-game panel.
this.$api.toolbar.get_panel(panel_id)
panel_id
: (String) ID of the panel to get. Can get found using .get_panels()
Open an in-game panel
this.$api.toolbar.open_panel(panel_id)
panel_id
: (String) ID of the panel to open. Can get found using .get_panels()
Close an in-game panel
this.$api.toolbar.close_panel(panel_id)
panel_id
: (String) ID of the panel to close. Can get found using .get_panels()
Toggle an in-game panel
this.$api.toolbar.toggle_panel(panel_id)
panel_id
: (String) ID of the panel to toggle. Can get found using .get_panels()