diff options
author | Rasmus Vermeulen <vermeulen.rasmus@gmail.com> | 2020-03-17 21:33:36 +0100 |
---|---|---|
committer | Rasmus Vermeulen <vermeulen.rasmus@gmail.com> | 2020-03-17 21:33:39 +0100 |
commit | 855f4dc1930007f13f32bed5572aa812e32f9e63 (patch) | |
tree | 64cdfdab0e2679b3a1b1ec01c37901288d236fb8 | |
parent | b8577ecce1bb62a4a589d02bdd71b701e5bdea81 (diff) |
Add size warning to Viewport Node
-rw-r--r-- | scene/main/viewport.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scene/main/viewport.cpp b/scene/main/viewport.cpp index dfd55e2577..dbb0e8215a 100644 --- a/scene/main/viewport.cpp +++ b/scene/main/viewport.cpp @@ -2948,12 +2948,14 @@ Control *Viewport::get_modal_stack_top() const { } String Viewport::get_configuration_warning() const { - /*if (get_parent() && !Object::cast_to<Control>(get_parent()) && !render_target) { return TTR("This viewport is not set as render target. If you intend for it to display its contents directly to the screen, make it a child of a Control so it can obtain a size. Otherwise, make it a RenderTarget and assign its internal texture to some node for display."); }*/ + if (size.x == 0 || size.y == 0) { + return TTR("This viewport can't render anything.\nConsider increasing the size."); + } return String(); } |