Please help to understand model loading logic

I loaded model from 3ds file and create Node with

(Node)BinaryImporter.getInstance().load(new ByteArrayInputStream(BO.toByteArray()));

Now I need to create a few nodes with the same model with different transformation.

Can I use already loaded model ?

Please help to find right way…

You can use the SharedNode class to duplicate your model.



There is an example in jme tests.

Thank you very much.

SharedMesh helped to complete my issue in a best way