haho
1
Hi,
import { ColladaLoader } from “https://cdn.jsdelivr.net/npm/[email protected]/examples/jsm/loaders/ColladaLoader.js”;
var loader = new THREE.ColladaLoader();
THREE.ColladaLoader is not a constructor
can anybody help me ?
thanks
If you import code from the jsm
directory, the THREE
namespace is not necessary. So please create the loader just like that:
var loader = new ColladaLoader();
haho
3
thanks -
due to your help i had my first nice three.js page within 2 days 
1 Like