So for a project I was working on I noticed that there is a lack of functionality for current movers to do the task I’m attempting. I want to move a chess piece to position B from its current A. Originally I had planned to use the SetMoveTo value of a simple mover all pieces on the board to the target location, and then fire only the relevant piece’s GoTo to send it to the intended location. Unfortunately the GoTo of a simple mover requires its own position to be set and does not use the internal MoveTo.
So the suggestion I have is to add a new component, or preferably a new connection to existing simple movers that allows you to set a position and goTo that set position as seperate I/O.
It would also be preferable if you could copy Counters value into the X Y Z coordinates separately into a mover’s SetMoveTo as a “CopyMoveToX”,”CopyMoveToY”, and “CopyMoveToZ” coordinate to allow the solving of an objects end position using a math from counters.