Issue 377 (#383)

* feat: Implements speech fixes #377

* docs: Automatic update of API docs

* chore: Updated speech translation.

Co-authored-by: Dennis Ploeger <develop@dieploegers.de>
Co-authored-by: dploeger <dploeger@users.noreply.github.com>
This commit is contained in:
Dennis Ploeger
2021-09-06 08:52:16 +02:00
committed by GitHub
parent 3dc779311c
commit c8958e7454
54 changed files with 279 additions and 85 deletions

View File

@@ -0,0 +1,51 @@
<!-- Auto-generated from JSON by GDScript docs maker. Do not edit this document directly. -->
# ESCSoundPlayer
**Extends:** [Control](../Control)
## Description
Background sound player
## Property Descriptions
### global\_id
```gdscript
export var global_id: String = "_sound"
```
Global id of the background sound player
### state
```gdscript
var state: String = "default"
```
The state of the sound player. "default" or "off" disable sound
Any other state refers to a sound stream that should be played
### stream
```gdscript
var stream: AudioStreamPlayer
```
Reference to the audio player
## Method Descriptions
### set\_state
```gdscript
func set_state(p_state: String, p_force: bool = false)
```
Set the state of this player
#### Parameters
- p_state: New state to use
- p_force: Override the existing state even if the stream is still playing