mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-09-07 19:38:13 -05:00
Merge pull request #1215 from notargs/feature/add_await_caller
LoadTexturesAsync・LoadMaterialsAsyncへのAwaitCallerの受け渡しが漏れていた問題を修正
This commit is contained in:
@@ -105,12 +105,12 @@ namespace UniGLTF
|
||||
|
||||
using (MeasureTime("LoadTextures"))
|
||||
{
|
||||
await LoadTexturesAsync();
|
||||
await LoadTexturesAsync(awaitCaller);
|
||||
}
|
||||
|
||||
using (MeasureTime("LoadMaterials"))
|
||||
{
|
||||
await LoadMaterialsAsync();
|
||||
await LoadMaterialsAsync(awaitCaller);
|
||||
}
|
||||
|
||||
await LoadGeometryAsync(awaitCaller, MeasureTime);
|
||||
|
||||
Reference in New Issue
Block a user