Fix new transform to pixel snapping logic

Co-authored-by: lawnjelly <lawnjelly@gmail.com>
This commit is contained in:
Rémi Verschelde 2020-11-15 10:52:03 +01:00
parent f939d9399f
commit a78d96086f
No known key found for this signature in database
GPG key ID: C3336907360768E1

View file

@ -115,7 +115,7 @@ void RenderingServerCanvas::_cull_canvas_item(Item *p_canvas_item, const Transfo
Rect2 rect = ci->get_rect();
Transform2D xform = ci->xform;
if (snapping_2d_transforms_to_pixel) {
xform.elements[2].floor();
xform.elements[2] = xform.elements[2].floor();
}
xform = p_transform * xform;