Browse Source

Merge pull request #2764 from guilhermefelipecgs/fix_camera2d_set_zoom

Fix for smoothing camera2D when you change zoom.
Juan Linietsky 9 years ago
parent
commit
e84fa04141
1 changed files with 2 additions and 0 deletions
  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 {