mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-02-20 03:49:31 -06:00
Make the CacheManager not crash when ShadowCylinder shader is created in the same cache directory as RenderablePlanet Remove excessive logging from TileDataset
103 lines
3.8 KiB
Plaintext
103 lines
3.8 KiB
Plaintext
function preInitialization()
|
|
--[[
|
|
The scripts in this function are executed after the scene is loaded but before the
|
|
scene elements have been initialized, thus they should be used to set the time at
|
|
which the scene should start and other settings that might determine initialization
|
|
critical objects.
|
|
]]--
|
|
|
|
--openspace.time.setTime(openspace.time.currentWallTime())
|
|
openspace.spice.loadKernel("${SPICE}/naif0011.tls")
|
|
openspace.spice.loadKernel("${SPICE}/pck00010.tpc")
|
|
|
|
openspace.time.setTime(openspace.time.currentWallTime())
|
|
dofile(openspace.absPath('${SCRIPTS}/bind_common_keys.lua'))
|
|
|
|
|
|
-- Toggle night texture, shading, atmosphere and water
|
|
openspace.bindKey("s",
|
|
helper.property.invert('Earth.RenderableGlobe.Layers.NightLayers.Earth at Night 2012.enabled') ..
|
|
helper.property.invert('Earth.RenderableGlobe.performShading') ..
|
|
helper.property.invert('Earth.RenderableGlobe.atmosphere') ..
|
|
helper.property.invert('Earth.RenderableGlobe.Layers.WaterMasks.MODIS_Water_Mask.enabled'),
|
|
"Toggle night texture, shading, atmosphere, and water for Earth."
|
|
)
|
|
|
|
-- Toggle background
|
|
openspace.bindKey("b",
|
|
helper.property.invert('MilkyWay.renderable.enabled') ..
|
|
helper.property.invert('Stars.renderable.enabled'),
|
|
"Toggle background (Stars and Milkyway)."
|
|
)
|
|
|
|
openspace.bindKey("g",
|
|
"openspace.setInteractionMode('GlobeBrowsing')" ..
|
|
helper.property.invert('MilkyWay.renderable.enabled') ..
|
|
helper.property.invert('Stars.renderable.enabled') ..
|
|
helper.property.invert('Earth.RenderableGlobe.Layers.NightLayers.Earth at Night 2012.enabled') ..
|
|
helper.property.invert('Earth.RenderableGlobe.performShading') ..
|
|
helper.property.invert('Mars.RenderableGlobe.performShading') ..
|
|
helper.property.invert('Earth.RenderableGlobe.atmosphere') ..
|
|
helper.property.invert('Earth.RenderableGlobe.Layers.WaterMasks.MODIS_Water_Mask.enabled') ..
|
|
helper.property.invert('Moon.RenderableGlobe.enabled') ..
|
|
helper.property.invert('Sun.renderable.enabled'),
|
|
"Toogles background and shading mode on the Earth and Mars alongside visibility of the Moon and the Sun"
|
|
)
|
|
|
|
openspace.bindKey("h",
|
|
"openspace.setPropertyValue('*Trail.renderable.enabled', false)",
|
|
"Disables visibility of the trails"
|
|
)
|
|
|
|
--[[
|
|
-- Toggle trails
|
|
openspace.bindKey("o",
|
|
'openspace.setPropertyValue("*Trail.renderable.enabled", false)'
|
|
)
|
|
openspace.bindKey("p",
|
|
'openspace.setPropertyValue("*Trail.renderable.enabled", true)'
|
|
)
|
|
|
|
]]
|
|
end
|
|
|
|
function postInitialization()
|
|
openspace.printInfo("Setting default values")
|
|
|
|
openspace.setInteractionMode('GlobeBrowsing')
|
|
|
|
openspace.setPropertyValue("MilkyWay.renderable.transparency", 0.55)
|
|
openspace.setPropertyValue("MilkyWay.renderable.segments", 50)
|
|
|
|
openspace.setPropertyValue("Sun.renderable.enabled", true)
|
|
openspace.setPropertyValue("SunGlare.renderable.enabled", false)
|
|
openspace.setPropertyValue("SunMarker.renderable.enabled", false)
|
|
|
|
openspace.setPropertyValue("Earth.RenderableGlobe.atmosphere", true)
|
|
openspace.setPropertyValue("Earth.RenderableGlobe.Layers.NightLayers.Earth at Night 2012.settings.gamma", 1.8)
|
|
openspace.setPropertyValue("Earth.RenderableGlobe.Layers.NightLayers.Earth at Night 2012.settings.multiplier", 10)
|
|
|
|
openspace.resetCameraDirection()
|
|
|
|
openspace.printInfo("Done setting default values")
|
|
end
|
|
|
|
|
|
return {
|
|
ScenePath = ".",
|
|
CommonFolder = "common",
|
|
Camera = {
|
|
Focus = "Earth",
|
|
Position = {138530625167.228241, 42217005217.825005, -46336405755.934372},
|
|
Rotation = {0.633883, 0.492158, -0.123913, -0.583625},
|
|
},
|
|
|
|
Modules = {
|
|
"lodglobes",
|
|
"sun",
|
|
"stars",
|
|
"milkyway",
|
|
}
|
|
}
|
|
|