mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-04-22 02:48:25 -05:00
c20cd80eaa
Reduce SizeReference font size - TextureAtlas threw InvalidRegionException Use Mars and Earth Barycenter and not center of mass Use name Mars instead of LodMars, same for Earth Move init of font manager to be done prior to scene init Debug log what modules are added Debug log when creating SceneGraphNode from dictionary
58 lines
1.7 KiB
Plaintext
58 lines
1.7 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("2015 NOV 24 00:00:00")
|
|
|
|
openspace.time.setTime(openspace.time.currentWallTime())
|
|
dofile(openspace.absPath('${SCRIPTS}/bind_keys.lua'))
|
|
end
|
|
|
|
function postInitialization()
|
|
openspace.printInfo("Setting default values")
|
|
|
|
openspace.setInteractionMode('GlobeBrowsing')
|
|
--openspace.restoreCameraStateFromFile("camera_lookat_planet.lua")
|
|
|
|
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.resetCameraDirection()
|
|
openspace.time.setDeltaTime(0)
|
|
|
|
openspace.printInfo("Done setting default values")
|
|
end
|
|
|
|
|
|
return {
|
|
ScenePath = ".",
|
|
CommonFolder = "common",
|
|
Camera = {
|
|
Focus = "Mars",
|
|
Position = {138530625167.228241, 42217005217.825005, -46336405755.934372},
|
|
Rotation = {0.633883, 0.492158, -0.123913, -0.583625},
|
|
},
|
|
|
|
Modules = {
|
|
"lodearth",
|
|
"lodmars",
|
|
"sun",
|
|
"stars",
|
|
"milkyway",
|
|
}
|
|
}
|
|
|