Siccity / GLTFUtility

Simple GLTF importer for Unity
MIT License
976 stars 217 forks source link

README change #242

Open Zan-Infdata opened 8 months ago

Zan-Infdata commented 8 months ago

Hi, I was just using the multithread runtime import with .GLB files. I lost quite some time until I realised, that I should use

Importer.LoadFromFileAsync(filepath, new ImportSettings(), OnFinishAsync);

instead of

Importer.ImportGLTFAsync(filepath, new ImportSettings(), OnFinishAsync);

Like it says in the README. It is an easy fix and I think it would save people quite a lot of trouble and sanity :). Tnx.