mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-05 19:19:39 -06:00
14 lines
295 B
Lua
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)
|