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.
This commit is contained in:
Jacques Lucke 2020-12-14 10:46:19 +01:00
parent 067046c26a
commit 45bf470ee9
Notes: blender-bot 2023-02-14 07:30:31 +01:00
Referenced by issue #83712, Regression. Math node. Tangent function fails with Eevee and work only with Cycles.
1 changed files with 2 additions and 0 deletions

View File

@ -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: