mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-04 02:29:49 -06:00
27 lines
552 B
Lua
27 lines
552 B
Lua
local Item = {
|
|
Type = "DashboardItemParallelConnection",
|
|
Identifier = "ParallelConnection",
|
|
GuiName = "Parallel Connection"
|
|
}
|
|
|
|
|
|
asset.onInitialize(function()
|
|
openspace.dashboard.addDashboardItem(Item)
|
|
end)
|
|
|
|
asset.onDeinitialize(function()
|
|
openspace.dashboard.removeDashboardItem(Item)
|
|
end)
|
|
|
|
asset.export(Item)
|
|
|
|
|
|
|
|
asset.meta = {
|
|
Name = "Dashboard - ParallelConnection",
|
|
Description = "This asset provides a ParallelConnection dashboard item",
|
|
Author = "OpenSpace Team",
|
|
URL = "http://openspaceproject.com",
|
|
License = "MIT license"
|
|
}
|