Standart scene, standart example but blender smooth export, why? i need flat model. or smooth model if modifier smooth <!DOCTYPE html><html><head> <meta charset="UTF-8"> <title>Scene</title> <script src="/js/babylon.1.14.js"></script> <style> html, body, canvas { width: 100%; height: 100%; margin: 0; padding: 0; overflow: hidden; } </style></head><body><canvas id="renderCanvas"></canvas><script> var canvas = document.getElementById('renderCanvas'); var engine = new BABYLON.Engine(canvas, true); BABYLON.SceneLoader.Load('/scenes/', 'scene.babylon', engine, function(newScene){ var scene = newScene; scene.clearColor = new BABYLON.Color3(1, 1, 1); scene.executeWhenReady(function(){ scene.activeCamera.attachControl(canvas); engine.runRenderLoop(function(){ scene.render(); }); }) }); window.addEventListener('resize', function(){ });</script></body></html>tnx. scene.zip