Merge pull request #53428 from akien-mga/4.x/27790-viewport-error-fix

Fix ViewportTexture error when viewport is used from a child scene
This commit is contained in:
Rémi Verschelde 2021-10-05 18:51:29 +02:00 committed by GitHub
commit a5d7b49342
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -57,17 +57,17 @@
#include "servers/audio_server.h"
void ViewportTexture::setup_local_to_scene() {
Node *local_scene = get_local_scene();
if (!local_scene) {
return;
}
if (vp) {
vp->viewport_textures.erase(this);
}
vp = nullptr;
Node *local_scene = get_local_scene();
if (!local_scene) {
return;
}
Node *vpn = local_scene->get_node(path);
ERR_FAIL_COND_MSG(!vpn, "ViewportTexture: Path to node is invalid.");