diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2019-05-06 17:34:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-06 17:34:15 +0200 |
commit | 2a8cb46c8ea09bc0e8b7348bd89b78ca111d3a3f (patch) | |
tree | 26fde6fd1ddb09b56708c40071800fa95e8222d5 | |
parent | 7013607ef96c00e79a609392a020f621748a110b (diff) | |
parent | 4131b2b8919d023f68c904c481e5a126517bb66a (diff) |
Merge pull request #28516 from Chaosus/fix_vs_mix_title
Renames captions of Scalar/VectorInterp in Visual Shaders
-rw-r--r-- | scene/resources/visual_shader_nodes.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scene/resources/visual_shader_nodes.cpp b/scene/resources/visual_shader_nodes.cpp index d02902572c..9b8037965b 100644 --- a/scene/resources/visual_shader_nodes.cpp +++ b/scene/resources/visual_shader_nodes.cpp @@ -2350,7 +2350,7 @@ VisualShaderNodeVectorRefract::VisualShaderNodeVectorRefract() { ////////////// Scalar Interp String VisualShaderNodeScalarInterp::get_caption() const { - return "ScalarInterp"; + return "Mix"; } int VisualShaderNodeScalarInterp::get_input_port_count() const { @@ -2392,7 +2392,7 @@ VisualShaderNodeScalarInterp::VisualShaderNodeScalarInterp() { ////////////// Vector Interp String VisualShaderNodeVectorInterp::get_caption() const { - return "VectorInterp"; + return "Mix"; } int VisualShaderNodeVectorInterp::get_input_port_count() const { |