When I export a scene from Blender via three.js json exporter and load it into my project the objects are flipped/rotated.
I have tried:
- to use master, dev branch
- different combinations in json exporter
- to create a clean blender file and add some basic objects, had the same issue
Example:
Blander
Three.js
Code for loading json object
var loader = new THREE.ObjectLoader();
loader.load('model/cam.json', addModelCam);
function addModelCam(object){
scene.add(object);
}
Here are my export settings: