nsmryan / RustRoguelike

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

Tall Grass Generation #482

Open nsmryan opened 2 years ago

nsmryan commented 2 years ago

Currently tall grass only occurs due to grass skills. This could be used in level generation for a little more variety.

MicroChasm commented 2 years ago

I do think that if we have a type of level tile, we might as well use it. We might need to do some testing in 3d to see if it looks reasonable, or if it looks like grass that tall would only come from a spell. But I say lets go for it, for now.

nsmryan commented 2 years ago

I added tall grass generation, and it seems to be in the level, but I don't think we visually distinguish between tall grass and normal grass? I'm not really sure.

nsmryan commented 2 years ago

Tall grass has an animation - however, we need another entity type for tall grass to display the other animation. This would need to be handled along with grass for removing the entity when the tile is modified (grass is removed).