Merge pull request #35824 from Chaosus/vs_fix_missing_typo

Added missing '\n' in visual shader custom node code generation
This commit is contained in:
Yuri Roubinsky 2020-02-01 16:37:48 +03:00 committed by GitHub
commit 217d8f4e97
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -246,6 +246,7 @@ String VisualShaderNodeCustom::generate_code(Shader::Mode p_mode, VisualShader::
code.remove(code.size() - 1);
code += "}";
}
code += "\n";
return code;
}