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
I followed the tutorial presented within this repo to reproduce the cube example in which it rotates and publishes the orientation to my ROS terminal. When I finally hit play, the error message reads "unknown message class 'unity_robotics_demo_msgs/PosRot'". This is the name of the message within PosRotMsg.cs generated by Unity when I build my ROS messages with the tool in the "Robotics>Generate ROS messages" tool. See lines 11 thru 14 of PosRotMsg.cs below:
public class PosRotMsg : Message
{
public const string k_RosMessageName = "unity_robotics_demo_msgs/PosRot";
public override string RosMessageName => k_RosMessageName;
The text was updated successfully, but these errors were encountered:
Hi,
I followed the tutorial presented within this repo to reproduce the cube example in which it rotates and publishes the orientation to my ROS terminal. When I finally hit play, the error message reads "unknown message class 'unity_robotics_demo_msgs/PosRot'". This is the name of the message within PosRotMsg.cs generated by Unity when I build my ROS messages with the tool in the "Robotics>Generate ROS messages" tool. See lines 11 thru 14 of PosRotMsg.cs below:
public class PosRotMsg : Message
{
public const string k_RosMessageName = "unity_robotics_demo_msgs/PosRot";
public override string RosMessageName => k_RosMessageName;
The text was updated successfully, but these errors were encountered: