mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-04-29 15:29:26 -05:00
34 lines
1.5 KiB
Plaintext
34 lines
1.5 KiB
Plaintext
-- This is a base scene that is included in most other scenes to set up defaults
|
|
-- loading this scene directly without any other elements added on top of it will
|
|
-- probably not work
|
|
|
|
asset.require('./base_blank')
|
|
|
|
-- Specifying which other assets should be loaded in this scene
|
|
asset.require('scene/solarsystem/sun/sun')
|
|
asset.require('scene/solarsystem/sun/glare')
|
|
asset.require('scene/solarsystem/sun/default_layers')
|
|
asset.require('scene/solarsystem/planets/planets')
|
|
asset.require('scene/solarsystem/planets/default_layers')
|
|
asset.require('scene/solarsystem/planets/mars/moons/phobos')
|
|
asset.require('scene/solarsystem/planets/mars/moons/deimos')
|
|
asset.require('scene/solarsystem/dwarf_planets/pluto/system')
|
|
asset.require('scene/solarsystem/dwarf_planets/pluto/default_layers')
|
|
asset.require('scene/solarsystem/dwarf_planets/pluto/charon/default_layers')
|
|
asset.require('scene/solarsystem/missions/voyagerpioneer/voyager1_2__pioneer10_11')
|
|
asset.require('scene/milkyway/milkyway/volume')
|
|
asset.require('scene/milkyway/constellations/constellation_art')
|
|
asset.require('scene/milkyway/constellations/constellation_keybinds')
|
|
asset.require('util/launcher_images')
|
|
|
|
local assetHelper = asset.require('util/asset_helper')
|
|
assetHelper.requireAll(asset, 'scene/milkyway/exoplanets')
|
|
assetHelper.requireAll(asset, 'scene/digitaluniverse')
|
|
|
|
asset.require('customization/globebrowsing')
|
|
|
|
asset.onInitialize(function ()
|
|
openspace.globebrowsing.loadWMSServersFromFile(
|
|
openspace.absPath("${DATA}/globebrowsing_servers.lua")
|
|
)
|
|
end) |