Skip to content

rework how chunks get chosen for remeshing

Algorhythm requested to merge mesh_ordering into master

Addresses #70 (closed) Currently each new or changed chunk will add all its neighbours to a list so they get updated too. This leads to lots of chunks being remeshed multiple times, which is unnecessary.

I changed the use of LinkedList to one of HashMap which removes duplication.

Edited by Algorhythm

Merge request reports