···6060 fn get_value_offset(&self, light_id: i32, group_size: i32) -> f32;
61616262 /// Returns the duration of the group in beats.
6363- /// # Unknown
6464- /// If the [`FilterType`] is `Unknown` then the result will be zero.
6363+ /// # Undefined
6464+ /// If the [`FilterType`] is `Undefined` then the result will be zero.
6565 #[deprecated(note = "Experimental. Does not consider random in filter calculations.")]
6666 fn get_duration(&self, group_size: i32) -> f32;
6767}
···125125 }
126126 }
127127 DistributionType::Step => self.beat_dist_value * filtered_size as f32,
128128- DistributionType::Unknown(_) => 0.0,
128128+ DistributionType::Undefined(_) => 0.0,
129129 }
130130 }
131131 }