add build files to gitignore, optimization and remove right bar
This commit is contained in:
parent
0fe4c37b54
commit
e12f2cd896
3 changed files with 3 additions and 3 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -2,4 +2,5 @@
|
|||
target
|
||||
node_modules
|
||||
.cache
|
||||
wxbox_client_wasm/dist
|
||||
wxbox_client_wasm/dist
|
||||
crates/client/dist
|
||||
|
|
|
@ -75,7 +75,7 @@ impl eframe::App for App {
|
|||
&mut self.layer_manager,
|
||||
&mut self.selected_layer,
|
||||
);
|
||||
right_bar(ctx);
|
||||
//right_bar(ctx);
|
||||
|
||||
egui::CentralPanel::default().show(ctx, |ui| {
|
||||
ui.add(walkers::Map::new(
|
||||
|
|
|
@ -117,7 +117,6 @@ impl Tiles for LayerManager {
|
|||
))))
|
||||
});
|
||||
let tiles_here = layer.0.borrow_mut().at(tile_id);
|
||||
debug!("@ has {}", tiles_here.len());
|
||||
layers.extend(tiles_here);
|
||||
}
|
||||
layers
|
||||
|
|
Loading…
Add table
Reference in a new issue