When testing sequences, is it possible to support negative offsets?

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.

After testing, I roughly understand that this conflict warning occurs when the variable is entered. If it’s an actual coordinate point with a numerical value, there’s no warning, and a negative value is entered. Even when the variable is entered and a conflict warning is issued, entering a negative value still has an effect.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.