nsmryan / RustRoguelike

This Rust Roguelike is a Roguelike written in Rust.
17 stars 3 forks source link

SpriteSheet List #487

Open nsmryan opened 2 years ago

nsmryan commented 2 years ago

It seems like we should make a list of sprites in the main sprite sheet (rustrogueliketiles.png), similar to the sprite atlas. This way we can make sure we have them all in the game, and that I have all the tiles correct.

One thing we could do is make this a text file that I could read in, instead of having the tile numbers as constants in 'constants.rs'.

MicroChasm commented 2 years ago

Yea, that makes sense. There are quite a few tiles now. I wouldn't mind going through and populating all the tile names and locations. In fact, this might be a good time to reorganize the sprite sheet in a way that makes more sense.