This commit is contained in:
ousttrue
2021-02-24 22:10:27 +09:00
parent fab04f7eb0
commit f159861393

View File

@@ -78,6 +78,10 @@ namespace UniGLTF.AltTask
public Awaitable(Task task)
{
if (task.IsFaulted)
{
throw task.Exception;
}
_task = task;
}