Beatsaber Rust Utilities: A Beatsaber V3 parsing library.
beatsaber beatmap
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #19 from AlephCubed/bevy-color

Implement `From` for `bevy_color::Color`.

authored by

AlephCubed and committed by
GitHub
049917f4 65158795

+12
+12
src/info/color_scheme.rs
··· 163 163 } 164 164 } 165 165 } 166 + 167 + impl From<bevy_color::Color> for Color { 168 + fn from(value: bevy_color::Color) -> Self { 169 + Srgba::from(value).into() 170 + } 171 + } 172 + 173 + impl From<Color> for bevy_color::Color { 174 + fn from(value: Color) -> Self { 175 + Self::Srgba(value.into()) 176 + } 177 + } 166 178 }