mirror of
https://github.com/godotengine/godot.git
synced 2025-11-01 06:01:14 +00:00
Add expand stretch/ascpect - no more black bars
This commit is contained in:
parent
8a4bce6ebd
commit
b2ca500545
3 changed files with 8 additions and 6 deletions
|
|
@ -1275,6 +1275,8 @@ bool Main::start() {
|
|||
sml_aspect = SceneTree::STRETCH_ASPECT_KEEP_WIDTH;
|
||||
else if (stretch_aspect == "keep_height")
|
||||
sml_aspect = SceneTree::STRETCH_ASPECT_KEEP_HEIGHT;
|
||||
else if (stretch_aspect == "expand")
|
||||
sml_aspect = SceneTree::STRETCH_ASPECT_EXPAND;
|
||||
|
||||
sml->set_screen_stretch(sml_sm, sml_aspect, stretch_size, stretch_shrink);
|
||||
|
||||
|
|
@ -1302,7 +1304,7 @@ bool Main::start() {
|
|||
GLOBAL_DEF("display/window/stretch/mode", "disabled");
|
||||
ProjectSettings::get_singleton()->set_custom_property_info("display/window/stretch/mode", PropertyInfo(Variant::STRING, "display/window/stretch/mode", PROPERTY_HINT_ENUM, "disabled,2d,viewport"));
|
||||
GLOBAL_DEF("display/window/stretch/aspect", "ignore");
|
||||
ProjectSettings::get_singleton()->set_custom_property_info("display/window/stretch/aspect", PropertyInfo(Variant::STRING, "display/window/stretch/aspect", PROPERTY_HINT_ENUM, "ignore,keep,keep_width,keep_height"));
|
||||
ProjectSettings::get_singleton()->set_custom_property_info("display/window/stretch/aspect", PropertyInfo(Variant::STRING, "display/window/stretch/aspect", PROPERTY_HINT_ENUM, "ignore,keep,keep_width,keep_height,expand"));
|
||||
GLOBAL_DEF("display/window/stretch/shrink", 1);
|
||||
ProjectSettings::get_singleton()->set_custom_property_info("display/window/stretch/shrink", PropertyInfo(Variant::STRING, "display/window/stretch/shrink", PROPERTY_HINT_RANGE, "1,8,1"));
|
||||
sml->set_auto_accept_quit(GLOBAL_DEF("application/config/auto_accept_quit", true));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue