Browse Source

Fix formatting error for bool in resulted code of visual shader (#31983)

Fix formatting error for bool in resulted code of visual shader
Yuri Roubinsky 6 năm trước cách đây
mục cha
commit
c2de26822f
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      scene/resources/visual_shader.cpp

+ 1 - 1
scene/resources/visual_shader.cpp

@@ -1083,7 +1083,7 @@ Error VisualShader::_write_node(Type type, StringBuilder &global_code, StringBui
 			} else if (defval.get_type() == Variant::BOOL) {
 				bool val = defval;
 				inputs[i] = "n_in" + itos(node) + "p" + itos(i);
-				code += "\nbool " + inputs[i] + " = " + (val ? "true" : "false") + ";\n";
+				code += "\tbool " + inputs[i] + " = " + (val ? "true" : "false") + ";\n";
 			} else if (defval.get_type() == Variant::VECTOR3) {
 				Vector3 val = defval;
 				inputs[i] = "n_in" + itos(node) + "p" + itos(i);