···6060 fn get_value_offset(&self, light_id: i32, group_size: i32) -> f32;
61616262 /// Returns the duration of the group in beats.
6363- /// # Undefined
6464- /// If the [`FilterType`] is `Undefined` then the result will be zero.
6563 #[deprecated(note = "Experimental. Does not consider random in filter calculations.")]
6664 fn get_duration(&self, group_size: i32) -> f32;
6765}
···125123 DistributionType::Step => {
126124 data.beat_offset + self.beat_dist_value * filtered_size as f32
127125 }
128128- DistributionType::Undefined(_) => 0.0,
126126+ DistributionType::Undefined(_) => data.beat_offset,
129127 }
130128 }
131129 }