Thx. would be great. Do i do something wrong in the code?
I am also getting some warnings creating the instances in the debugger. Might that be the issue?
It looks like the mesh is made invisible before all instances are rendered.
Though this small trick of mine does not really work here. There must be a better way to commit all these instances before making the source mesh invisible. I’m sure one of the Guys called in will have the answer so I won’t bother trying myself. But I guess with this small test it already makes it clear that the instances do not show because the source mesh is hidden before they all have been created. At least, I guess so
I noticed that you’re creating the instances right away but you wait for 20 frames to finish creating the meshes (that’s why there’s a warning in the console about creating instances from meshes without geometry). So I moved your init code so that it runs right away, before creating the instances, instead of waiting 20 frames, and then it seems to be working.