mirror of
https://github.com/godotengine/godot.git
synced 2024-11-22 04:06:14 +00:00
Fix new transform to pixel snapping logic
Co-authored-by: lawnjelly <lawnjelly@gmail.com>
This commit is contained in:
parent
f939d9399f
commit
a78d96086f
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user