I am trying to add some billboards to a collection but I encountered a strange behaviour.
If I add my billboards directly to the cesium primitive collection they gets rendered:
scene.primitives.add({...});
If I use a BillboardCollection the billboards will not show.
I create the billboard collection this way:
billboards = new Cesium.BillboardCollection();
scene.primitives.add(billboards);
then I add the billboards:
billboards.add({...});
If I do the same with a primitive collection it works.
What am I doing wrong?
Regards.