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