mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-04-21 01:59:15 -05:00
92eefa8189
* Add enabled property to exoplanets and sky browser module * Create assets for default settings and restructure assets into a components folder * Update exoplanets data * Set sky browser enabled to true per default and include hover circle asset * Add name and description of hover circle, and used synced version of ring image
14 lines
435 B
Lua
14 lines
435 B
Lua
asset.onInitialize(function ()
|
|
openspace.setPropertyValueSingle("Modules.SkyBrowser.Enabled", true)
|
|
-- 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"
|
|
}
|