diff --git a/editor/property_editor.cpp b/editor/property_editor.cpp index bc7d8f4b140..425a2cb173c 100644 --- a/editor/property_editor.cpp +++ b/editor/property_editor.cpp @@ -4596,21 +4596,24 @@ SectionedPropertyEditor::~SectionedPropertyEditor() { double PropertyValueEvaluator::eval(const String &p_text) { + // If range value contains a comma replace it with dot (issue #6028) + const String &p_new_text = p_text.replace(",", "."); + if (!obj || !script_language) - return _default_eval(p_text); + return _default_eval(p_new_text); Ref