You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently only building asset on Ubuntu is supported. Build windows version is not supported.
5
+
6
+
## Build docker image
7
+
8
+
1. Source ROS2 (foxy or galactic):
9
+
10
+
```bash
11
+
. /opt/ros/<ROS_DISTRO>/setup.bash
12
+
```
13
+
14
+
2. Build image - image will be based on sourced ROS2 version:
15
+
16
+
```bash
17
+
./build_image.sh
18
+
```
19
+
20
+
## Using docker container
21
+
22
+
1. Run docker container. Container will fetch `master` version of `ros2-for-unity`:
23
+
24
+
```bash
25
+
./run_container.sh
26
+
```
27
+
28
+
2. Build asset. `./run_container.sh` script mounts `install` host directory inside docker, so you can find install results on host machine:
29
+
30
+
```bash
31
+
./build.sh --with-tests
32
+
```
33
+
34
+
## Adding custom messages
35
+
36
+
You can add custom messages by putting them inside `docker/custom_messages` folder or just simply `git clone` them inside docker containers `/workdir/ros2-for-unity/src/ros2cs/src/custom_messages`
0 commit comments