The collada model appears distorted when rendered in three.js. Here is a screenshot:
The code used to load the model is quite simple:
loader.load( 'models/police_car.dae', function ( collada ) {
dae = collada.scene;
init();
});
The model was downloaded from Google SketchUp Warehouse. [link]
As a beginner with three.js, I am uncertain about the issue. Should I invoke a specific function to resolve it?
Any help would be greatly appreciated.