Merge branch 'reasonable-drawdist' into 'master'

Better draw distance options

See merge request KartKrew/Kart!2274
This commit is contained in:
toaster 2024-04-12 19:16:42 +00:00
commit 7246625aa2

View file

@ -334,28 +334,26 @@ consvar_t cv_soundvolume = Player("soundvolume", "80").min_max(0, 100);
consvar_t cv_discordstreamer = Player("discordstreamer", "Off").on_off(); consvar_t cv_discordstreamer = Player("discordstreamer", "Off").on_off();
#endif #endif
consvar_t cv_drawdist = Player("drawdist", "8192").values({ consvar_t cv_drawdist = Player("drawdist", "Normal").values({
//{256, "256"}, {3072, "Shortest"},
{512, "512"}, {4096, "Shorter"},
{768, "768"}, {6144, "Short"},
{1024, "1024"}, {8192, "Normal"},
{1536, "1536"}, {12288, "Far"},
{2048, "2048"}, {16384, "Farther"},
{3072, "3072"}, {24576, "Extreme"},
{4096, "4096"}, {32768, "Penultimate"},
{6144, "6144"}, {0, "Infinite"},
{8192, "8192"},
{0, "Infinite"},
}); });
consvar_t cv_drawdist_precip = Player("drawdist_precip", "1024").values({ consvar_t cv_drawdist_precip = Player("drawdist_precip", "Normal").values({
{256, "256"}, {256, "Shortest"},
{512, "512"}, {512, "Shorter"},
{768, "768"}, {768, "Short"},
{1024, "1024"}, {1024, "Normal"},
{1536, "1536"}, {1536, "Far"},
{2048, "2048"}, {2048, "Farthest"},
{0, "None"}, {0, "None"},
}); });
consvar_t cv_drawinput = Player("drawinput", "Off").on_off(); consvar_t cv_drawinput = Player("drawinput", "Off").on_off();