Selaa lähdekoodia

Revert "MultiMaterials support with more robust way"

This reverts commit bd8bfd1b2060cd3f82990f790d893b4e4332651a.
Takahiro 6 vuotta sitten
vanhempi
commit
8895433bd8
1 muutettua tiedostoa jossa 9 lisäystä ja 59 poistoa
  1. 9 59
      examples/js/exporters/GLTFExporter.js

+ 9 - 59
examples/js/exporters/GLTFExporter.js

@@ -429,56 +429,6 @@ THREE.GLTFExporter.prototype = {
 
 		}
 
-		/**
-		 * @param  {BufferAttribute} attribute
-		 * @param  {Integer|undefined} start
-		 * @param  {Integer|undefined} count
-		 * @return {Boolean}
-		 */
-		function hasAttributeCache( attribute, start, count ) {
-
-			return cachedData.attributes.has( attribute ) &&
-				cachedData.attributes.get( attribute ).has( start ) &&
-				cachedData.attributes.get( attribute ).get( start ).has( count );
-
-		}
-
-		/**
-		 * @param  {BufferAttribute} attribute
-		 * @param  {Integer|undefined} start
-		 * @param  {Integer|undefined} count
-		 * @return {Integer}
-		 */
-		function getAttributeCache( attribute, start, count ) {
-
-			return cachedData.attributes.get( attribute ).get( start ).get( count );
-
-		}
-
-		/**
-		 * @param  {Integer} data
-		 * @param  {BufferAttribute} attribute
-		 * @param  {Integer|undefined} start
-		 * @param  {Integer|undefined} count
-		 */
-		function setAttributeCache( data, attribute, start, count ) {
-
-			if ( ! cachedData.attributes.has( attribute ) ) {
-
-				cachedData.attributes.set( attribute, new Map() );
-
-			}
-
-			if ( ! cachedData.attributes.get( attribute ).has( start ) ) {
-
-				cachedData.attributes.get( attribute ).set( start, new Map() );
-
-			}
-
-			cachedData.attributes.get( attribute ).get( start ).set( count, data );
-
-		}
-
 		/**
 		 * Process a buffer to append to the default one.
 		 * @param  {ArrayBuffer} buffer
@@ -1228,9 +1178,9 @@ THREE.GLTFExporter.prototype = {
 
 				}
 
-				if ( hasAttributeCache( attribute ) ) {
+				if ( cachedData.attributes.has( attribute ) ) {
 
-					attributes[ attributeName ] = getAttributeCache( attribute );
+					attributes[ attributeName ] = cachedData.attributes.get( attribute );
 					continue;
 
 				}
@@ -1251,7 +1201,7 @@ THREE.GLTFExporter.prototype = {
 				if ( accessor !== null ) {
 
 					attributes[ attributeName ] = accessor;
-					setAttributeCache( attribute, accessor );
+					cachedData.attributes.set( attribute, accessor );
 
 				}
 
@@ -1317,9 +1267,9 @@ THREE.GLTFExporter.prototype = {
 
 						var baseAttribute = geometry.attributes[ attributeName ];
 
-						if ( hasAttributeCache( attribute ) ) {
+						if ( cachedData.attributes.has( attribute ) ) {
 
-							target[ gltfAttributeName ] = getAttributeCache( attribute );
+							target[ gltfAttributeName ] = cachedData.attributes.get( attribute );
 							continue;
 
 						}
@@ -1339,7 +1289,7 @@ THREE.GLTFExporter.prototype = {
 						}
 
 						target[ gltfAttributeName ] = processAccessor( relativeAttribute, geometry );
-						setAttributeCache( baseAttribute, target[ gltfAttributeName ] );
+						cachedData.attributes.set( baseAttribute, target[ gltfAttributeName ] );
 
 					}
 
@@ -1408,14 +1358,14 @@ THREE.GLTFExporter.prototype = {
 
 				if ( geometry.index !== null ) {
 
-					if ( hasAttributeCache( geometry.index, groups[ i ].start, groups[ i ].count ) ) {
+					if ( cachedData.attributes.has( geometry.index ) ) {
 
-						primitive.indices = getAttributeCache( geometry.index, groups[ i ].start, groups[ i ].count );
+						primitive.indices = cachedData.attributes.get( geometry.index );
 
 					} else {
 
 						primitive.indices = processAccessor( geometry.index, geometry, groups[ i ].start, groups[ i ].count );
-						setAttributeCache( primitive.indices, geometry.index, groups[ i ].start, groups[ i ].count );
+						cachedData.attributes.set( geometry.index, primitive.indices );
 
 					}