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
Unity hangs after calling msg.Serialize() on a Marker with missing fields: marker.header.stamp and marker.lifetime.
Source used:
publicROSCorerosmaster;privateNodeHandlenh=null;privatePublisher<MarkerArray>pub;// Use this for initializationvoidStart(){nh=rosmaster.getNodeHandle();pub=nh.advertise<MarkerArray>("test",10);}voidUpdate(){MarkerArraymsg=newMarkerArray();msg.markers=newMarker[1];msg.markers[0]=newMarker();msg.markers[0].header=newMessages.std_msgs.Header();msg.markers[0].header.stamp=ROS.GetTime();msg.markers[0].lifetime=newDuration();msg.Serialize();pub.publish(msg);}
The text was updated successfully, but these errors were encountered:
GregoryLeMasurier
changed the title
Unity hangs when Markers are published with missing fields
Unity hangs when Markers are serialized with missing fields
Nov 15, 2019
Unity hangs after calling
msg.Serialize()
on a Marker with missing fields:marker.header.stamp
andmarker.lifetime
.Source used:
The text was updated successfully, but these errors were encountered: