Skip to content

Commit dad6c77

Browse files
committed
Merge pull request #89048 from KoBeWi/iBug
Fix `update_property()` in particle material editor
2 parents 7c3090e + 24b210d commit dad6c77

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

editor/plugins/particle_process_material_editor_plugin.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,7 @@ void ParticleProcessMaterialMinMaxPropertyEditor::setup(float p_min, float p_max
386386
}
387387

388388
void ParticleProcessMaterialMinMaxPropertyEditor::update_property() {
389-
const Vector2i value = get_edited_property_value();
389+
const Vector2 value = get_edited_property_value();
390390
min_range->set_value(value.x);
391391
max_range->set_value(value.y);
392392
_update_slider_values();

0 commit comments

Comments
 (0)