@@ -1036,7 +1036,7 @@ var MapControls = function ( object, domElement ) {
};
MapControls.prototype = Object.create( EventDispatcher.prototype );
-MapControls.prototype.constructor = THREE.MapControls;
+MapControls.prototype.constructor = MapControls;
Object.defineProperties( MapControls.prototype, {
@@ -932,7 +932,7 @@ var OrbitControls = function ( object, domElement ) {
OrbitControls.prototype = Object.create( EventDispatcher.prototype );
-OrbitControls.prototype.constructor = THREE.OrbitControls;
+OrbitControls.prototype.constructor = OrbitControls;
Object.defineProperties( OrbitControls.prototype, {
@@ -623,6 +623,6 @@ var TrackballControls = function ( object, domElement ) {
TrackballControls.prototype = Object.create( EventDispatcher.prototype );
-TrackballControls.prototype.constructor = THREE.TrackballControls;
+TrackballControls.prototype.constructor = TrackballControls;
export { TrackballControls };