Files
OpenSpace/data/assets/dashboard/globelocation.asset
2021-04-28 19:19:51 +02:00

14 lines
295 B
Lua

local item = {
Type = "DashboardItemGlobeLocation",
Identifier = "GlobeLocation",
GuiName = "Globe Location"
}
asset.onInitialize(function()
openspace.dashboard.addDashboardItem(item)
end)
asset.onDeinitialize(function()
openspace.dashboard.removeDashboardItem(item.Identifier)
end)