Scale back coordinate types for new 50 km limit

This commit is contained in:
crumblingstatue 2023-04-03 12:01:59 +02:00
parent 64735c7455
commit d41032dbcc
4 changed files with 10 additions and 7 deletions

View file

@ -57,7 +57,7 @@ impl App {
fn do_update(&mut self) {
let tp = self.game.camera_offset.tile_pos();
self.game.camera_offset.y += 33;
self.game.camera_offset.y += 800;
imm_dbg!(tp);
imm_dbg!(tp.to_chunk_and_local());
}