DashboardItemGlobeLocation

Inherits DashboardItem

Asset Examples

 1local Item = {
 2  Type = "DashboardItemGlobeLocation",
 3  Identifier = "GlobeLocation",
 4  GuiName = "Globe Location"
 5}
 6
 7
 8asset.onInitialize(function()
 9  openspace.dashboard.addDashboardItem(Item)
10end)
11
12asset.onDeinitialize(function()
13  openspace.dashboard.removeDashboardItem(Item)
14end)
15
16asset.export(Item)
17
18
19
20asset.meta = {
21  Name = "Dashboard - GlobeLocation",
22  Version = "1.0",
23  Description = "This asset provides a GlobeLocation dashboard item",
24  Author = "OpenSpace Team",
25  URL = "http://openspaceproject.com",
26  License = "MIT license"
27}