some about page, default settings, some textures etc. not yet compiled or tested

This commit is contained in:
2023-02-20 00:03:47 +01:00
parent eb8783c20c
commit 8dbdfeeac6
21 changed files with 77 additions and 45 deletions

View File

@@ -0,0 +1,21 @@
settingtypes.txt:
fps_max (Maximum FPS) int 4294967295 1 4294967295
vsync (VSync) bool true
serverlist_url (Serverlist URL) string servers.cubesoftware.xyz <=== WARNING!! THERE ARE 2 THE SAME LINES FOR SOME REASON
font_size (Font size) int 32 5 72
font_path (Regular font path) filepath fonts/monogram-extended.ttf
touchscreen_threshold (Touch screen threshold) int 5 0 100
mouse_sensitivity (Mouse sensitivity) float 0.1 0.001 10.0
menu_clouds (Clouds in menu) bool false
defaultsettings.cpp:
settings->setDefault("smooth_lighting", "true"); // comment to be able to find this line from settings_modified_for_sussycraft.txt
settings->setDefault("fps_max", "4294967295"); // fps is "unlimited" because vsync is on
settings->setDefault("vsync", "true"); // comment to be able to find this line from settings_modified_for_sussycraft.txt
settings->setDefault("serverlist_url", "servers.cubesoftware.xyz"); // comment to be able to find this line from settings_modified_for_sussycraft.txt
settings->setDefault("font_size", "32"); // comment to be able to find this line from settings_modified_for_sussycraft.txt (1)
settings->setDefault("font_size", "32"); // comment to be able to find this line from settings_modified_for_sussycraft.txt (2)
settings->setDefault("font_size", "32"); // comment to be able to find this line from settings_modified_for_sussycraft.txt (3)
settings->setDefault("font_path", porting::getDataPath("fonts" DIR_DELIM "monogram-extended.ttf")); // comment to be able to find this line from settings_modified_for_sussycraft.txt
settings->setDefault("touchscreen_threshold","5"); // comment to be able to find this line from settings_modified_for_sussycraft.txt
settings->setDefault("menu_clouds", "false"); // comment to be able to find this line from settings_modified_for_sussycraft.txt