Advertisement
Guest User

Untitled

a guest
Feb 21st, 2013
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. minetest.register_node("forcefield:field", {
  2. description = "Forcefield",
  3. --drawtype = "glasslike",
  4. sunlight_propagates = true,
  5. drop = '',
  6. tiles = {{name="forcefield_field_animated.png", animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=1.0}}},
  7. is_ground_content = true,
  8. groups = {not_in_creative_inventory=1, unbreakable=1},
  9. paramtype = "light",
  10. drawtype = "nodebox",
  11. node_box = {
  12. type = "fixed",
  13. fixed={
  14. {-.5,-.5,-.5,.5,.5,.5},
  15. },
  16. },
  17. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement