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