mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-26 05:58:58 -06:00
* 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
17 lines
517 B
Lua
17 lines
517 B
Lua
asset.onInitialize(function()
|
|
openspace.setPropertyValueSingle("Modules.SkyBrowser.Enabled", true)
|
|
openspace.setPropertyValueSingle("Modules.SkyBrowser.ShowTitleInGuiBrowser", false)
|
|
-- More settings are available, but for now using the default values
|
|
end)
|
|
|
|
|
|
|
|
asset.meta = {
|
|
Name = "SkyBrowser Module Default Settings",
|
|
Version = "1.0",
|
|
Description = "Some default settings related to the SkyBrowser module",
|
|
Author = "OpenSpace Team",
|
|
URL = "http://openspaceproject.com",
|
|
License = "MIT license"
|
|
}
|