gghf

turn

Jul 16th, 2022
921
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.25 KB | None | 0 0
  1. -- definition
  2. local function turnLeft()
  3.     turtle.turnLeft()
  4.     xDir, zDir = -zDir, xDir
  5. end
  6.  
  7. local function turnRight()
  8.     turtle.turnRight()
  9.     xDir, zDir = zDir, -xDir
  10. end
  11.  
  12. -- export
  13. return { turnLeft = turnLeft, turnRight = turnRight }
  14.  
  15.  
Advertisement
Add Comment
Please, Sign In to add comment