I would like to load some materials on some objects with a thread/async but stuff i've tried by now are not working:
Thread d = new Thread(new ThreadStart(loadMethod));
d.Start();
The materials don't get loaded at all.
How can i load materials on objects without affecting the flow of the app? Right now it kind of freezes for 1-2 seconds.