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:
2020-12-14 10:46:19 +01:00
parent 067046c26a
commit 45bf470ee9

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: