1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

Merge pull request #99186 from PhairZ/wheels-of-the-bus-go-round-and-round

Fix `fade_beats` defined as `int` in `audio_stream_interactive.h`
This commit is contained in:
Thaddeus Crews
2024-12-05 14:12:24 -06:00

View File

@@ -100,7 +100,7 @@ private:
TransitionFromTime from_time = TRANSITION_FROM_TIME_NEXT_BEAT;
TransitionToTime to_time = TRANSITION_TO_TIME_START;
FadeMode fade_mode = FADE_AUTOMATIC;
int fade_beats = 1;
float fade_beats = 1;
bool use_filler_clip = false;
int filler_clip = 0;
bool hold_previous = false;