Merge pull request #18889 from madadam/async-await-fix
Set current SynchronizationContext before the game loop starts
This commit is contained in:
commit
41f79a6f14
|
@ -14,6 +14,7 @@ namespace Godot
|
||||||
public GodotTaskScheduler()
|
public GodotTaskScheduler()
|
||||||
{
|
{
|
||||||
Context = new GodotSynchronizationContext();
|
Context = new GodotSynchronizationContext();
|
||||||
|
SynchronizationContext.SetSynchronizationContext(Context);
|
||||||
}
|
}
|
||||||
|
|
||||||
protected sealed override void QueueTask(Task task)
|
protected sealed override void QueueTask(Task task)
|
||||||
|
@ -57,7 +58,6 @@ namespace Godot
|
||||||
|
|
||||||
public void Activate()
|
public void Activate()
|
||||||
{
|
{
|
||||||
SynchronizationContext.SetSynchronizationContext(Context);
|
|
||||||
ExecuteQueuedTasks();
|
ExecuteQueuedTasks();
|
||||||
Context.ExecutePendingContinuations();
|
Context.ExecutePendingContinuations();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue