Change textures of tiles #75

Merged
CoCo_Sol merged 14 commits from change-texture into main 2024-03-09 14:37:00 +00:00
4 changed files with 4 additions and 13 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 715 KiB

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 806 KiB

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 832 KiB

After

Width:  |  Height:  |  Size: 12 KiB

View file

@ -42,25 +42,16 @@ impl Tile {
/// this function in the future. /// this function in the future.
const fn get_image_size(&self) -> Vec2 { const fn get_image_size(&self) -> Vec2 {
match self { match self {
Self::Grass => Vec2 { Self::Grass => Vec2 { x: 184.0, y: 164.0 },
x: 1250.0, Self::Forest => Vec2 { x: 184.0, y: 138.0 },
y: 1000.0, Self::Hill => Vec2 { x: 184.0, y: 181.0 },
},
Self::Forest => Vec2 {
x: 1250.0,
y: 1000.0,
},
Self::Hill => Vec2 {
x: 1250.0,
y: 1300.0,
},
} }
} }
} }
/// Init resources related to the rendering of the map. /// Init resources related to the rendering of the map.
fn init_resources_for_rendering(mut commands: Commands) { fn init_resources_for_rendering(mut commands: Commands) {
commands.insert_resource(TilesGap(Vec2 { x: 70., y: 40. })); commands.insert_resource(TilesGap(Vec2 { x: 70., y: 35. }));
commands.insert_resource(TilesSize(Vec2 { x: 125., y: 100. })) commands.insert_resource(TilesSize(Vec2 { x: 125., y: 100. }))
} }