Currently, testing shows that only positive offsets are supported.
For example, I want to reach a coordinate point 100, 100, -100. Then, I want to move left and right from this point to water plants. First, I go to 50, 100, -100, then to 150, 100, -100. This is input as a variable. For the offset, I simply input -50, 0, 0. This is simple. However, the offset value can only be positive. -50 cannot be saved correctly and will result in a conflict error.
If a negative value could be input, keeping the difference between the offsets positive, then there would be no conflict. If it’s a multi-point operation, when a negative value appears, it can be skipped, and the next step can be executed.
I wonder if there are other ways to implement this functionality.