-
Hi there. I am testing the 4 shadow mode with my building data (see my attachment). I am not sure the "Receive Only" mode is working correctly. As far as I can see, the Receive Only mode resulted in exactly the same as "None". Does anybody has experienced the same issue? Or do I misunderstand the difference between "None" and "Receive Only" modes? Thank you! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Hi @imakihi, As described in the Cesium doc, RECEIVE_ONLY means the model can receive shadows from other models but does not cast any of its own. For the screenshot with Below is an example screenshot of the Contrast it with this one where the tileset shadow mode is Hope that answers your question. |
Beta Was this translation helpful? Give feedback.
Hi @imakihi,
As described in the Cesium doc, RECEIVE_ONLY means the model can receive shadows from other models but does not cast any of its own. For the screenshot with
RECEIVE_ONLY
, the tileset as a whole can receive shadows from other tilesets or models, but wont cast any shadows of its own. Because there are no nearby models or tilesets to cast a shadow, it looks just like theNONE
example.Below is an example screenshot of the
RECEIVE_ONLY
mode in action. The tileset hasRECEIVE_ONLY
and the GLTF model is casting a shadow on it.Contrast it with this one where the tileset shadow mode is
NONE
so it doesn't "receive" the shadow of the adjacent gltf model.Hope that answers your quest…