Skip to content

Commit

Permalink
fixed sim parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
manglemix committed Jan 30, 2025
1 parent c366c30 commit 600d87b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lunabotics/lunabot/src/apps/sim.rs
Original file line number Diff line number Diff line change
Expand Up @@ -313,8 +313,8 @@ impl LunasimbotApp {
);
localizer_ref.set_acceleration(acceleration);
}
FromLunasim::Gyroscope { id: _, axis, angle } => {
localizer_ref.set_angular_velocity(axis_angle(axis, angle));
FromLunasim::Gyroscope { id: _, .. } => {
localizer_ref.set_angular_velocity(Vector3::zeros());
}
FromLunasim::DepthMap(depths) => {
if !get_observe_depth() {
Expand Down
2 changes: 1 addition & 1 deletion robot-layout/sim.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
{
"name": "depth_camera",
"origin": [0.0, 0.573, -0.298],
"euler": [-30.0, 0.0, 0.0]
"euler": [0.0, -30.0, 0.0]
}
]
}

0 comments on commit 600d87b

Please sign in to comment.