浏览代码

OBJLoader: Clarify comment skips. (#25906)

* docs: make comment check more self-documenting

* make suggested change
Hamir Mahal 2 年之前
父节点
当前提交
22242d5931
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      examples/jsm/loaders/OBJLoader.js

+ 1 - 1
examples/jsm/loaders/OBJLoader.js

@@ -515,7 +515,7 @@ class OBJLoader extends Loader {
 			const lineFirstChar = line.charAt( 0 );
 			const lineFirstChar = line.charAt( 0 );
 
 
 			// @todo invoke passed in handler if any
 			// @todo invoke passed in handler if any
-			if ( lineFirstChar === '#' ) continue;
+			if ( lineFirstChar === '#' ) continue; // skip comments
 
 
 			if ( lineFirstChar === 'v' ) {
 			if ( lineFirstChar === 'v' ) {