Browse Source

Fixed LineDashedMaterial.clone

Daniel Hritzkiv 10 years ago
parent
commit
6bab902d36
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/materials/LineDashedMaterial.js

+ 1 - 1
src/materials/LineDashedMaterial.js

@@ -46,7 +46,7 @@ THREE.LineDashedMaterial = function ( parameters ) {
 THREE.LineDashedMaterial.prototype = Object.create( THREE.Material.prototype );
 THREE.LineDashedMaterial.prototype = Object.create( THREE.Material.prototype );
 THREE.LineDashedMaterial.prototype.constructor = THREE.LineDashedMaterial;
 THREE.LineDashedMaterial.prototype.constructor = THREE.LineDashedMaterial;
 
 
-THREE.LineBasicMaterial.prototype.copy = function ( source ) {
+THREE.LineDashedMaterial.prototype.copy = function ( source ) {
 
 
 	THREE.Material.prototype.copy.call( this, source );
 	THREE.Material.prototype.copy.call( this, source );