Fix #126013: Geometry nodes PLY import node skips attributes

Just turn on the option for geometry nodes where attributes are
generally expected to be used. We could expose this and other
options at some point too but that requires a bit more thought.
This commit is contained in:
Hans Goudey
2024-08-14 08:42:29 -04:00
parent d56196ad96
commit 7d08d6be6a

View File

@@ -35,6 +35,7 @@ static void node_geo_exec(GeoNodeExecParams params)
PLYImportParams import_params{};
STRNCPY(import_params.filepath, path.c_str());
import_params.import_attributes = true;
ReportList reports;
BKE_reports_init(&reports, RPT_STORE);