Hi guys, I’m new to Babylon, but I’ve been using Three.js for years.
I trying to load models in GLTF 2 format and I want them to cast and receive shadows.
But I can’t figure out what’s wrong.
Searching the documentation I found that I should
- add each mesh that should generate shadows, to the shadow generator render list
- set “receiveShadows” to true on each mesh
Here is a screenshoot of the test I’ve done.
The teapot is loaded from the GLTF and does not receive or generate shadows. The material comes from a 3DS Max Physical Material
Here is the code
var canvas = document.getElementById(“renderCanvas”); // Get the canvas element
var engine = new BABYLON.Engine(canvas, true); // Generate the BABYLON 3D engine
/******* Add the create scene function ******/
var createScene = function () {
var scene = new BABYLON.Scene(engine);
var camera = new BABYLON.ArcRotateCamera("Camera", Math.PI/3, Math.PI / 4, 200, new BABYLON.Vector3(0,0,0), scene);
camera.attachControl(canvas, true);
var myMaterial = new BABYLON.StandardMaterial("myMaterial", scene);
myMaterial.diffuseColor = new BABYLON.Color3(1, 0.5, 1);
myMaterial.specularColor = new BABYLON.Color3(0.5, 0.6, 0.87);
var sphere = BABYLON.MeshBuilder.CreateSphere("sphere", {diameter:10}, scene);
sphere.position=new BABYLON.Vector3(-20,10,0);
sphere.receiveShadows=true;
var sphere2 = BABYLON.MeshBuilder.CreateSphere("sphere", {diameter:5}, scene);
sphere2.position=new BABYLON.Vector3(0,30,10);
sphere2.receiveShadows=true;
var myPlane = BABYLON.MeshBuilder.CreatePlane("myPlane", {width: 1000, height: 1000}, scene);
myPlane.position=new BABYLON.Vector3(0,-5,0);
myPlane.rotation.x=Math.PI/2;
myPlane.receiveShadows=true;
myPlane.material=myMaterial;
var light1 = new BABYLON.HemisphericLight("light1", new BABYLON.Vector3(0, 50, 0), scene);
light1.intensity=0.1;
var light2 = new BABYLON.SpotLight("spotLight", new BABYLON.Vector3(0, 100, 0), new BABYLON.Vector3(0, -1, 0), Math.PI / 2, 10, scene);
light2.falloffType = BABYLON.Light.falloff_physical;
light2.specular = new BABYLON.Color3(1, 1, 0.8);
light2.intensity=1;
var shadowGenerator = new BABYLON.ShadowGenerator(1024, light2);
shadowGenerator.usePoissonSampling = true;
shadowGenerator.getShadowMap().refreshRate = BABYLON.RenderTargetTexture.REFRESHRATE_RENDER_ONCE;
shadowGenerator.getShadowMap().renderList.push(sphere);
shadowGenerator.getShadowMap().renderList.push(sphere2);
shadowGenerator.getShadowMap().renderList.push(myPlane);
var loader=BABYLON.SceneLoader.LoadAssetContainer("./models/", "teapot.gltf", scene, function (container) {
var meshes = container.meshes;
var materials = container.materials;
for (var i=0;i<meshes.length;i++){
meshes[i].receiveShadows=true;
shadowGenerator.getShadowMap().renderList.push(meshes[i]);
}
container.addAllToScene();
});
loader.compileMaterials = true;
var scene = createScene(); //Call the createScene function
engine.runRenderLoop(function () {
scene.render();
});
window.addEventListener("resize", function () {
engine.resize();
});
I suspect it has something to do with the faces been flipped beacuse if I overrride the material of the teapot with a Babylon material (after the loading of the GLTF has completed) It only shows the backfaces of each triangle
Any ideas?