47 lines
1.1 KiB
TOML
47 lines
1.1 KiB
TOML
[config]
|
|
# Per-game config values.
|
|
# These should rarely be changed.
|
|
|
|
sprite_root = "render"
|
|
|
|
fonts.files = [
|
|
"fonts/PTAstraSans-Bold.ttf",
|
|
"fonts/PTAstraSans-BoldItalic.ttf",
|
|
"fonts/PTAstraSans-Italic.ttf",
|
|
"fonts/PTAstraSans-Regular.ttf",
|
|
"fonts/PTAstraSerif-Bold.ttf",
|
|
"fonts/PTAstraSerif-BoldItalic.ttf",
|
|
"fonts/PTAstraSerif-Italic.ttf",
|
|
"fonts/PTAstraSerif-Regular.ttf",
|
|
"fonts/PTMono-Regular.ttf",
|
|
]
|
|
|
|
fonts.serif = "PT Astra Serif"
|
|
fonts.sans = "PT Astra Sans"
|
|
fonts.mono = "PT Mono"
|
|
|
|
# Size range for starfield stars, in game units.
|
|
# This is scaled for zoom, but NOT for distance.
|
|
starfield.min_size = 0.2
|
|
starfield.max_size = 1.8
|
|
|
|
# Z-axis (parallax) range for starfield stars
|
|
starfield.min_dist = 75.0
|
|
starfield.max_dist = 200.0
|
|
# Path to starfield sprite texture
|
|
starfield.texture = "starfield.png"
|
|
|
|
|
|
# Zoom level bounds.
|
|
# Zoom is measured as "window height in game units."
|
|
zoom_min = 200.0
|
|
zoom_max = 2000.0
|
|
|
|
# TODO: move to user config file
|
|
ui_scale = 2
|
|
|
|
start_ui_scene = "flying"
|
|
ui_scene.landed = "ui/landed.rhai"
|
|
ui_scene.flying = "ui/flying.rhai"
|
|
ui_scene.outfitter = "ui/outfitter.rhai"
|