Browse Source

remove unused variable in AWDLoader

gero3 8 years ago
parent
commit
feee8a9c02
1 changed files with 3 additions and 6 deletions
  1. 3 6
      examples/js/loaders/AWDLoader.js

+ 3 - 6
examples/js/loaders/AWDLoader.js

@@ -692,15 +692,12 @@
 				num_subs  = this.readU16(),
 				geom,
 				subs_parsed = 0,
-				props,
 				buffer,
 				skinW, skinI,
 				geometries = [];
-
-			props = this.parseProperties( {
-				1: this._geoNrType,
-				2: this._geoNrType
-			} );
+			
+			// Ignore for now
+			this.parseProperties( { 1: this._geoNrType, 2: this._geoNrType } );
 
 			// Loop through sub meshes
 			while ( subs_parsed < num_subs ) {