Advertisement
Guest User

Untitled

a guest
Nov 28th, 2012
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. minetest.register_node("homedecor:door_wood_glass_white_top_left", {
  2. description = "wood/glass door top half",
  3. drawtype = "nodebox",
  4. tiles = {
  5. "homedecor_door_wood_glass_white_tb.png",
  6. "homedecor_door_wood_glass_white_tb.png",
  7. "homedecor_door_wood_glass_white_lr.png",
  8. "homedecor_door_wood_glass_white_lr.png",
  9. "homedecor_door_wood_glass_white_right_top.png",
  10. "homedecor_door_wood_glass_white_left_top.png",
  11. },
  12. paramtype = "light",
  13. paramtype2 = "facedir",
  14. is_ground_content = true,
  15. groups = {snappy=3, not_in_creative_inventory=1},
  16. sounds = default.node_sound_wood_defaults(),
  17. walkable = true,
  18. selection_box = {
  19. type = "fixed",
  20. fixed = { -0.5, -0.5, 6/16, 0.5, 0.5, 8/16}
  21. },
  22. node_box = {
  23. type = "fixed",
  24. fixed = {
  25. { -8/16, 6/16, 6/16, 8/16, 8/16, 8/16 },
  26. { -8/16, -3/32, 6/16, 8/16, 1/32, 8/16 },
  27. { -8/16, -8/16, 6/16, 8/16, -7/16, 8/16 },
  28. { -8/16, -8/16, 6/16, -6/16, 8/16, 8/16 },
  29. { -1/16, -8/16, 6/16, 1/16, 8/16, 8/16 },
  30. { 6/16, -8/16, 6/16, 8/16, 8/16, 8/16 },
  31. { -8/16, -8/16, 7/16, 8/16, 8/16, 7/16 }
  32. }
  33. },
  34. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement