瀏覽代碼

Fix objectPath formatting

Fixed objectPath formatting to support Windows PC file paths separated by "\".
L-Kaz 4 年之前
父節點
當前提交
19dbe70f46
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      utils/packLDrawModel.js

+ 1 - 1
utils/packLDrawModel.js

@@ -172,7 +172,7 @@ function parseObject( fileName, isRoot ) {
 
 	}
 
-	var objectPath = path.join( prefix, fileName );
+	var objectPath = path.join( prefix, fileName ).trim().replace( /\\/g, '/' );
 
 	if ( ! objectContent ) {