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
Right now, FPS is very low (compared to Client). This is caused by two things:
We're generating/displaying a lot more chunks than Client.
Many chunks are missing neighbors when meshing, so extra faces are generated.
2 is probably caused by the snapshot system.
We need to make sure that the order of everything is:
(Load/gen chunks -> snapshot) all chunks in visible range -> mesh
Although, we would still have to worry about what happens when we move: chunks are (should be) remeshed when a neighbor updates. However, this should not cause the chunk itself to "update."
The text was updated successfully, but these errors were encountered:
Right now, FPS is very low (compared to Client). This is caused by two things:
2 is probably caused by the snapshot system.
We need to make sure that the order of everything is:
(Load/gen chunks -> snapshot) all chunks in visible range -> mesh
Although, we would still have to worry about what happens when we move: chunks are (should be) remeshed when a neighbor updates. However, this should not cause the chunk itself to "update."
The text was updated successfully, but these errors were encountered: