You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-07 12:30:27 +00:00
Order of 2D nodes in tree affects drawing properly again.
This commit is contained in:
@@ -63,6 +63,14 @@ public:
|
||||
}
|
||||
};
|
||||
|
||||
struct ItemIndexSort {
|
||||
|
||||
_FORCE_INLINE_ bool operator()(const Item *p_left, const Item *p_right) const {
|
||||
|
||||
return p_left->index < p_right->index;
|
||||
}
|
||||
};
|
||||
|
||||
struct ItemPtrSort {
|
||||
|
||||
_FORCE_INLINE_ bool operator()(const Item *p_left, const Item *p_right) const {
|
||||
|
||||
Reference in New Issue
Block a user