You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To support 2021, a simple modification was made to ChunkNode.cs commenting out the Gizmos.DrawLineList call and replacing with a for each in collection loop:
int z = 0; foreach (var connectedNode in connections.Keys) { Gizmos.color = Color.blue; Gizmos.DrawLine(points[z++], points[z++]); }