How to guarantee the complete order accord with the order that loadassetasync is called

How to guarantee the complete order accord with the order that loadassetasync is called

You cannot guarantee that any operation will complete first, that’s the point of async. The only way to do that would be to wait for each operation to complete before starting the next, and that would slow down your application considerably.