mirror of
https://github.com/godotengine/godot.git
synced 2025-02-14 14:50:46 +00:00
Merge pull request #42553 from Chaosus/vs_fix_typo
Fix typo in VisualShaderNodeSample3D::generate_code
This commit is contained in:
commit
2374281f36
@ -853,7 +853,7 @@ String VisualShaderNodeSample3D::generate_code(Shader::Mode p_mode, VisualShader
|
||||
if (p_input_vars[1] == String()) {
|
||||
code += "\t\tvec4 " + id + "_tex_read = texture(" + id + ", " + default_uv + ");\n";
|
||||
} else {
|
||||
code += "\t\tvec4 " + id + "_tex_read = textureLod(" + id + ", " + default_uv = ", " + p_input_vars[1] + ");\n";
|
||||
code += "\t\tvec4 " + id + "_tex_read = textureLod(" + id + ", " + default_uv + ", " + p_input_vars[1] + ");\n";
|
||||
}
|
||||
} else if (p_input_vars[1] == String()) {
|
||||
//no lod
|
||||
|
Loading…
Reference in New Issue
Block a user