()
| 13 | |
| 14 | impl CharacterVolumeConfig { |
| 15 | pub(crate) fn default_from_engine() -> Self { |
| 16 | CharacterVolumeConfig { |
| 17 | volumes: ENGINE_CONFIG |
| 18 | .character_full_name_list() |
| 19 | .iter() |
| 20 | .map(|name| (name.to_string(), 100.0_f32)) |
| 21 | .collect(), |
| 22 | } |
| 23 | } |
| 24 | |
| 25 | pub(crate) fn fill_missing(&mut self) { |
| 26 | for name in ENGINE_CONFIG.character_full_name_list() { |
nothing calls this directly
no test coverage detected