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 #16 from AlephCubed/v0.2.0

Update version number and small docs improvement.

authored by

AlephCubed and committed by
GitHub
588f50d5 9e971adc

+8 -3
+1 -1
Cargo.lock
··· 156 156 157 157 [[package]] 158 158 name = "bsru" 159 - version = "0.2.0-beta.2" 159 + version = "0.2.0" 160 160 dependencies = [ 161 161 "bevy_color", 162 162 "bevy_reflect",
+1 -1
Cargo.toml
··· 1 1 [package] 2 2 name = "bsru" 3 - version = "0.2.0-beta.2" 3 + version = "0.2.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"]
+6 -1
src/difficulty/lightshow/filter.rs
··· 115 115 } 116 116 } 117 117 118 + #[allow(deprecated)] 118 119 /// Returns the number of light chunks effected by the filter, but before applying the limit. 119 - /// 120 120 /// This is required for distribution calculations. 121 + /// 122 + /// Also see [`count_filtered`](Self::count_filtered). 121 123 /// # Unknown 122 124 /// If the [`FilterType`] is `Unknown` then the result will be the same as `group_size`. 123 125 #[must_use] ··· 144 146 } 145 147 } 146 148 149 + #[allow(deprecated)] 147 150 /// Returns the number of light chunks effected by the filter. 151 + /// 152 + /// Also see [`count_filtered_without_limit`](Self::count_filtered_without_limit). 148 153 /// # Unknown 149 154 /// If the [`FilterType`] is `Unknown` then the result will be the same as `group_size`. 150 155 #[must_use]