Added missing '\n' in visual shader expression node code generation
This commit is contained in:
parent
d5b579852f
commit
6e1187ad2f
1 changed files with 1 additions and 1 deletions
|
@ -2644,7 +2644,7 @@ String VisualShaderNodeExpression::generate_code(Shader::Mode p_mode, VisualShad
|
|||
code += output_initializer;
|
||||
code += "\t{";
|
||||
code += _expression;
|
||||
code += "\n\t}";
|
||||
code += "\n\t}\n";
|
||||
|
||||
return code;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue