mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-04-23 12:39:24 -05:00
14 lines
279 B
Plaintext
14 lines
279 B
Plaintext
local item = {
|
|
Type = "DashboardItemDistance",
|
|
Identifier = "Distance",
|
|
GuiName = "Distance"
|
|
}
|
|
|
|
asset.onInitialize(function()
|
|
openspace.dashboard.addDashboardItem(item)
|
|
end)
|
|
|
|
asset.onDeinitialize(function()
|
|
openspace.dashboard.removeDashboardItem(item.Identifier)
|
|
end)
|