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.

Moved some misplaced documentation.

+5 -4
+3 -2
src/difficulty/lightshow/group/color.rs
··· 55 55 /// A value of zero will have no effect. 56 56 #[serde(rename = "w")] 57 57 pub beat_dist_value: f32, 58 + 59 + #[serde(rename = "t")] 60 + pub bright_dist_type: DistributionType, 58 61 /// The strength of the brightness distribution. Dependent on the [distribution type](Self::bright_dist_type). 59 62 /// 60 63 /// A value of zero will have no effect. 61 - #[serde(rename = "t")] 62 - pub bright_dist_type: DistributionType, 63 64 #[serde(rename = "r")] 64 65 pub bright_dist_value: f32, 65 66 /// Whether the first [`ColorEventData`] of the group will be effected by brightness distribution.
+2 -2
src/difficulty/lightshow/group/fx.rs
··· 201 201 /// 202 202 /// A value of zero will have no effect. 203 203 pub beat_dist_value: f32, 204 - /// The strength of the brightness distribution. Dependent on the [distribution type](Self::bright_dist_type). 204 + pub fx_dist_type: DistributionType, 205 + /// The strength of the brightness distribution. Dependent on the [distribution type](Self::fx_dist_type). 205 206 /// 206 207 /// A value of zero will have no effect. 207 - pub fx_dist_type: DistributionType, 208 208 pub fx_dist_value: f32, 209 209 /// Whether the first [`FxEventData`] of the group will be effected by brightness distribution. 210 210 pub fx_dist_effect_first: LooseBool,