Skip to content

Commit

Permalink
Merge pull request #84768 from biswas08433/master
Browse files Browse the repository at this point in the history
Fix VisualShader Texture2DParameter node filter bug
  • Loading branch information
akien-mga committed Nov 11, 2023
2 parents 4e867b5 + 92fe4bb commit 89f2f7f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions scene/resources/visual_shader_nodes.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6346,13 +6346,15 @@ String get_sampler_hint(VisualShaderNodeTextureParameter::TextureType p_texture_
if (!repeat_code.is_empty()) {
if (!has_colon) {
code += " : ";
has_colon = true;
} else {
code += ", ";
}
code += repeat_code;
}
}

// source
{
String source_code;

Expand Down

0 comments on commit 89f2f7f

Please sign in to comment.