move back () steps
Move back () steps
The move back () steps block is a stack block and a motion block. This block acts like the move () steps block, but goes in the opposite direction. The default value is 10, just like the move () steps block.
Workaround
Putting a negative number in the move () steps block achieves the same effect:
move ((-1) * (number::grey)) steps move ((0) - (number::grey)) steps
A workaround similar to the standard move () steps block can also be used, with subtraction instead of addition:
go to x: ((x position) - (([sin v] of (direction)) * (steps::grey))) y: ((y position) - (([cos v] of (direction)) * (steps::grey)))