Fix bug playing assets in LoopingAudioSource
This commit is contained in:
parent
1bf6a4aa6d
commit
60760d1010
|
@ -1418,6 +1418,12 @@ class LoopingAudioSource extends AudioSource {
|
||||||
this.count,
|
this.count,
|
||||||
}) : super();
|
}) : super();
|
||||||
|
|
||||||
|
@override
|
||||||
|
Future<void> _setup(AudioPlayer player) async {
|
||||||
|
await super._setup(player);
|
||||||
|
await child._setup(player);
|
||||||
|
}
|
||||||
|
|
||||||
@override
|
@override
|
||||||
List<IndexedAudioSource> get sequence =>
|
List<IndexedAudioSource> get sequence =>
|
||||||
List.generate(count, (i) => child).expand((s) => s.sequence).toList();
|
List.generate(count, (i) => child).expand((s) => s.sequence).toList();
|
||||||
|
|
Loading…
Reference in New Issue