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.

Updated version number

+3 -2
+1 -1
Cargo.lock
··· 160 160 161 161 [[package]] 162 162 name = "bsru" 163 - version = "0.6.0-rc.1" 163 + version = "0.6.0" 164 164 dependencies = [ 165 165 "bevy_color", 166 166 "bevy_reflect",
+1 -1
Cargo.toml
··· 1 1 [package] 2 2 name = "bsru" 3 - version = "0.6.0-rc.1" 3 + version = "0.6.0" 4 4 edition = "2024" 5 5 description = "Beatsaber Rust Utilities: A Beatsaber V3 parsing library." 6 6 categories = ["game-development", "data-structures", "parser-implementations"]
+1
src/difficulty/lightshow/group.rs
··· 64 64 fn get_duration(&self, group_size: i32) -> f32; 65 65 } 66 66 67 + // Todo This macro could be a default trait implementation if other getters are added. 67 68 #[macro_export] 68 69 #[doc(hidden)] 69 70 macro_rules! impl_event_group {