Merge pull request #24011 from Xrayez/fix-23031

Init `ignore_camera_zoom` property in parallax background constructor
This commit is contained in:
Rémi Verschelde 2018-11-28 10:25:51 +01:00 committed by GitHub
commit 62f25142ee
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -206,7 +206,9 @@ void ParallaxBackground::_bind_methods() {
ParallaxBackground::ParallaxBackground() {
base_scale = Vector2(1, 1);
scale = 1.0;
set_layer(-1); //behind all by default
base_scale = Vector2(1, 1);
ignore_camera_zoom = false;
}