diff options
author | Yuri Rubinsky <chaosus89@gmail.com> | 2024-07-18 10:47:55 +0300 |
---|---|---|
committer | Yuri Rubinsky <chaosus89@gmail.com> | 2024-07-18 11:10:36 +0300 |
commit | cf70cb57eec3efcf79498adf4b1e6da7d43d18cd (patch) | |
tree | c56b8b5a4636c01bdb56495725c15a186f03a376 /scene/resources | |
parent | da4f6e439c0daec87d3f87f86b5b4592fca44fdb (diff) | |
download | redot-engine-cf70cb57eec3efcf79498adf4b1e6da7d43d18cd.tar.gz |
Few fixes for `VisualShaderNodeRotationByAxis`
Diffstat (limited to 'scene/resources')
-rw-r--r-- | scene/resources/visual_shader_nodes.cpp | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/scene/resources/visual_shader_nodes.cpp b/scene/resources/visual_shader_nodes.cpp index 018b7be81c..38c60828e8 100644 --- a/scene/resources/visual_shader_nodes.cpp +++ b/scene/resources/visual_shader_nodes.cpp @@ -8177,6 +8177,9 @@ String VisualShaderNodeRotationByAxis::get_output_port_name(int p_port) const { } bool VisualShaderNodeRotationByAxis::has_output_port_preview(int p_port) const { + if (p_port == 0) { + return true; + } return false; } @@ -8190,15 +8193,20 @@ String VisualShaderNodeRotationByAxis::generate_code(Shader::Mode p_mode, Visual code += vformat(" vec3( __axis.y*__axis.x*(1.0-cos(__angle))+__axis.z*sin(__angle), cos(__angle)+__axis.y*__axis.y*(1.0-cos(__angle)), __axis.y*__axis.z*(1.0-cos(__angle))-__axis.x*sin(__angle) ),\n"); code += vformat(" vec3( __axis.z*__axis.x*(1.0-cos(__angle))-__axis.y*sin(__angle), __axis.z*__axis.y*(1.0-cos(__angle))+__axis.x*sin(__angle), cos(__angle)+__axis.z*__axis.z*(1.0-cos(__angle)) )\n"); code += vformat(" );\n"); - code += vformat(" %s = %s * __rot_matrix;\n", p_output_vars[0], p_input_vars[0]); - code += vformat(" %s = mat4(__rot_matrix);\n", p_output_vars[1]); + if (is_output_port_connected(0)) { + code += vformat(" %s = %s * __rot_matrix;\n", p_output_vars[0], p_input_vars[0]); + } + if (is_output_port_connected(1)) { + code += vformat(" %s = mat4(__rot_matrix);\n", p_output_vars[1]); + } code += " }\n"; return code; } VisualShaderNodeRotationByAxis::VisualShaderNodeRotationByAxis() { + set_input_port_default_value(0, Vector3()); set_input_port_default_value(1, 0.0); - set_input_port_default_value(2, Vector3(0.0, 0.0, 0.0)); + set_input_port_default_value(2, Vector3()); simple_decl = false; } |