Implement BPM support
Based on #62896, only implements the BPM support part. * Implements BPM support in the AudioStreamOGG/MP3 importers. * Can select BPM/Bar Size and total beats in a song file, as well as edit looping points. * Looping is now BPM aware * Added a special importer UI for configuring this. * Added a special preview showing the audio waveform as well as the playback position in the resource picker. * Renamed `AudioStream::instance` to `instantiate` for correctness.
This commit is contained in:
parent
976cb7ea9f
commit
d1ddee2258
41 changed files with 1548 additions and 438 deletions
|
|
@ -9,6 +9,12 @@
|
|||
<tutorials>
|
||||
</tutorials>
|
||||
<members>
|
||||
<member name="bar_beats" type="int" setter="set_bar_beats" getter="get_bar_beats" default="4">
|
||||
</member>
|
||||
<member name="beat_count" type="int" setter="set_beat_count" getter="get_beat_count" default="0">
|
||||
</member>
|
||||
<member name="bpm" type="float" setter="set_bpm" getter="get_bpm" default="0.0">
|
||||
</member>
|
||||
<member name="data" type="PackedByteArray" setter="set_data" getter="get_data" default="PackedByteArray()">
|
||||
Contains the audio data in bytes.
|
||||
You can load a file without having to import it beforehand using the code snippet below. Keep in mind that this snippet loads the whole file into memory and may not be ideal for huge files (hundreds of megabytes or more).
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue