Init ignore_camera_zoom
property in parallax background constructor
The default value for `ignore_camera_zoom` property was initialized by garbage value, leading to camera's zoom to be ignored even if unset in editor most of the time.
This commit is contained in:
parent
c23710adde
commit
86eaded7b4
1 changed files with 3 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue