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
Filename = TrajectoryPlanner.cs
//foreach (var t in response.trajectories[poseIndex].joint_trajectory.points)
foreach (var t in response.trajectories[poseIndex].trajectory)
{
//var jointPositions = t.positions;
var jointPositions = t.trajectory;
var result = jointPositions.Select(r => (float)r * Mathf.Rad2Deg).ToArray();
Severity Code Description Project File Line Suppression State
Error CS0030 Cannot convert type 'RosMessageTypes.NiryoMoveit.NiryoTrajectoryMsg' to 'float' Unity.Robotics.PickAndPlace F:\UnityTransfer\EXPERIMENTAL\UNITY_ROS\Unity-Robotics-Hub-main\tutorials\pick_and_place\PickAndPlaceProject\Assets\Scripts\TrajectoryPlanner.cs 184 Active
Describe the bug
A clear and concise description of what the bug is.
filename = NiryoTrajectoryMsg.cs
Moveit.RobotTrajectoryMsg // (this give error)
i changed this to NiryoMoveit.NiryoTrajectoryMsg // (no error)
filename = TrajectoryPlanner.cs
foreach (var t in response.trajectories[poseIndex].joint_trajectory.points) // (this give error)
is there any update that is not reflected in the Unity Projet folder/file e.g.: the pick and place.
i am just following the instructions here - https://github.com/Unity-Technologies/Unity-Robotics-Hub/blob/main/tutorials/pick_and_place/2_ros_tcp.md
and, Unity console show errors after doing Menu -- Robotic -- Generate ROS messages
Thanks
Zul
To Reproduce
Steps to reproduce the behavior:
Console logs / stack traces
Please wrap in triple backticks (```) to make it easier to read.
Expected behavior
A clear and concise description of what you expected to happen.
Screenshots
If applicable, add screenshots or videos to help explain your problem.
Environment (please complete the following information, where applicable):
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: