Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorJacques Lucke <jacques@blender.org>2020-12-14 12:46:19 +0300
committerJacques Lucke <jacques@blender.org>2020-12-14 12:47:17 +0300
commit45bf470ee9e94e62a038c9faac891744488a1b89 (patch)
treee0fd29b68a7115eb468280b173526c7a8a6de4b8 /source
parent067046c26aaaf455c0c46470e81ac006671b8daa (diff)
Fix T83712: arctangent math node does not work in Eevee
Caused by my refactoring of the math node. Somehow this operation slipped through my double checking procedure.
Diffstat (limited to 'source')
-rw-r--r--source/blender/nodes/intern/math_functions.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/nodes/intern/math_functions.cc b/source/blender/nodes/intern/math_functions.cc
index cc5e9547a96..5a6faa809f2 100644
--- a/source/blender/nodes/intern/math_functions.cc
+++ b/source/blender/nodes/intern/math_functions.cc
@@ -41,6 +41,8 @@ const FloatMathOperationInfo *get_float_math_operation_info(const int operation)
RETURN_OPERATION_INFO("Sine", "math_sine");
case NODE_MATH_COSINE:
RETURN_OPERATION_INFO("Cosine", "math_cosine");
+ case NODE_MATH_TANGENT:
+ RETURN_OPERATION_INFO("Tangent", "math_tangent");
case NODE_MATH_ARCSINE:
RETURN_OPERATION_INFO("Arc Sine", "math_arcsine");
case NODE_MATH_ARCCOSINE: