SecondHalfGames / yakui

yakui is a declarative Rust UI library for games
Apache License 2.0
222 stars 18 forks source link

Text still shows with Color alpha 0 #113

Closed cybersoulK closed 8 months ago

cybersoulK commented 8 months ago
let mut text = yakui::widgets::Text::new(100.0 * death_alpha, "Died");
text.style.color = yakui::Color::rgba(120, 30, 30, 0);
text.show();
image
cybersoulK commented 8 months ago

https://github.com/SecondHalfGames/yakui/commit/2274a218daa05b4ec76bcfa8ce677a170082efd7

this commit fixed it