diff --git a/doc/classes/Viewport.xml b/doc/classes/Viewport.xml index a9ffd9f66d4..772d20a92e6 100644 --- a/doc/classes/Viewport.xml +++ b/doc/classes/Viewport.xml @@ -284,6 +284,9 @@ The width and height of viewport. + + If [code]true[/code], the size override affects stretch as well. + If [code]true[/code], the viewport should render its background as transparent. diff --git a/scene/main/viewport.cpp b/scene/main/viewport.cpp index 8561d9aedb1..334c49f7cc1 100644 --- a/scene/main/viewport.cpp +++ b/scene/main/viewport.cpp @@ -3064,6 +3064,7 @@ void Viewport::_bind_methods() { ADD_PROPERTY(PropertyInfo(Variant::BOOL, "arvr"), "set_use_arvr", "use_arvr"); ADD_PROPERTY(PropertyInfo(Variant::VECTOR2, "size"), "set_size", "get_size"); + ADD_PROPERTY(PropertyInfo(Variant::BOOL, "size_override_stretch"), "set_size_override_stretch", "is_size_override_stretch_enabled"); ADD_PROPERTY(PropertyInfo(Variant::BOOL, "own_world"), "set_use_own_world", "is_using_own_world"); ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "world", PROPERTY_HINT_RESOURCE_TYPE, "World"), "set_world", "get_world"); ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "world_2d", PROPERTY_HINT_RESOURCE_TYPE, "World2D", 0), "set_world_2d", "get_world_2d");