mirror of
https://github.com/xHyroM/aetheria.git
synced 2024-11-10 01:58:06 +01:00
32 lines
1.1 KiB
TOML
Executable file
32 lines
1.1 KiB
TOML
Executable file
# This holds the schematic version for internal purposes. DO NOT TOUCH!
|
|
schematicVersion = 2
|
|
|
|
# This category holds configs that define ship behaviour.
|
|
[Ship]
|
|
#Set the speed indication: 0 = km/h, 1 = m/s, 2 = knots, 3 = mph
|
|
shipModSpeedUnit = 0
|
|
|
|
#This category holds configs that define general ship behaviour.
|
|
[Ship.General]
|
|
|
|
#General camera settings for ships.
|
|
[Ship.General.Camera]
|
|
#Automatically enable third person camera when entering a ship.
|
|
shipGeneralCameraAutoThirdPerson = true
|
|
|
|
#Zoom camera settings for third person view in ships.
|
|
[Ship.General.Camera.Zoom]
|
|
#Generally enable the zooming feature.
|
|
shipGeneralCameraZoomEnable = true
|
|
#Set maximum distance of zoom (value must be smaller than or equal to 50.0).
|
|
#Range: 1.0 ~ 50.0
|
|
shipGeneralCameraZoomMax = 20.0
|
|
#Set minimum distance of zoom (value must be bigger than or equal to 1.0).
|
|
#Range: 1.0 ~ 50.0
|
|
shipGeneralCameraZoomMin = 5.0
|
|
|
|
# This category holds configs that define general mod settings.
|
|
[General]
|
|
#Enable smallships creative tab in the creative inventory (only takes effect after restart).
|
|
smallshipsItemGroupEnable = false
|
|
|