diff options
author | Michael Alexsander <michaelalexsander@protonmail.com> | 2021-07-02 15:35:56 -0300 |
---|---|---|
committer | Michael Alexsander <michaelalexsander@protonmail.com> | 2021-07-02 15:35:56 -0300 |
commit | a829e88ddc0931a36e0b50d5307e93b1489b531b (patch) | |
tree | f7bb0fa0ccb8a9b306af31dc7c6d8ec56d491acb | |
parent | 5710adda72a08f81c4df00147f560eebacf3b473 (diff) |
Expose `Window.get_contents_minimum_size()` to scripts
-rw-r--r-- | doc/classes/Window.xml | 7 | ||||
-rw-r--r-- | scene/main/window.cpp | 2 |
2 files changed, 9 insertions, 0 deletions
diff --git a/doc/classes/Window.xml b/doc/classes/Window.xml index 6ae5a5f449..73a95967bd 100644 --- a/doc/classes/Window.xml +++ b/doc/classes/Window.xml @@ -19,6 +19,13 @@ <description> </description> </method> + <method name="get_contents_minimum_size" qualifiers="const"> + <return type="Vector2"> + </return> + <description> + Returns the combined minimum size from the child [Control] nodes of the window. + </description> + </method> <method name="get_flag" qualifiers="const"> <return type="bool"> </return> diff --git a/scene/main/window.cpp b/scene/main/window.cpp index d793be1869..cf2a6b2adf 100644 --- a/scene/main/window.cpp +++ b/scene/main/window.cpp @@ -1393,6 +1393,8 @@ void Window::_bind_methods() { ClassDB::bind_method(D_METHOD("is_embedded"), &Window::is_embedded); + ClassDB::bind_method(D_METHOD("get_contents_minimum_size"), &Window::get_contents_minimum_size); + ClassDB::bind_method(D_METHOD("set_content_scale_size", "size"), &Window::set_content_scale_size); ClassDB::bind_method(D_METHOD("get_content_scale_size"), &Window::get_content_scale_size); |