Skip to content

Commit 24b210d

Browse files
committed
Fix update_property() in particle material editor
1 parent 8e951fd commit 24b210d

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)