Skip to content

Commit 9a482f8

Browse files
authored
Amanda/tutorial updates (#95)
* Feedback: Part 1 scene name * Update ArticulationBody links to manual * Quick demo scripts > Assets/DemoScripts
1 parent 8af9180 commit 9a482f8

File tree

6 files changed

+5
-5
lines changed

6 files changed

+5
-5
lines changed

faq.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ How does your Unity integration compare to [ROS#](https://github.com/siemens/ros
2323
---
2424
Two of the Unity Robotics repos (URDF Importer and TCP Connector) have been forked from the Siemens ROS# repo.
2525

26-
In the URDF Importer we have added the functionality to instantiate a robot from URDF into a Unity scene with [Articulation Body](https://docs.unity3d.com/2020.1/Documentation/ScriptReference/ArticulationBody.html) components on their corresponding joints.
26+
In the URDF Importer we have added the functionality to instantiate a robot from URDF into a Unity scene with [Articulation Body](https://docs.unity3d.com/2020.2/Documentation/Manual/class-ArticulationBody.html) components on their corresponding joints.
2727

2828
Aside from facilitating communication with the TCP Endpoint, the TCP Connector contains the `MessageGeneration` code from ROS#. We added the extra functionality that when generating a C# class from a ROS message, functions are also generated that will serialize and deserialize the messages as ROS would internally.
2929

@@ -72,7 +72,7 @@ Ensure that the ROS IP address is entered correctly as the `Host Name` in the Ro
7272

7373
I don't see an option to Import Robot from URDF, or I have compile errors upon importing the URDF-Importer.
7474
---
75-
The [ArticulationBody](https://docs.unity3d.com/2020.2/Documentation/ScriptReference/ArticulationBody.html) has dependencies on Unity Editor versions [2020.2.0](https://unity3d.com/unity/whats-new/2020.2.0)+. Try updating your project to the latest 2020.2 release.
75+
The [ArticulationBody](https://docs.unity3d.com/2020.2/Documentation/Manual/class-ArticulationBody.html) has dependencies on Unity Editor versions [2020.2.0](https://unity3d.com/unity/whats-new/2020.2.0)+. Try updating your project to the latest 2020.2 release.
7676

7777
# Can't find what you're looking for?
7878
Connect directly with the Robotics team at [unity-robotics@unity3d.com](mailto:unity-robotics@unity3d.com)!

tutorials/pick_and_place/1_urdf.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ This part includes downloading and installing the Unity Editor, setting up a bas
3030
3131
1. Click the newly added project to open it.
3232
33-
1. Unity should open the project to a scene titled `EmptyScene`. If it did not, you can find it in the Project window in the Assets/Scenes directory, and double-click to open it now.
33+
1. In Unity, double click to open the `Assets/Scenes/EmptyScene` scene if it is not already open.
3434
> Note: If you have some experience with Unity and would like to skip the scene setup portion, you can open the scene named `TutorialScene` now and skip ahead to [Setting up the robot](#setting-up-the-robot).
3535
3636
> Note: Only one Unity scene should be open at a time. If you see multiple scenes open in the Hierarchy view, double-click the desired scene, e.g. `Assets/Scenes/EmptyScene`, to open it and close the other scenes.
@@ -104,7 +104,7 @@ This part includes downloading and installing the Unity Editor, setting up a bas
104104
## Resources
105105
106106
- More on the URDF Importer tool [here](https://github.com/Unity-Technologies/URDF-Importer)
107-
- Unity [Articulation Body Documentation](https://docs.unity3d.com/2020.1/Documentation/ScriptReference/ArticulationBody.html)
107+
- Unity [Articulation Body Manual](https://docs.unity3d.com/2020.2/Documentation/Manual/class-ArticulationBody.html)
108108
- For an introduction to Unity, check out the [Roll-a-Ball tutorial](https://learn.unity.com/project/roll-a-ball)
109109
110110
---

tutorials/pick_and_place/3_pick_and_place.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ def plan_trajectory(move_group, destination_pose, start_joint_angles):
175175
## Resources
176176

177177
- [MoveIt!](https://github.com/ros-planning/moveit)
178-
- Unity [Articulation Body Documentation](https://docs.unity3d.com/2020.1/Documentation/ScriptReference/ArticulationBody.html)
178+
- Unity [Articulation Body Manual](https://docs.unity3d.com/2020.2/Documentation/Manual/class-ArticulationBody.html)
179179
180180
---
181181

tutorials/pick_and_place/PickAndPlaceProject/Assets/Scripts.meta renamed to tutorials/pick_and_place/PickAndPlaceProject/Assets/DemoScripts.meta

File renamed without changes.

tutorials/pick_and_place/PickAndPlaceProject/Assets/Scripts/Demo.cs renamed to tutorials/pick_and_place/PickAndPlaceProject/Assets/DemoScripts/Demo.cs

File renamed without changes.

tutorials/pick_and_place/PickAndPlaceProject/Assets/Scripts/Demo.cs.meta renamed to tutorials/pick_and_place/PickAndPlaceProject/Assets/DemoScripts/Demo.cs.meta

File renamed without changes.

0 commit comments

Comments
 (0)