2017-09-13 04:42:36 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8" ?>
|
2019-04-01 18:33:56 +08:00
|
|
|
<class name="AudioStreamPlayer" inherits="Node" category="Core" version="3.2">
|
2017-09-13 04:42:36 +08:00
|
|
|
<brief_description>
|
2019-06-22 07:04:47 +08:00
|
|
|
Plays back audio non-positionally.
|
2017-09-13 04:42:36 +08:00
|
|
|
</brief_description>
|
|
|
|
<description>
|
2019-06-22 07:04:47 +08:00
|
|
|
Plays an audio stream non-positionally.
|
2017-09-13 04:42:36 +08:00
|
|
|
</description>
|
|
|
|
<tutorials>
|
2018-11-05 15:46:27 +08:00
|
|
|
<link>https://docs.godotengine.org/en/latest/tutorials/audio/audio_streams.html</link>
|
2017-09-13 04:42:36 +08:00
|
|
|
</tutorials>
|
|
|
|
<methods>
|
2017-09-21 11:31:36 +08:00
|
|
|
<method name="get_playback_position">
|
2017-09-13 04:42:36 +08:00
|
|
|
<return type="float">
|
|
|
|
</return>
|
|
|
|
<description>
|
2018-08-01 03:20:27 +08:00
|
|
|
Returns the position in the [AudioStream] in seconds.
|
2017-09-13 04:42:36 +08:00
|
|
|
</description>
|
|
|
|
</method>
|
2019-04-15 20:49:41 +08:00
|
|
|
<method name="get_stream_playback">
|
|
|
|
<return type="AudioStreamPlayback">
|
|
|
|
</return>
|
|
|
|
<description>
|
|
|
|
</description>
|
|
|
|
</method>
|
2017-09-13 04:42:36 +08:00
|
|
|
<method name="play">
|
|
|
|
<return type="void">
|
|
|
|
</return>
|
2017-09-10 21:37:49 +08:00
|
|
|
<argument index="0" name="from_position" type="float" default="0.0">
|
2017-09-13 04:42:36 +08:00
|
|
|
</argument>
|
|
|
|
<description>
|
2019-06-22 07:04:47 +08:00
|
|
|
Plays the audio from the given [code]from_position[/code], in seconds.
|
2017-09-13 04:42:36 +08:00
|
|
|
</description>
|
|
|
|
</method>
|
|
|
|
<method name="seek">
|
|
|
|
<return type="void">
|
|
|
|
</return>
|
2017-09-10 21:37:49 +08:00
|
|
|
<argument index="0" name="to_position" type="float">
|
2017-09-13 04:42:36 +08:00
|
|
|
</argument>
|
|
|
|
<description>
|
2017-09-17 02:09:29 +08:00
|
|
|
Sets the position from which audio will be played, in seconds.
|
2017-09-13 04:42:36 +08:00
|
|
|
</description>
|
|
|
|
</method>
|
|
|
|
<method name="stop">
|
|
|
|
<return type="void">
|
|
|
|
</return>
|
|
|
|
<description>
|
2017-09-17 02:09:29 +08:00
|
|
|
Stops the audio.
|
2017-09-13 04:42:36 +08:00
|
|
|
</description>
|
|
|
|
</method>
|
|
|
|
</methods>
|
|
|
|
<members>
|
2019-06-29 18:38:01 +08:00
|
|
|
<member name="autoplay" type="bool" setter="set_autoplay" getter="is_autoplay_enabled" default="false">
|
2019-06-29 21:24:23 +08:00
|
|
|
If [code]true[/code], audio plays when added to scene tree.
|
2017-09-13 04:42:36 +08:00
|
|
|
</member>
|
2019-06-29 18:38:01 +08:00
|
|
|
<member name="bus" type="String" setter="set_bus" getter="get_bus" default=""Master"">
|
2017-09-17 02:09:29 +08:00
|
|
|
Bus on which this audio is playing.
|
2017-09-13 04:42:36 +08:00
|
|
|
</member>
|
2019-06-29 18:38:01 +08:00
|
|
|
<member name="mix_target" type="int" setter="set_mix_target" getter="get_mix_target" enum="AudioStreamPlayer.MixTarget" default="0">
|
2017-10-10 22:00:10 +08:00
|
|
|
If the audio configuration has more than two speakers, this sets the target channels. See [code]MIX_TARGET_*[/code] constants.
|
2017-09-13 04:42:36 +08:00
|
|
|
</member>
|
2019-06-29 18:38:01 +08:00
|
|
|
<member name="pitch_scale" type="float" setter="set_pitch_scale" getter="get_pitch_scale" default="1.0">
|
2018-05-04 19:31:11 +08:00
|
|
|
Changes the pitch and the tempo of the audio.
|
2018-02-19 17:47:16 +08:00
|
|
|
</member>
|
2019-06-29 18:38:01 +08:00
|
|
|
<member name="playing" type="bool" setter="_set_playing" getter="is_playing" default="false">
|
2018-12-20 20:46:54 +08:00
|
|
|
If [code]true[/code], audio is playing.
|
2017-09-13 04:42:36 +08:00
|
|
|
</member>
|
2019-06-29 18:38:01 +08:00
|
|
|
<member name="stream" type="AudioStream" setter="set_stream" getter="get_stream" default="null">
|
2017-09-17 02:09:29 +08:00
|
|
|
The [AudioStream] object to be played.
|
2017-09-13 04:42:36 +08:00
|
|
|
</member>
|
2019-06-29 18:38:01 +08:00
|
|
|
<member name="stream_paused" type="bool" setter="set_stream_paused" getter="get_stream_paused" default="false">
|
2018-07-26 17:56:21 +08:00
|
|
|
</member>
|
2019-06-29 18:38:01 +08:00
|
|
|
<member name="volume_db" type="float" setter="set_volume_db" getter="get_volume_db" default="0.0">
|
2017-09-17 02:09:29 +08:00
|
|
|
Volume of sound, in dB.
|
2017-09-13 04:42:36 +08:00
|
|
|
</member>
|
|
|
|
</members>
|
|
|
|
<signals>
|
|
|
|
<signal name="finished">
|
|
|
|
<description>
|
2017-09-17 02:09:29 +08:00
|
|
|
Emitted when the audio stops playing.
|
2017-09-13 04:42:36 +08:00
|
|
|
</description>
|
|
|
|
</signal>
|
|
|
|
</signals>
|
|
|
|
<constants>
|
2017-11-25 06:16:30 +08:00
|
|
|
<constant name="MIX_TARGET_STEREO" value="0" enum="MixTarget">
|
2017-10-10 22:00:10 +08:00
|
|
|
The audio will be played only on the first channel.
|
2017-09-16 07:46:14 +08:00
|
|
|
</constant>
|
2017-11-25 06:16:30 +08:00
|
|
|
<constant name="MIX_TARGET_SURROUND" value="1" enum="MixTarget">
|
2017-10-10 22:00:10 +08:00
|
|
|
The audio will be played on all surround channels.
|
2017-09-16 07:46:14 +08:00
|
|
|
</constant>
|
2017-11-25 06:16:30 +08:00
|
|
|
<constant name="MIX_TARGET_CENTER" value="2" enum="MixTarget">
|
2017-10-10 22:00:10 +08:00
|
|
|
The audio will be played on the second channel, which is usually the center.
|
2017-09-16 07:46:14 +08:00
|
|
|
</constant>
|
2017-09-13 04:42:36 +08:00
|
|
|
</constants>
|
|
|
|
</class>
|