Parcourir la source

TessellateModifier: Convert indexed BufferGeometry.

Mr.doob il y a 4 ans
Parent
commit
49585b169b
1 fichiers modifiés avec 6 ajouts et 0 suppressions
  1. 6 0
      examples/js/modifiers/TessellateModifier.js

+ 6 - 0
examples/js/modifiers/TessellateModifier.js

@@ -18,6 +18,12 @@ THREE.TessellateModifier.prototype.modify = function ( geometry ) {
 
 	}
 
+	if ( geometry.index !== null ) {
+
+		geometry = geometry.toNonIndexed();
+
+	}
+
 	//
 
 	const maxIterations = this.maxIterations;