bcthund / Project_Parsec

1 stars 0 forks source link

LOD Management #21

Open bcthund opened 3 years ago

bcthund commented 3 years ago

All maps are currently loaded with the same number of vertices, need to implement a system of reducing the vertices while still maintaining proper connection to neighbors.

bcthund commented 3 years ago

When creating the map data for a chunk we create a full resolution set with indexed vertices. We should add some extra index arrays for several levels of detail. Then change the index array used according to chunk distance.

The difficult part will be stitching, which may require keeping a chunks edges at full resolution as neighbors are unknown to the current chunk or may not even exist.