Merge pull request #43786 from greenfox1505/3.2_Fix-Camera2D-ZoomRotation-Master
fixed Camera2D rotation with non-square zoom
This commit is contained in:
commit
43e383e656
1 changed files with 1 additions and 1 deletions
|
@ -198,10 +198,10 @@ Transform2D Camera2D::get_camera_transform() {
|
||||||
camera_screen_center = screen_rect.position + screen_rect.size * 0.5;
|
camera_screen_center = screen_rect.position + screen_rect.size * 0.5;
|
||||||
|
|
||||||
Transform2D xform;
|
Transform2D xform;
|
||||||
|
xform.scale_basis(zoom);
|
||||||
if (rotating) {
|
if (rotating) {
|
||||||
xform.set_rotation(angle);
|
xform.set_rotation(angle);
|
||||||
}
|
}
|
||||||
xform.scale_basis(zoom);
|
|
||||||
xform.set_origin(screen_rect.position /*.floor()*/);
|
xform.set_origin(screen_rect.position /*.floor()*/);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in a new issue