You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-12-06 17:25:19 +00:00
Reversed operator in SortLifetime fixing #29440
(cherry picked from commit 6a23eff748)
This commit is contained in:
committed by
Rémi Verschelde
parent
03a1570a74
commit
df2a809aae
@@ -116,7 +116,7 @@ private:
|
||||
const Particle *particles;
|
||||
|
||||
bool operator()(int p_a, int p_b) const {
|
||||
return particles[p_a].time < particles[p_b].time;
|
||||
return particles[p_a].time > particles[p_b].time;
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user