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 Description = "This asset provides a GlobeLocation dashboard item",
23 Author = "OpenSpace Team",
24 URL = "http://openspaceproject.com",
25 License = "MIT license"
26}