Skip to content
Snippets Groups Projects
Commit f52e6973 authored by Rainer Kartmann's avatar Rainer Kartmann
Browse files

Ignore objects with class names starting with #

parent 23965c8c
No related branches found
No related tags found
1 merge request!390Ignore objects with class names starting with #
Pipeline #15626 failed
......@@ -1119,6 +1119,12 @@ namespace armarx::armem::server::obj::instance
for (const auto& object : scene.objects)
{
if (simox::alg::starts_with(object.className, "#"))
{
// marked to be ignored
continue;
}
const ObjectID classID = object.getClassID(objectFinder);
objpose::ObjectPose& pose = objectPoses.emplace_back();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment