Add sprites that are a bit more fun

This commit is contained in:
Timothy Warren 2020-07-23 13:24:12 -04:00
parent 6ca2dbc3f6
commit d9223a96d8
11 changed files with 64 additions and 0 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 197 B

After

Width:  |  Height:  |  Size: 582 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 162 B

After

Width:  |  Height:  |  Size: 426 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 131 B

After

Width:  |  Height:  |  Size: 397 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 197 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 162 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 131 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 264 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 167 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 264 B

After

Width:  |  Height:  |  Size: 669 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 167 B

After

Width:  |  Height:  |  Size: 598 B

View File

@ -172,6 +172,22 @@ pub fn initialize_level(world: &mut World) {
z: 0, // we will get the z from the factory functions
},
);
create_floor(
world,
Position {
x: 0,
y: 1,
z: 0,
}
);
create_player(
world,
Position {
x: 0,
y: 1,
z: 0, // we will get the z from the factory functions
},
);
create_wall(
world,
Position {
@ -180,6 +196,14 @@ pub fn initialize_level(world: &mut World) {
z: 0, // we will get the z from the factory functions
},
);
create_floor(
world,
Position {
x: 1,
y: 1,
z: 0,
}
);
create_box(
world,
Position {
@ -188,6 +212,46 @@ pub fn initialize_level(world: &mut World) {
z: 0, // we will get the z from the factory functions
},
);
create_floor(
world,
Position {
x: 2,
y: 1,
z: 0,
}
);
create_box(
world,
Position {
x: 2,
y: 1,
z: 0, // we will get the z from the factory functions
},
);
create_box_spot(
world,
Position {
x: 3,
y: 0,
z: 0, // we will get the z from the factory functions
},
);
create_box_spot(
world,
Position {
x: 3,
y: 1,
z: 0, // we will get the z from the factory functions
},
);
create_box(
world,
Position {
x: 3,
y: 1,
z: 0, // we will get the z from the factory functions
},
);
}