Nicolas Cannasse 10 년 전
부모
커밋
a59e42d05d
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      hxd/fmt/fbx/BaseLibrary.hx

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

@@ -692,7 +692,7 @@ class BaseLibrary {
 			for( obj in uvAnims.keys() ) {
 				var frames = uvAnims.get(obj);
 				var model = modelByName.get(obj);
-				if( model == null ) throw "Missing model '" + obj + "' requires by UV animation";
+				if( model == null ) throw "Missing model '" + obj + "' required by UV animation";
 				var c = getObjectCurve(curves, model, "UV", animName);
 				if( c == null ) continue;
 				c.uv = frames;