mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-31 00:18:39 -06:00
35 lines
864 B
Plaintext
35 lines
864 B
Plaintext
local assetHelper = asset.require('util/asset_helper')
|
|
|
|
assetHelper.registerDashboardItems(asset, {
|
|
{
|
|
Type = "DashboardItemDate",
|
|
Identifier = "Date",
|
|
GuiName = "Date"
|
|
},
|
|
{
|
|
Type = "DashboardItemSimulationIncrement",
|
|
Identifier = "SimulationIncrement",
|
|
GuiName = "Simulation Increment"
|
|
},
|
|
{
|
|
Type = "DashboardItemDistance",
|
|
Identifier = "Distance",
|
|
GuiName = "Distance"
|
|
},
|
|
{
|
|
Type = "DashboardItemFramerate",
|
|
Identifier = "Framerate",
|
|
GuiName = "Framerate"
|
|
},
|
|
{
|
|
Type = "DashboardItemParallelConnection",
|
|
Identifier = "ParallelConnection",
|
|
GuiName = "Parallel Connection"
|
|
},
|
|
{
|
|
Type = "DashboardItemGlobeLocation",
|
|
Identifier = "GlobeLocation",
|
|
GuiName = "Globe Location"
|
|
}
|
|
})
|