fixed Camera2D rotation with non-square zoom

This commit is contained in:
greenfox 2020-11-22 18:09:33 -06:00
parent 6bd4074f76
commit b9c0897713

View file

@ -198,10 +198,10 @@ Transform2D Camera2D::get_camera_transform() {
camera_screen_center = screen_rect.position + screen_rect.size * 0.5;
Transform2D xform;
xform.scale_basis(zoom);
if (rotating) {
xform.set_rotation(angle);
}
xform.scale_basis(zoom);
xform.set_origin(screen_rect.position /*.floor()*/);
/*