diff --git a/source/blender/io/ply/importer/ply_import.cc b/source/blender/io/ply/importer/ply_import.cc index cbf3ad7b2db..ae98921e68b 100644 --- a/source/blender/io/ply/importer/ply_import.cc +++ b/source/blender/io/ply/importer/ply_import.cc @@ -226,7 +226,7 @@ void importer_main(Main *bmain, /* Object matrix and finishing up. */ float global_scale = import_params.global_scale; if ((scene->unit.system != USER_UNIT_NONE) && import_params.use_scene_unit) { - global_scale *= scene->unit.scale_length; + global_scale /= scene->unit.scale_length; } float scale_vec[3] = {global_scale, global_scale, global_scale}; float obmat3x3[3][3];