Files
OpenSpace/data/assets/dashboard/parallelconnection.asset
Alexander Bock 705c898ccd Asset File cleanup (#2713)
* Updating all assets to new coding style
* Cleaning up asset files
* Moving default_actions and default_keybindings files
* Changing procedural globes to explicitly specified globes
* Move Spice loading explicitly to the initialize part and also deinitialize
* Removing unused asset files
  * Removing asset_helper
  * Removing scale_model_helper asset
  * Removing script_scheduler_helper
  * Removing testing_keybindings
  * Remove procedural_globe
2023-05-28 17:23:20 +02:00

28 lines
571 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",
Version = "1.0",
Description = "This asset provides a ParallelConnection dashboard item",
Author = "OpenSpace Team",
URL = "http://openspaceproject.com",
License = "MIT license"
}