mirror of
https://github.com/oliverbooth/VpSharp
synced 2024-11-09 23:35:41 +00:00
Query by order of closest to center outward
This commit is contained in:
parent
11d8d23339
commit
b7e43666b5
@ -65,12 +65,9 @@ public sealed partial class VirtualParadiseClient
|
||||
hashSet.Add(new Cell(x, z));
|
||||
}
|
||||
|
||||
var centerPosition = center.ToVector3d();
|
||||
var cells = new List<Cell>(hashSet);
|
||||
cells.Sort((a, b) =>
|
||||
{
|
||||
int x = a.X.CompareTo(b.X);
|
||||
return x == 0 ? a.Z.CompareTo(b.Z) : x;
|
||||
});
|
||||
cells.Sort((a, b) => Vector3d.DistanceSquared(a.ToVector3d(), centerPosition).CompareTo(Vector3d.Distance(b.ToVector3d(), centerPosition)));
|
||||
|
||||
var objects = new List<VirtualParadiseObject>();
|
||||
var tasks = new List<Task>();
|
||||
|
Loading…
Reference in New Issue
Block a user