int numMeshes = readInt(in);
StillSubMesh[] subMeshes = new StillSubMesh[numMeshes];
for (int i = 0; i < numMeshes; i++) {
subMeshes[i] = readStillSubMesh(in, flipV);
}
StillModel model = new StillModel(subMeshes);
return model;
} catch (Throwable e) {
throw new GdxRuntimeException("Couldn't read keyframed model, error in line " + lineNum + ", '" + line + "' : "
+ e.getMessage(), e);
}