formspec.lua 653 B

12345678910111213141516171819202122
  1. machine_formspec_centered =
  2. 'size[8,7.5]'..
  3. 'list[context;tool;0,0;1,1]'..
  4. 'label[1,0;Bones or Chisel]'..
  5. 'list[context;input;0,1;1,1]'..
  6. 'label[1,1;Material]'..
  7. 'label[0,2;Click to switch to offset versions.]'..
  8. 'button[0,2.5;2,1;offset;Switch]'..
  9. 'list[current_name;output;3,0;5,3]'..
  10. 'list[current_player;main;0,3.5;8,4]'
  11. machine_formspec_offset =
  12. 'size[8,7.5]'..
  13. 'list[context;tool;0,0;1,1]'..
  14. 'label[1,0;Bones or Chisel]'..
  15. 'list[context;input;0,1;1,1]'..
  16. 'label[1,1;Material]'..
  17. 'label[0,2;Click to switch to centered versions.]'..
  18. 'button[0,2.5;2,1;centered;Switch]'..
  19. 'list[current_name;output;3,0;5,3]'..
  20. 'list[current_player;main;0,3.5;8,4]'