-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Hooks, Cleanup and Depth Camera Transform
- Loading branch information
1 parent
e70d22e
commit dab7d7f
Showing
8 changed files
with
167 additions
and
163 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,12 @@ | ||
# Default gazebo env variables | ||
FILE=/usr/share/gazebo/setup.bash | ||
if test -f "$FILE"; then | ||
source $FILE | ||
GAZEBO_CLASSIC_SOURCE_FILE=/usr/share/gazebo/setup.bash | ||
if test -f "$GAZEBO_CLASSIC_SOURCE_FILE"; then | ||
source $GAZEBO_CLASSIC_SOURCE_FILE | ||
# Adding our models to the GAZEBO_MODEL_PATH | ||
ament_prepend_unique_value GAZEBO_MODEL_PATH "$COLCON_CURRENT_PREFIX/share/@PROJECT_NAME@/models" | ||
fi | ||
|
||
# Adding our models to the GAZEBO_MODEL_PATH | ||
ament_prepend_unique_value GAZEBO_MODEL_PATH "$COLCON_CURRENT_PREFIX/share/@PROJECT_NAME@/models" | ||
|
||
GZ_FORTRESS_DIRECTORY=/usr/share/ignition | ||
if test -d "$GZ_FORTRESS_DIRECTORY"; then | ||
ament_prepend_unique_value IGN_GAZEBO_RESOURCE_PATH "$COLCON_CURRENT_PREFIX/share/@PROJECT_NAME@/models" | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,26 @@ | ||
<?xml version="1.0"?> | ||
<package format="2"> | ||
<name>new_bcr_robot</name> | ||
<version>0.5.0</version> | ||
<description>new_bcr_robot</description> | ||
<name>new_bcr_robot</name> | ||
<version>0.5.0</version> | ||
<description>new_bcr_robot</description> | ||
|
||
<maintainer email="[email protected]">leander</maintainer> | ||
<maintainer email="[email protected]">leander</maintainer> | ||
|
||
<license>(C) Black Coffee Robotics</license> | ||
<license>(C) Black Coffee Robotics</license> | ||
|
||
<buildtool_depend>ament_cmake</buildtool_depend> | ||
<buildtool_depend>ament_cmake</buildtool_depend> | ||
|
||
<exec_depend>ament_index_python</exec_depend> | ||
<exec_depend>launch</exec_depend> | ||
<exec_depend>launch_ros</exec_depend> | ||
<exec_depend>robot_state_publisher</exec_depend> | ||
<exec_depend>xacro</exec_depend> | ||
<exec_depend>ament_index_python</exec_depend> | ||
<exec_depend>launch</exec_depend> | ||
<exec_depend>launch_ros</exec_depend> | ||
<exec_depend>robot_state_publisher</exec_depend> | ||
<exec_depend>xacro</exec_depend> | ||
|
||
<test_depend>ament_cmake_gtest</test_depend> | ||
<test_depend>ament_lint_auto</test_depend> | ||
<test_depend>ament_lint_common</test_depend> | ||
<test_depend>ament_cmake_gtest</test_depend> | ||
<test_depend>ament_lint_auto</test_depend> | ||
<test_depend>ament_lint_common</test_depend> | ||
|
||
<export> | ||
<build_type>ament_cmake</build_type> | ||
</export> | ||
<export> | ||
<build_type>ament_cmake</build_type> | ||
</export> | ||
</package> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.