My plane is see through from the backside #21337
-
Hey, I want a plane |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
You need to disable "backface culling". In Bevy, this is controlled via StandardMaterial.cull_mode usually. |
Beta Was this translation helpful? Give feedback.
-
In the material, set cull_mode to None and double_sided to true. What you have disabled, is a different type of culling for objects that are off-screen. You can leave that turned on. |
Beta Was this translation helpful? Give feedback.
You need to disable "backface culling". In Bevy, this is controlled via StandardMaterial.cull_mode usually.