diff options
author | Lizzy Fleckenstein <eliasfleckenstein@web.de> | 2023-05-15 21:55:22 +0200 |
---|---|---|
committer | Lizzy Fleckenstein <eliasfleckenstein@web.de> | 2023-05-15 21:55:22 +0200 |
commit | 306f2cf2c41886edaf9860038b9041a8c82c4b5b (patch) | |
tree | 7bd84c5a2452f587a0da2ba0f4f5e57af7b63f3b /src/main.rs | |
parent | 654b4ec6fa67de3c19fed8d32850cc9d30c83190 (diff) | |
download | mt_client-306f2cf2c41886edaf9860038b9041a8c82c4b5b.tar.xz |
Defer block mesh building for 100ms or until all neighbors are present
Avoid excessive rebuilds
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs index 04e8a91..759a5bf 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,3 +1,5 @@ +#![feature(hash_drain_filter)] + mod gfx; mod net; |