Only apply silhouette to a specific 3D tileset

1. A concise explanation of the problem you’re experiencing.

I would like to add Cesium.PostProcessStageLibrary.createSilhouetteStage() and only select a specific 3D tileset but i can’t seem to make that work

2. A minimal code example. If you’ve found a bug, this helps us reproduce and repair it.

https://cesiumjs.org/Cesium/Build/Apps/Sandcastle/#c=rVTbUtswEP0VTV4SOrHsJAQCGKbXaR8yhWkoTKfpgyxvsIoseSQ5IXT4965s5wbloaV5sfZyds8eaTNnhswFLMCQU6JgQd6BFWVOrypfp80r851WjgkFpt0lv6bqYe9kqqZqjlgnJFhwu+D6M3h/WQc7CCH4K408Ju3MucIeh6FQtgDuhFYBl7pMqR1QKAMOyhkmgx5lObvXii0s5ToPHbDchvxoxoYw6AXJcH8U7LOkF4xm0UEwiGajGRtEvQPGwxxsBjY8POQRH4wGAR8O+sF+n/cDxodRMDo6HCazfpIyfhDW84XNGPSn1aq9HnDlNcDS5YXRubBAXQaqMytVRb3TpOyRZsZaS2pxDKCFEblwYg6WsjRd557spN5rnV/qVbC7reMn7CvUzYVwPPvC1A10Ihp1SRDRYXelPE10qXzWpMjAADUIKS15Rfo02vOtHvaoRs5mgeQ3vMEYbZD11lVax27A4k3uzqCtw9FRJzupEk6abCEzXYJzgIgaWg3ZUL94BBuLxDCzpBy1dDBZg6tgpyK6qUhLJWba5P7mpfYvc/WwvEm/fRiPz68r3mG4hbIg8UFBivnfG3V+YFar24qtW0o4q3V/LfJCG+efY4dSfFh5IZGTDZOS36Kg3FpPJw5XoDgVcyLS02nr0TZMW4RLZi1GZqWUE3EP09ZZHGL+Dkzq6h7P52AkW/qUrHc2rp2U0jhE8ynKaS0Thk2817EEucQu0emymSN2pjnVVnq2kTUO0dwNxkIVpSNuWYCfJAN+m+g7HCFljgWJUOnKDenx1vVWE62r4dE82/+tZPyWMJWS60z8BxKJr/dGpVW1SaYXu1z+XNT4RcGKuVBo9fyJ3flThEfroGi82x3nTJbwqN9H3CTmd8V2SRX/WqCNWe2qXftvdDHiJnMKd+HlkqxL/Zse0UaPjRz4r/KcIut2V97xYiU++3LkSljU9cVaKF+srvVUjIYGfqqVwW+1Qd5TL9pv

3. Context. Why do you need to do this? We might know a better way to accomplish your goal.

i need a way to give multiple 3D tilesets individual silhouettes since i am making a tool where tilesets can be on top of each other and it needs to be very clear to the user where each tileset begins and ends

4. The Cesium version you’re using, your operating system and browser.

Cesium version: 1.60

Operating system: Ubuntu 18.04.2 LTS

Browser: Google Chrome Version 76.0.3809.87 (Official Build) (64-bit)

The problem here is that the post process “selected” array takes in objects of instance Cesium3DTileFeature. So in the New York City buildings example, you could pass in individual buildings to apply the silhouette to them. You can’t do that here since there is no features to select.

There is an open feature request here, to be able to apply post processing to an entire tileset instead of just per feature: https://github.com/AnalyticalGraphicsInc/cesium/issues/6657

Ah i see, i’ll follow that feature request closely then, thanks for your time once again!

Hi! Have you been solved this problem and how?