소스 검색

Adding hint for Nan found building geometry.

clementlandrin 2 년 전
부모
커밋
8e54bd73c9
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      hxd/fmt/fbx/BaseLibrary.hx

+ 1 - 1
hxd/fmt/fbx/BaseLibrary.hx

@@ -1371,7 +1371,7 @@ class BaseLibrary {
 	}
 
 	function round(v:Float) {
-		if( v != v ) throw "NaN found";
+		if( v != v ) throw "NaN found (could be multiple skin mesh, currently not supported)";
 		return highPrecision ? v : std.Math.fround(v * 131072) / 131072;
 	}