feat: render split lines

This commit is contained in:
parker
2025-08-04 12:16:19 +01:00
parent 551ccfd3a8
commit c685e4b9bd
3 changed files with 33 additions and 13 deletions

View File

@@ -78,7 +78,7 @@ void GopGeometryImport::cookOp(enzo::op::Context context)
const bt::Vector3 pointPos = {std::stod(result[1]), std::stod(result[2]), std::stod(result[3])};
PAttrHandle.addValue(pointPos);
}
else if(firstChar=='f')
else if(firstChar=='f' || firstChar=='l')
{
std::vector<std::string> result;
boost::split(result, line, isspace);