mirror of
https://github.com/godotengine/godot.git
synced 2025-04-01 00:41:35 +08:00
Only allow finite numbers in Range.value.
This commit is contained in:
parent
713bfaf5ea
commit
78304282f0
@ -94,6 +94,10 @@ void Range::set_value(double p_val) {
|
||||
}
|
||||
|
||||
void Range::_set_value_no_signal(double p_val) {
|
||||
if (!Math::is_finite(p_val)) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (shared->step > 0) {
|
||||
p_val = Math::round((p_val - shared->min) / shared->step) * shared->step + shared->min;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user