we face difficulty to assign backfaceculling=false for Array values from scene.materials.
using developer option , easy to correct, but not able to do in code.
Thank you ![]()
scene.materials.forEach((mat)=>{
mat.backFaceCulling = false;
})
Example - Babylon.js Playground
Just a guess, but do you set backFaceCulling before all materials (models) are loaded?
before loaded, problem solved !!!
Thank you so much ![]()
You are welcome ![]()