Jump to content

Search the Community

Showing results for tags 'blender smooth export'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • HTML5 Game Coding
    • News
    • Game Showcase
    • Facebook Instant Games
    • Web Gaming Standards
    • Coding and Game Design
    • Paid Promotion (Buy Banner)
  • Frameworks
    • Pixi.js
    • Phaser 3
    • Phaser 2
    • Babylon.js
    • Panda 2
    • melonJS
    • Haxe JS
    • Kiwi.js
  • General
    • General Talk
    • GameMonetize
  • Business
    • Collaborations (un-paid)
    • Jobs (Hiring and Freelance)
    • Services Offered
    • Marketplace (Sell Apps, Websites, Games)

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Website URL


Twitter


Skype


Location


Interests

Found 1 result

  1. 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
×
×
  • Create New...