I want to set the opacity of each item by index , It's like InstancedMesh.setColorAt()
Additional context
I've found a way to do it ,but it's not work very well
https://discourse.threejs.org/t/instance-geometry-opacity/9164


I think adding per-instance opacity support to InstancedMesh brings more problems than it solves...
It鈥檚 not possible, mainly because if that was allowed the first thing people bump into is that the order in which transparent objects get renderer is incorrect.
In order to render them correctly the instances will need to be reordered every time the camera moves.
Yeah, I'm afraid this feature will be very "support-intensive"...
I think adding per-instance opacity support to
InstancedMeshbrings more problems than it solves...It鈥檚 not possible, mainly because if that was allowed the first thing people bump into is that the order in which transparent objects get renderer is incorrect.
In order to render them correctly the instances will need to be reordered every time the camera moves.
Thank you for your reply