Added docs to AudioStreamPlayer for get_mix_time
This commit is contained in:
parent
c2027c8233
commit
11fb4ffbf8
|
@ -184,6 +184,12 @@
|
|||
Returns the sample rate at the output of the audioserver.
|
||||
</description>
|
||||
</method>
|
||||
<method name="get_output_latency" qualifiers="const">
|
||||
<return type="float">
|
||||
</return>
|
||||
<description>
|
||||
</description>
|
||||
</method>
|
||||
<method name="get_speaker_mode" qualifiers="const">
|
||||
<return type="int" enum="AudioServer.SpeakerMode">
|
||||
</return>
|
||||
|
@ -191,6 +197,18 @@
|
|||
Returns the speaker configuration.
|
||||
</description>
|
||||
</method>
|
||||
<method name="get_time_since_last_mix" qualifiers="const">
|
||||
<return type="float">
|
||||
</return>
|
||||
<description>
|
||||
</description>
|
||||
</method>
|
||||
<method name="get_time_to_next_mix" qualifiers="const">
|
||||
<return type="float">
|
||||
</return>
|
||||
<description>
|
||||
</description>
|
||||
</method>
|
||||
<method name="is_bus_bypassing_effects" qualifiers="const">
|
||||
<return type="bool">
|
||||
</return>
|
||||
|
|
|
@ -10,6 +10,15 @@
|
|||
<link>https://docs.godotengine.org/en/latest/tutorials/audio/audio_streams.html</link>
|
||||
</tutorials>
|
||||
<methods>
|
||||
<method name="get_mix_time" qualifiers="const">
|
||||
<return type="float">
|
||||
</return>
|
||||
<description>
|
||||
Returns the actual amount of time this stream player was mixing since play() was pressed.
|
||||
To know the exact position this song is mixing right now, add the value to [method AudioServer.get_time_since_last_mix].
|
||||
Also consider substracting [method AudioServer.get_output_latency] to that result.
|
||||
</description>
|
||||
</method>
|
||||
<method name="get_playback_position">
|
||||
<return type="float">
|
||||
</return>
|
||||
|
|
|
@ -27,6 +27,12 @@
|
|||
Clears the server from all translations.
|
||||
</description>
|
||||
</method>
|
||||
<method name="get_loaded_locales" qualifiers="const">
|
||||
<return type="Array">
|
||||
</return>
|
||||
<description>
|
||||
</description>
|
||||
</method>
|
||||
<method name="get_locale" qualifiers="const">
|
||||
<return type="String">
|
||||
</return>
|
||||
|
|
Loading…
Reference in New Issue