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

Fixed not setting a variable

parent e33d6a18
No related branches found
No related tags found
No related merge requests found
......@@ -530,10 +530,10 @@ void MujocoIO::addMocapContactExcludes(mjcf::Body mocap)
void MujocoIO::addActuators()
{
std::vector<mjcf::Joint> jointElements = mjcf::Collector<mjcf::Joint>::collect(
const std::vector<mjcf::Joint> jointElements = mjcf::Collector<mjcf::Joint>::collect(
*document, document->worldbody());
for (auto joint : jointElements)
for (const auto& joint : jointElements)
{
mjcf::AnyElement actuator;
......@@ -543,7 +543,6 @@ void MujocoIO::addActuators()
case ActuatorType::MOTOR:
{
mjcf::ActuatorMotor act = document->actuator().addMotor(jointName);
actuator = act;
break;
}
......@@ -551,7 +550,7 @@ void MujocoIO::addActuators()
case ActuatorType::POSITION:
{
mjcf::ActuatorPosition act = document->actuator().addPosition(jointName);
act.name = joint.name;
actuator = act;
if (joint.limited)
{
......@@ -562,8 +561,7 @@ void MujocoIO::addActuators()
break;
case ActuatorType::VELOCITY:
mjcf::ActuatorVelocity act = document->actuator().addVelocity(jointName);
act.name = joint.name;
actuator = document->actuator().addVelocity(jointName);
break;
}
......
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