mirror of
https://github.com/lightsoutgames/godot-tts
synced 2024-11-08 14:55:58 +00:00
Eliminate Option in return.
This commit is contained in:
parent
ff247a3f19
commit
69b5c39f66
|
@ -174,7 +174,7 @@ impl TTS {
|
|||
}
|
||||
|
||||
#[export]
|
||||
fn speak(&mut self, _owner: &Node, message: GodotString, interrupt: bool) -> Option<Variant> {
|
||||
fn speak(&mut self, _owner: &Node, message: GodotString, interrupt: bool) -> Variant {
|
||||
let message = message.to_string();
|
||||
if let Ok(id) = self.0.speak(message, interrupt) {
|
||||
let utterance: Instance<Utterance, Unique> = Instance::new();
|
||||
|
@ -183,9 +183,10 @@ impl TTS {
|
|||
.map_mut(|u, _| u.0 = id)
|
||||
.expect("Failed to set utterance ID");
|
||||
}
|
||||
Some(utterance.owned_to_variant())
|
||||
let utterance = utterance.owned_to_variant();
|
||||
utterance
|
||||
} else {
|
||||
None
|
||||
Variant::default()
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user