Advertisement
rater193_james

Test Model for OpenComputers

Mar 29th, 2015
419
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.70 KB | None | 0 0
  1. -- Developed by rater193, for OpenComputers 3D Printers
  2. local component = require('component')
  3. local printer = component.printer3d
  4. printer.reset()
  5. printer.addShape(9,9,8,11,10,10, 'hardened_clay_stained_red')
  6. printer.addShape(5,9,8,7,10,10, 'hardened_clay_stained_red')
  7. printer.addShape(4,6,8,12,9,10, 'hardened_clay_stained_red')
  8. printer.addShape(5,5,8,11,6,10, 'hardened_clay_stained_red')
  9. printer.addShape(6,4,8,10,5,10, 'hardened_clay_stained_red')
  10. printer.addShape(7,3,8,9,4,10, 'hardened_clay_stained_red')
  11. printer.addShape(6,2,7,10,3,10, 'stone')
  12. printer.addShape(5,0,6,11,2,11, 'cobblestone')
  13. printer.setLabel('Model test')
  14. printer.setTooltip('Modeled with RageNet Modeler')
  15. printer.commit()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement