We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7127dd2 commit 5a91f27Copy full SHA for 5a91f27
1 file changed
src/node.rs
@@ -1,4 +1,3 @@
1
-use std::cmp::Reverse;
2
use std::ops::Range;
3
4
use bevy::ecs::query::QueryItem;
@@ -211,10 +210,10 @@ impl PhaseItem for TransparentOutline {
211
210
}
212
213
impl SortedPhaseItem for TransparentOutline {
214
- type SortKey = Reverse<FloatOrd>;
+ type SortKey = FloatOrd;
215
216
fn sort_key(&self) -> Self::SortKey {
217
- Reverse(FloatOrd(self.distance))
+ FloatOrd(self.distance)
218
219
220
0 commit comments