瀏覽代碼

remove unused variable in AWDLoader

gero3 8 年之前
父節點
當前提交
feee8a9c02
共有 1 個文件被更改,包括 3 次插入6 次删除
  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 ) {