diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2021-12-05 23:21:27 +0100 |
---|---|---|
committer | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2021-12-05 23:22:23 +0100 |
commit | 89ec3d3bc749e4ec01bdf205447e257207297421 (patch) | |
tree | ad7c690e5f52e9479f1e018937ac8a6df07a73a6 /scene/resources/material.cpp | |
parent | 49799ab454f1768485608011ea1db4fddfa0e787 (diff) | |
download | redot-engine-89ec3d3bc749e4ec01bdf205447e257207297421.tar.gz |
Remove or make verbose some debugging prints
The message about SpatialMaterial conversion was turned into a warning,
as it can potentially interfere with porting projects from Godot 3.x
(if there's a bug in the conversion code).
Diffstat (limited to 'scene/resources/material.cpp')
-rw-r--r-- | scene/resources/material.cpp | 2 |
1 files changed, 1 insertions, 1 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; } |