Merge pull request #90850 from AlexeyBond/patch-1
Handle Vector4 default input values in visual shaders
This commit is contained in:
commit
5fcd9803cd
|
@ -2204,6 +2204,10 @@ Error VisualShader::_write_node(Type type, StringBuilder *p_global_code, StringB
|
|||
Vector3 val = defval;
|
||||
inputs[i] = "n_in" + itos(p_node) + "p" + itos(i);
|
||||
node_code += " vec3 " + inputs[i] + " = " + vformat("vec3(%.5f, %.5f, %.5f);\n", val.x, val.y, val.z);
|
||||
} else if (defval.get_type() == Variant::VECTOR4) {
|
||||
Vector4 val = defval;
|
||||
inputs[i] = "n_in" + itos(p_node) + "p" + itos(i);
|
||||
node_code += " vec4 " + inputs[i] + " = " + vformat("vec4(%.5f, %.5f, %.5f, %.5f);\n", val.x, val.y, val.z, val.w);
|
||||
} else if (defval.get_type() == Variant::QUATERNION) {
|
||||
Quaternion val = defval;
|
||||
inputs[i] = "n_in" + itos(p_node) + "p" + itos(i);
|
||||
|
|
Loading…
Reference in New Issue