We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73a4a66 commit 91bdfeeCopy full SHA for 91bdfee
Runtime/Loading/Services/LoadingService.cs
@@ -54,7 +54,6 @@ private void OnStartLoading()
54
55
IsLoading = true;
56
57
- sequencer.OnComplete -= OnComplete;
58
sequencer.OnComplete += OnComplete;
59
60
foreach (Func<CancellationToken, Task> before in beforeLoad)
@@ -65,6 +64,8 @@ private void OnStartLoading()
65
64
66
private void OnComplete()
67
{
+ sequencer.OnComplete -= OnComplete;
68
+
69
foreach (Func<CancellationToken, Task> after in afterLoad)
70
71
sequencer.Play(after.Invoke);
0 commit comments