Skip to content
This repository has been archived by the owner on Dec 1, 2020. It is now read-only.

Set the paused argument in the gazebo empty_world.launch to False #54

Merged
merged 2 commits into from
May 5, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion march_simulation/launch/march_world.launch
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
<arg name="ground_gait" default="false" doc="Exoskeleton will ground gait if true."/>
<arg name="obstacle" default="none" doc="Obstacle to load in the simulation."/>
<arg name="robot" default="march4" doc="The robot to run. Can be: march3, march4, test_joint_rotational."/>
<arg name="balance" default="false" doc="Uses the dynamic balance gaits instead of the predefined gaits."/>

<!-- Load the URDF into the ROS Parameter Server -->
<!-- Override effort values as Gazebo uses different units than the actual IMC. -->
Expand Down Expand Up @@ -41,7 +42,7 @@
<arg name="world_name" value="$(find march_simulation)/worlds/march.world"/>
<arg name="debug" value="$(arg debug)" />
<arg name="gui" value="$(arg gazebo_ui)" />
<arg name="paused" value="true"/>
<arg name="paused" value="$(eval not balance)"/>
<arg name="use_sim_time" value="$(arg use_sim_time)"/>
<arg name="verbose" value="true" />
</include>
Expand Down