Unverified Commit c9de04b6 by Rémi Verschelde Committed by GitHub

Merge pull request #37890 from nicomitchell/FixPosModTypeReturn

Change MATH_POSMOD return type back to INT
parents 9db52594 f7cc2b09
......@@ -506,7 +506,9 @@ PropertyInfo VisualScriptBuiltinFunc::get_output_value_port_info(int p_idx) cons
case MATH_CEIL: {
t = Variant::FLOAT;
} break;
case MATH_POSMOD:
case MATH_POSMOD: {
t = Variant::INT;
} break;
case MATH_ROUND: {
t = Variant::FLOAT;
} break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment