Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- definition
- local function turnLeft()
- turtle.turnLeft()
- xDir, zDir = -zDir, xDir
- end
- local function turnRight()
- turtle.turnRight()
- xDir, zDir = zDir, -xDir
- end
- -- export
- return { turnLeft = turnLeft, turnRight = turnRight }
Advertisement
Add Comment
Please, Sign In to add comment