You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +00:00
Change round return type to float
(cherry picked from commitsc2ffaf5b2bandf7cc2b090c)
This commit is contained in:
committed by
Rémi Verschelde
parent
3d69fe95e5
commit
616d106247
@@ -506,10 +506,12 @@ PropertyInfo VisualScriptBuiltinFunc::get_output_value_port_info(int p_idx) cons
|
||||
case MATH_CEIL: {
|
||||
t = Variant::REAL;
|
||||
} break;
|
||||
case MATH_POSMOD:
|
||||
case MATH_ROUND: {
|
||||
case MATH_POSMOD: {
|
||||
t = Variant::INT;
|
||||
} break;
|
||||
case MATH_ROUND: {
|
||||
t = Variant::REAL;
|
||||
} break;
|
||||
case MATH_ABS: {
|
||||
t = Variant::NIL;
|
||||
} break;
|
||||
|
||||
Reference in New Issue
Block a user