mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-07 20:21:24 -06:00
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
64 lines
2.1 KiB
INI
64 lines
2.1 KiB
INI
return {
|
|
-- Determines which SGCT configuration file is loaded, that is, if there rendering
|
|
-- occurs in a single window, a fisheye projection, or a dome cluster system
|
|
SGCTConfig = "${SGCT}/single.xml",
|
|
--SGCTConfig = "${SGCT}/single_fisheye.xml",
|
|
--SGCTConfig = "${SGCT}/two_nodes.xml",
|
|
|
|
-- Sets the scene that is to be loaded by OpenSpace. A scene file is a description
|
|
-- of all entities that will be visible during an instance of OpenSpace
|
|
--Scene = "${SCENE}/default.scene",
|
|
|
|
-- Scene = "${SCENE}/globebrowsing.scene",
|
|
-- Scene = "${SCENE}/rosetta.scene",
|
|
-- Scene = "${SCENE}/dawn.scene",
|
|
-- Scene = "${SCENE}/newhorizons.scene",
|
|
Scene = "${SCENE}/osirisrex.scene",
|
|
|
|
Paths = {
|
|
SGCT = "${BASE_PATH}/config/sgct",
|
|
SCRIPTS = "${BASE_PATH}/scripts",
|
|
SHADERS = "${BASE_PATH}/shaders",
|
|
OPENSPACE_DATA = "${BASE_PATH}/data",
|
|
SCENE = "${OPENSPACE_DATA}/scene",
|
|
SPICE = "${OPENSPACE_DATA}/spice",
|
|
MODULES = "${BASE_PATH}/modules",
|
|
TESTDIR = "${BASE_PATH}/tests",
|
|
CONFIG = "${BASE_PATH}/config",
|
|
CACHE = "${BASE_PATH}/cache",
|
|
FONTS = "${OPENSPACE_DATA}/fonts",
|
|
},
|
|
Fonts = {
|
|
Mono = "${FONTS}/Droid_Sans_Mono/DroidSansMono.ttf",
|
|
Light = "${FONTS}/Roboto/Roboto-Regular.ttf"
|
|
},
|
|
Logging = {
|
|
LogLevel = "Debug",
|
|
ImmediateFlush = false,
|
|
Logs = {
|
|
{ Type = "HTML", FileName = "${BASE_PATH}/log.html", Append = false }
|
|
},
|
|
CapabilitiesVerbosity = "Full"
|
|
},
|
|
LuaDocumentationFile = {
|
|
Type = "text",
|
|
File = "${BASE_PATH}/LuaScripting.txt"
|
|
},
|
|
PropertyDocumentationFile = {
|
|
Type = "text",
|
|
File = "${BASE_PATH}/Properties.txt"
|
|
},
|
|
ScriptLogFile = {
|
|
Type = "text",
|
|
File = "${BASE_PATH}/ScriptLog.txt"
|
|
},
|
|
KeyboardShortcuts = {
|
|
Type = "text",
|
|
File = "${BASE_PATH}/KeyboardMapping.txt"
|
|
},
|
|
ShutdownCountdown = 3,
|
|
DownloadRequestURL = "http://130.236.132.168/request.cgi",
|
|
RenderingMethod = "Framebuffer"
|
|
--RenderingMethod = "ABuffer" -- alternative: "Framebuffer"
|
|
|
|
} |