How to Customize nodes

Hi

I have this codepen : https://codepen.io/odecharette/pen/ExpNPpX
I managed to clone objects

How can I customize each clone separatly ?
Exemple, il I want to setup a different size for each clone?

I know how to find each clone :

await SDV.sceneTree.root.children.forEach((node, index) => {
  console.log(node);
});

If I call a customize, then it change only the last clone/object loaded

SDV.sessions.mySession.getParameterByName("myParam1")[0].value = "1234";
SDV.sessions.mySession.getParameterByName("myParam2")[0].value = true;
SDV.sessions.mySession.customize();

Is it possible? Or do I have to rebuild all clones with the correct size?

Thanks
Olivia

It is not possible to customize each clone separately, since you only have one session opened to the ShapeDiver model. Each clone becomes a static object in your scene. If you want to individually control copies of a same model, I suggest you open several sessions to your ShapeDiver model in the same viewer. Each of these sessions can then be controlled with their individual parameters. Find a code example for this use case here: multiple sessions - CodeSandbox

OK that’s very clear

Thank you !