ndouglas / downdelving-old

An experimental roguelike written in Rust.
The Unlicense
1 stars 0 forks source link

Lighting/color effects seem to be recalculated constantly. #63

Open ndouglas opened 2 years ago

ndouglas commented 2 years ago

Story

There was a massive performance issue when I attempted to debug the lighting system. It appears that the lighting is recalculated each tick or frame. It would be preferable if this is only recalculated when necessary, i.e. "dirty" state.

Acceptance Criteria

Implementation Notes