How to get all "parts" of a model?

For instance, I can use:

model = loader.loadModel("house")
door = model.find("**/door1") 

here I get the door, but how can I get a list of everything, like find("/")?

thanks for helping :smiley:

Have you tried “findAllMatches”?

thank you it works