fix sceleton + fix borders

This commit is contained in:
artem 2024-02-20 22:16:48 +03:00
parent 25946e6da1
commit 6ef12b6332
1 changed files with 2 additions and 2 deletions

View File

@ -230,8 +230,8 @@ fn build_air_island_block(resource_manager: &ResourceManager, graph: &mut Graph,
pub fn build_map(graph: &mut Graph, resource_manager: &ResourceManager) {
let bottom_y: f32 = -5.0;
let left_x: i32 = -35;
let right_x: i32 = 30;
let left_x: i32 = -43;
let right_x: i32 = 43;
for x in left_x..right_x {
build_ground_block(resource_manager, graph, x as f32, bottom_y);
}