I was able to have a single model loaded by using ‘Readfile’ function in Assimp. It was then assigned to an aiScene pointer. Now i want to load multiple models of same format. How to achieve this? The documentation does not provide enough information on how to do this.
Share
The main goal of the Assimp library is to load and postprocess your assets (e.g. model/scene), and it isn’t for general scene-graph management. Usually you load your models into separate iaScene structures and translate them for your scene-graph one-by-one.