Răsfoiți Sursa

Merge pull request #2764 from guilhermefelipecgs/fix_camera2d_set_zoom

Fix for smoothing camera2D when you change zoom.
Juan Linietsky 9 ani în urmă
părinte
comite
e84fa04141
1 a modificat fișierele cu 2 adăugiri și 0 ștergeri
  1. 2 0
      scene/2d/camera_2d.cpp

+ 2 - 0
scene/2d/camera_2d.cpp

@@ -57,7 +57,9 @@ void Camera2D::_update_scroll() {
 void Camera2D::set_zoom(const Vector2 &p_zoom) {
 
 	zoom = p_zoom;
+	Point2 old_smoothed_camera_pos = smoothed_camera_pos;
 	_update_scroll();
+	smoothed_camera_pos = old_smoothed_camera_pos;
 };
 
 Vector2 Camera2D::get_zoom() const {