Point Size in Story vs Sandcastle

Hello,

We have created a nice story that has a Red, White and Blue model.

https://cesium.com/ion/stories/viewer/?id=6d21cd9e-bb3e-481a-bb9c-46d68027e581

Screen Shot 2021-12-15 at 8.08.04 AM.png

When viewing the model in the Assets it looks fine…

https://cesium.com/ion/assets/700040?page=1&sortBy=DATE_ADDED&sortOrder=DESC

Screen Shot 2021-12-15 at 8.11.58 AM.png

But when adding in via Cesium JS the Red, White and Blue Points “shrink” and can not be seen.

Screen Shot 2021-12-15 at 8.09.02 AM.png

Unless you zoom way out…

Screen Shot 2021-12-15 at 8.08.47 AM.png

Screen Shot 2021-12-15 at 8.08.43 AM.png

Please advise how to get them to show like in the Story.

The screenshots appear to be broken, but the links work. From that description, I assume that the solution is to add

tileset.style = new Cesium.Cesium3DTileStyle({
  pointSize: 5
});

in the Sandcastle. Points in the Sandcastle are by default rendered with a size of 1, and thus, barely visible. The code above changes that so that they have a size of 5 (and of course, you can adjust that value as needed). Further examples for point styling can be found in Cesium Sandcastle , and the documentation/specification for this is at 3d-tiles/specification/Styling at main · CesiumGS/3d-tiles · GitHub