Explorar el Código

Merge pull request #41934 from timothyqiu/parallax-ignore-zoom

Fixes ParallaxLayer offset when camera zoom is ignored
Rémi Verschelde hace 5 años
padre
commit
f87c75f77b
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      scene/2d/parallax_background.cpp

+ 1 - 1
scene/2d/parallax_background.cpp

@@ -101,7 +101,7 @@ void ParallaxBackground::_update_scroll() {
 		}
 
 		if (ignore_camera_zoom) {
-			l->set_base_offset_and_scale(ofs, 1.0, screen_offset);
+			l->set_base_offset_and_scale((ofs + screen_offset * (scale - 1)) / scale, 1.0, screen_offset);
 		} else {
 			l->set_base_offset_and_scale(ofs, scale, screen_offset);
 		}