Do you mean to the side, similar to this post?
Hi @jiang J, was Jason Lightfoot's answer helpful? If so, please click the "Accept" button at the bottom of their answer. Or if you still have questions, add a comment and we'll continue the conversation.
If we haven't heard back from you within 3 business days we'll auto-accept an answer, but you can always unaccept and comment back to reopen your question.
i mean how to get the value of "path offset" of AGV Traveler follow this picture
The initialPathOffset at reset is an agv attribute which is accessed at this location using sdt or the tree:
agv.as(treenode).subnodes["initialPathOffset"].value;
You specify an extra parameter in the travel task - see the documentation about customizing agv travel.
can u show me how to use the "agv.as(treenode).subnodes["initialPathOffset"].value " ; ths
AGV myAGV=AGV(Model.find("TaskExecuter1"));
double initialOffset=myAGV.as(treenode).subnodes["initialPathOffset"].value; //read the current value
print(initialOffset); //print to the output console
myAGV.as(treenode).subnodes["initialPathOffset"].value=5; //set it to 5 You won't see the agv move to a new initialoffset value until you reset the model.