1
0
mirror of https://github.com/godotengine/godot.git synced 2026-01-06 19:41:11 +00:00

Turn some prints to error logs, remove others

Fixes #5876 in passing.
This commit is contained in:
Rémi Verschelde
2016-07-24 00:02:19 +02:00
parent ebefdaa598
commit 308d405c31
5 changed files with 10 additions and 12 deletions

View File

@@ -496,7 +496,6 @@ Error EditorMeshImportPlugin::import(const String& p_path, const Ref<ResourceImp
}
int vtx = face[idx][0].to_int()-1;
print_line("vtx: "+itos(vtx)+"/"+itos(vertices.size()));
ERR_FAIL_INDEX_V(vtx,vertices.size(),ERR_PARSE_ERROR);
Vector3 vertex = vertices[vtx];