labris
1
Repro: Babylon.js Playground
As one may see, all cloned lights have the same name (the name of the light from which they are cloned).
Solution (tested and works in local environment):
Add to the light.ts (after line 590) the same condition for the name as for the newParent
if (name) {
clonedLight.name = name;
}
Should I make a PR?
Please do 
Highly appreciated!
labris
3
PR made!
UPD. Merged, so I mark this as solution 
UPD 2. It works 