Actual buildable 4.6.1 release
Some checks failed
🔗 GHA / 📊 Static checks (push) Has been cancelled
🔗 GHA / 🤖 Android (push) Has been cancelled
🔗 GHA / 🍏 iOS (push) Has been cancelled
🔗 GHA / 🐧 Linux (push) Has been cancelled
🔗 GHA / 🍎 macOS (push) Has been cancelled
🔗 GHA / 🏁 Windows (push) Has been cancelled
🔗 GHA / 🌐 Web (push) Has been cancelled

This commit is contained in:
2026-03-06 17:15:23 -05:00
parent 725fcf0c22
commit e329486ab7
14 changed files with 11 additions and 84 deletions

View File

@@ -30,7 +30,3 @@
#include "godot_broad_phase_2d.h"
GodotBroadPhase2D::CreateFunction GodotBroadPhase2D::create_func = nullptr;
GodotBroadPhase2D::~GodotBroadPhase2D() {
}

View File

@@ -30,7 +30,3 @@
#include "godot_broad_phase_3d.h"
GodotBroadPhase3D::CreateFunction GodotBroadPhase3D::create_func = nullptr;
GodotBroadPhase3D::~GodotBroadPhase3D() {
}

View File

@@ -8,7 +8,7 @@ env_minimp3 = env_modules.Clone()
thirdparty_dir = "#thirdparty/minimp3/"
env_minimp3.Prepend(CPPEXTPATH=[thirdparty_dir])
env_minimp3.Prepend(CPPPATH=[thirdparty_dir])
if not env["minimp3_extra_formats"]:
env_minimp3.Append(CPPDEFINES=["MINIMP3_ONLY_MP3"])

View File

@@ -34,6 +34,8 @@
#include "audio_stream_mp3.h"
#include "core/io/file_access.h"
int AudioStreamPlaybackMP3::_mix_internal(AudioFrame *p_buffer, int p_frames) {
if (!active) {
return 0;
@@ -239,7 +241,7 @@ void AudioStreamMP3::set_data(const Vector<uint8_t> &p_data) {
}
Vector<uint8_t> AudioStreamMP3::get_data() const {
return data;
return Vector<uint8_t>(data);
}
void AudioStreamMP3::set_loop(bool p_enable) {