Skip to content

Commit 0c9189d

Browse files
EzhhZeno-
authored andcommittedJan 29, 2017
Add console height setting (#5136)
1 parent 707e27b commit 0c9189d

File tree

4 files changed

+10
-1
lines changed

4 files changed

+10
-1
lines changed
 

‎builtin/settingtypes.txt

+3
Original file line numberDiff line numberDiff line change
@@ -477,6 +477,9 @@ fall_bobbing_amount (Fall bobbing) float 0.0
477477
# - pageflip: quadbuffer based 3d.
478478
3d_mode (3D mode) enum none none,anaglyph,interlaced,topbottom,sidebyside,pageflip
479479

480+
# In-game chat console height, between 0.1 (10%) and 1.0 (100%).
481+
console_height (Console height) float 1.0 0.1 1.0
482+
480483
# In-game chat console background color (R,G,B).
481484
console_color (Console color) string (0,0,0)
482485

‎minetest.conf.example

+4
Original file line numberDiff line numberDiff line change
@@ -548,6 +548,10 @@
548548
# type: enum values: none, anaglyph, interlaced, topbottom, sidebyside, pageflip
549549
# 3d_mode = none
550550

551+
# In-game chat console height, between 0.1 (10%) and 1.0 (100%).
552+
# type: float
553+
# console_height = 1.0
554+
551555
# In-game chat console background color (R,G,B).
552556
# type: string
553557
# console_color = (0,0,0)

‎src/defaultsettings.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,7 @@ void set_default_settings(Settings *settings)
138138
settings->setDefault("cloud_radius", "12");
139139
settings->setDefault("menu_clouds", "true");
140140
settings->setDefault("opaque_water", "false");
141+
settings->setDefault("console_height", "1.0");
141142
settings->setDefault("console_color", "(0,0,0)");
142143
settings->setDefault("console_alpha", "200");
143144
settings->setDefault("selectionbox_color", "(0,0,0)");

‎src/game.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -2627,7 +2627,8 @@ void Game::processKeyInput(VolatileRunFlags *flags,
26272627
} else if (wasKeyDown(KeyType::CMD)) {
26282628
openConsole(0.2, L"/");
26292629
} else if (wasKeyDown(KeyType::CONSOLE)) {
2630-
openConsole(1);
2630+
openConsole(core::clamp(
2631+
g_settings->getFloat("console_height"), 0.1f, 1.0f));
26312632
} else if (wasKeyDown(KeyType::FREEMOVE)) {
26322633
toggleFreeMove(statustext_time);
26332634
} else if (wasKeyDown(KeyType::JUMP)) {

0 commit comments

Comments
 (0)
Please sign in to comment.