2019-04-15 14:49:41 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2022-08-05 18:51:38 +02:00
<class name= "AudioStreamGeneratorPlayback" inherits= "AudioStreamPlaybackResampled" version= "3.6" xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation= "../class.xsd" >
2019-04-15 14:49:41 +02:00
<brief_description >
2021-05-13 02:30:34 +02:00
Plays back audio generated using [AudioStreamGenerator].
2019-04-15 14:49:41 +02:00
</brief_description>
<description >
2021-05-13 02:30:34 +02:00
This class is meant to be used with [AudioStreamGenerator] to play back the generated audio in real-time.
2019-04-15 14:49:41 +02:00
</description>
<tutorials >
2021-05-13 02:30:34 +02:00
<link title= "Audio Generator Demo" > https://godotengine.org/asset-library/asset/526</link>
2022-01-30 02:33:16 +01:00
<link title= "Godot 3.2 will get new audio features" > https://godotengine.org/article/godot-32-will-get-new-audio-features</link>
2019-04-15 14:49:41 +02:00
</tutorials>
<methods >
<method name= "can_push_buffer" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "bool" />
<argument index= "0" name= "amount" type= "int" />
2019-04-15 14:49:41 +02:00
<description >
2021-05-13 02:30:34 +02:00
Returns [code]true[/code] if a buffer of the size [code]amount[/code] can be pushed to the audio sample data buffer without overflowing it, [code]false[/code] otherwise.
2019-04-15 14:49:41 +02:00
</description>
</method>
<method name= "clear_buffer" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
2019-04-15 14:49:41 +02:00
<description >
2021-05-13 02:30:34 +02:00
Clears the audio sample data buffer.
2019-04-15 14:49:41 +02:00
</description>
</method>
<method name= "get_frames_available" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "int" />
2019-04-15 14:49:41 +02:00
<description >
2022-09-10 13:39:13 +02:00
Returns the number of frames that can be pushed to the audio sample data buffer without overflowing it. If the result is [code]0[/code], the buffer is full.
2019-04-15 14:49:41 +02:00
</description>
</method>
<method name= "get_skips" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "int" />
2019-04-15 14:49:41 +02:00
<description >
</description>
</method>
<method name= "push_buffer" >
2021-07-30 15:28:05 +02:00
<return type= "bool" />
<argument index= "0" name= "frames" type= "PoolVector2Array" />
2019-04-15 14:49:41 +02:00
<description >
2021-05-13 02:30:34 +02:00
Pushes several audio data frames to the buffer. This is usually more efficient than [method push_frame] in C# and compiled languages via GDNative, but [method push_buffer] may be [i]less[/i] efficient in GDScript.
2019-04-15 14:49:41 +02:00
</description>
</method>
<method name= "push_frame" >
2021-07-30 15:28:05 +02:00
<return type= "bool" />
<argument index= "0" name= "frame" type= "Vector2" />
2019-04-15 14:49:41 +02:00
<description >
2021-05-13 02:30:34 +02:00
Pushes a single audio data frame to the buffer. This is usually less efficient than [method push_buffer] in C# and compiled languages via GDNative, but [method push_frame] may be [i]more[/i] efficient in GDScript.
2019-04-15 14:49:41 +02:00
</description>
</method>
</methods>
<constants >
</constants>
</class>