diff options
author | Yuri Rubinsky <chaosus89@gmail.com> | 2024-07-22 11:16:12 +0300 |
---|---|---|
committer | Yuri Rubinsky <chaosus89@gmail.com> | 2024-07-22 11:22:27 +0300 |
commit | 7c9afbc13977739813cb22b236a81abbdb742107 (patch) | |
tree | 2b07c914a5b81adb6e08d71ec2c057e98cec334b /scene/resources | |
parent | e25f3c0d38d457b15a63720240736f564ce0501b (diff) | |
download | redot-engine-7c9afbc13977739813cb22b236a81abbdb742107.tar.gz |
Fix warning printing for `VisualShaderNodeTextureParameter`
Diffstat (limited to 'scene/resources')
-rw-r--r-- | scene/resources/visual_shader_nodes.cpp | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/scene/resources/visual_shader_nodes.cpp b/scene/resources/visual_shader_nodes.cpp index 38c60828e8..5f70a24fcd 100644 --- a/scene/resources/visual_shader_nodes.cpp +++ b/scene/resources/visual_shader_nodes.cpp @@ -6498,6 +6498,8 @@ bool VisualShaderNodeTextureParameter::is_show_prop_names() const { } String VisualShaderNodeTextureParameter::get_warning(Shader::Mode p_mode, VisualShader::Type p_type) const { + String warning = VisualShaderNodeParameter::get_warning(p_mode, p_type); + if (texture_source != SOURCE_NONE) { String texture_source_str; @@ -6528,7 +6530,10 @@ String VisualShaderNodeTextureParameter::get_warning(Shader::Mode p_mode, Visual default: break; } - return vformat(RTR("'%s' type is incompatible with '%s' source."), texture_type_str, texture_source_str); + if (!warning.is_empty()) { + warning += "\n"; + } + warning += vformat(RTR("'%s' type is incompatible with '%s' source."), texture_type_str, texture_source_str); } else if (color_default != COLOR_DEFAULT_WHITE) { String color_default_str; @@ -6542,11 +6547,14 @@ String VisualShaderNodeTextureParameter::get_warning(Shader::Mode p_mode, Visual default: break; } - return vformat(RTR("'%s' default color is incompatible with '%s' source."), color_default_str, texture_source_str); + if (!warning.is_empty()) { + warning += "\n"; + } + warning += vformat(RTR("'%s' default color is incompatible with '%s' source."), color_default_str, texture_source_str); } } - return ""; + return warning; } HashMap<StringName, String> VisualShaderNodeTextureParameter::get_editable_properties_names() const { |