Skip to content

Commit

Permalink
Add collsion layers and group to disable NPC collisions with robots
Browse files Browse the repository at this point in the history
Signed-off-by: Michał Pełka <[email protected]>
  • Loading branch information
michalpelka committed Oct 2, 2024
1 parent 5a0dab2 commit 2883752
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Project/Prefabs/Features/HumanNavigation.prefab
Original file line number Diff line number Diff line change
Expand Up @@ -1226,9 +1226,9 @@
{
"op": "replace",
"path": "/ContainerEntity/Components/TransformComponent/Transform Data/Translate/1",
"value": 10.576000213623047
"value": 10.576000213623049
}
]
}
}
}
}
15 changes: 12 additions & 3 deletions Project/Registry/physxsystemconfiguration.setreg
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
"Default",
"Navigation",
"Lidar",
{},
{},
"NPCs",
"Ground",
{},
{},
{},
Expand Down Expand Up @@ -106,6 +106,15 @@
"Group": {
"Mask": 18446744073709551613
}
},
{
"Id": {
"GroupId": "{72AB7AF0-F57A-4DA8-8498-3DBCF3789BAE}"
},
"Name": "NPCGroup",
"Group": {
"Mask": 18446744073709551608
}
}
]
}
Expand All @@ -114,4 +123,4 @@
}
}
}
}
}
18 changes: 18 additions & 0 deletions Project/Registry/sim_config.setreg
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{

"O3DE":
{
"InputSystem":
{
"Mouse":
{
"CaptureMouseCursor": false
}
},
"ROS2":
{
"SteadyClock" : true
}

}
}
2 changes: 1 addition & 1 deletion ros2_ws/src/Universal_Robots_ROS2_Driver
Submodule Universal_Robots_ROS2_Driver updated 68 files
+1 −0 .github/workflows/humble-binary-build.yml
+1 −0 .github/workflows/humble-semi-binary-build.yml
+2 −2 .pre-commit-config.yaml
+52 −110 README.md
+1 −1 Universal_Robots_ROS2_Driver-not-released.humble.repos
+1 −1 Universal_Robots_ROS2_Driver.humble.repos
+142 −0 ci_status.md
+21 −0 ur/CHANGELOG.rst
+1 −1 ur/package.xml
+24 −0 ur_bringup/CHANGELOG.rst
+36 −490 ur_bringup/launch/ur_control.launch.py
+1 −1 ur_bringup/package.xml
+23 −0 ur_calibration/CHANGELOG.rst
+97 −0 ur_calibration/doc/algorithm.rst
+ ur_calibration/doc/calibration_example.png
+ ur_calibration/doc/calibration_example_corrected.png
+ ur_calibration/doc/calibration_uncorrected.png
+85 −0 ur_calibration/doc/conf.py
+17 −0 ur_calibration/doc/index.rst
+28 −0 ur_calibration/doc/usage.rst
+1 −1 ur_calibration/package.xml
+49 −34 ur_calibration/src/calibration.cpp
+90 −66 ur_calibration/test/calibration_test.cpp
+32 −0 ur_controllers/CHANGELOG.rst
+1 −1 ur_controllers/package.xml
+5 −11 ur_controllers/src/gpio_controller.cpp
+183 −119 ur_controllers/src/scaled_joint_trajectory_controller.cpp
+21 −0 ur_dashboard_msgs/CHANGELOG.rst
+1 −1 ur_dashboard_msgs/package.xml
+30 −0 ur_moveit_config/CHANGELOG.rst
+25 −0 ur_moveit_config/config/joint_limits.yaml
+6 −0 ur_moveit_config/config/ur_servo.yaml
+42 −18 ur_moveit_config/launch/ur_moveit.launch.py
+1 −1 ur_moveit_config/package.xml
+52 −0 ur_robot_driver/CHANGELOG.rst
+6 −1 ur_robot_driver/CMakeLists.txt
+3 −0 ur_robot_driver/config/ur20_update_rate.yaml
+3 −0 ur_robot_driver/config/ur30_update_rate.yaml
+41 −41 ur_robot_driver/config/ur_controllers.yaml
+ ur_robot_driver/doc/installation/initial_setup_images/e-Series.jpg
+ ur_robot_driver/doc/installation/initial_setup_images/family_photo.png
+71 −0 ur_robot_driver/doc/installation/installation.rst
+1 −0 ur_robot_driver/doc/installation/toc.rst
+2 −2 ur_robot_driver/doc/installation/ursim_docker.rst
+4 −4 ur_robot_driver/doc/usage.rst
+6 −2 ur_robot_driver/include/ur_robot_driver/hardware_interface.hpp
+36 −11 ur_robot_driver/include/ur_robot_driver/urcl_log_handler.hpp
+2 −2 ur_robot_driver/launch/ur10.launch.py
+2 −2 ur_robot_driver/launch/ur10e.launch.py
+2 −2 ur_robot_driver/launch/ur16e.launch.py
+102 −0 ur_robot_driver/launch/ur20.launch.py
+2 −2 ur_robot_driver/launch/ur3.launch.py
+102 −0 ur_robot_driver/launch/ur30.launch.py
+2 −2 ur_robot_driver/launch/ur3e.launch.py
+2 −2 ur_robot_driver/launch/ur5.launch.py
+2 −2 ur_robot_driver/launch/ur5e.launch.py
+108 −45 ur_robot_driver/launch/ur_control.launch.py
+2 −2 ur_robot_driver/package.xml
+5 −92 ur_robot_driver/scripts/start_ursim.sh
+3 −0 ur_robot_driver/src/controller_stopper.cpp
+1 −1 ur_robot_driver/src/dashboard_client_node.cpp
+24 −13 ur_robot_driver/src/hardware_interface.cpp
+9 −6 ur_robot_driver/src/urcl_log_handler.cpp
+11 −129 ur_robot_driver/test/dashboard_client.py
+148 −0 ur_robot_driver/test/launch_args.py
+124 −250 ur_robot_driver/test/robot_driver.py
+347 −0 ur_robot_driver/test/test_common.py
+17 −169 ur_robot_driver/test/urscript_interface.py

0 comments on commit 2883752

Please sign in to comment.