How many type of thinInstanceSetBuffer

I know mesh.thinInstanceSetBuffer have matrix and color type.
Are there any other types?
if I want set the different emissiveColor foreach thinInstance, how can I do?
https://playground.babylonjs.com/#217750#41

There are no other built-in attributes you can use with thin instances. You can create others yourself, but you will need custom shader code to handle them.

For eg:

1 Like

Thank you very much!