mirror of
https://github.com/godotengine/godot.git
synced 2025-10-15 02:49:24 +00:00
small improvement to y_sort: make clear which item has to be drawn first when two have the same y-coordinate
This commit is contained in:

committed by
lonesurvivor

parent
4235abe8dc
commit
4118b21e43
@@ -407,7 +407,10 @@ class VisualServerRaster : public VisualServer {
|
||||
|
||||
_FORCE_INLINE_ bool operator()(const CanvasItem* p_left,const CanvasItem* p_right) const {
|
||||
|
||||
return p_left->xform.elements[2].y < p_right->xform.elements[2].y;
|
||||
if(Math::abs(p_left->xform.elements[2].y - p_right->xform.elements[2].y) < CMP_EPSILON )
|
||||
return p_left->xform.elements[2].x < p_right->xform.elements[2].x;
|
||||
else
|
||||
return p_left->xform.elements[2].y < p_right->xform.elements[2].y;
|
||||
}
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user