diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-12-06 10:30:37 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-06 10:30:37 +0100 |
commit | 3a7d5a1c64fa6e5a46b49101f3c04104ad9b954b (patch) | |
tree | 715a439c8382be924d885b79360f3099c3518d9c /scene | |
parent | 9b41b13370c6203ab43211039b4cc64698275fd6 (diff) | |
parent | 89ec3d3bc749e4ec01bdf205447e257207297421 (diff) |
Merge pull request #55651 from Calinou/remove-more-debug-prints
Diffstat (limited to 'scene')
-rw-r--r-- | scene/resources/material.cpp | 2 | ||||
-rw-r--r-- | scene/resources/mesh.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/scene/resources/material.cpp b/scene/resources/material.cpp index 00c109f1a6..98bda4ad1b 100644 --- a/scene/resources/material.cpp +++ b/scene/resources/material.cpp @@ -2899,7 +2899,7 @@ bool StandardMaterial3D::_set(const StringName &p_name, const Variant &p_value) idx++; } - print_line("remapped parameter not found: " + String(p_name)); + WARN_PRINT("Godot 3.x SpatialMaterial remapped parameter not found: " + String(p_name)); return true; } diff --git a/scene/resources/mesh.cpp b/scene/resources/mesh.cpp index 51b4e1fbd8..e14d6be235 100644 --- a/scene/resources/mesh.cpp +++ b/scene/resources/mesh.cpp @@ -994,9 +994,9 @@ bool ArrayMesh::_set(const StringName &p_name, const Variant &p_value) { } //clear unused flags - print_line("format pre: " + itos(old_format)); + print_verbose("Mesh format pre-conversion: " + itos(old_format)); - print_line("format post: " + itos(new_format)); + print_verbose("Mesh format post-conversion: " + itos(new_format)); ERR_FAIL_COND_V(!d.has("aabb"), false); AABB aabb = d["aabb"]; |