diff options
author | DonBatman <serfdon@gmail.com> | 2015-10-23 13:54:37 -0700 |
---|---|---|
committer | DonBatman <serfdon@gmail.com> | 2015-10-23 13:54:37 -0700 |
commit | 3ab8a0c3f3163ecdcafe8f1f6d2d0e125edcde86 (patch) | |
tree | 2a064c6bf24254c44eaf73aa95ba3ecd6d9319b6 /portals.lua | |
parent | 6b949da2c7610c55f2bb83c693520b9e77a9aebc (diff) |
changed color of hud
new texture for power pellet
renamed craftitems.lua to fruit.lua
changed portal to a yellow color
Diffstat (limited to 'portals.lua')
-rw-r--r-- | portals.lua | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/portals.lua b/portals.lua index cccd920..cf90712 100644 --- a/portals.lua +++ b/portals.lua @@ -14,11 +14,12 @@ local cbox = { --Portals minetest.register_node("mypacman:portalr", { description = "Portalr ", - drawtype = "allfaces", + drawtype = "glasslike", tiles = {"mypacman_portal.png"}, paramtype = "light", sunlight_propagates = true, light_source = 14, + alpha = 150, paramtype2 = "facedir", walkable = false, is_ground_content = false, @@ -28,11 +29,12 @@ minetest.register_node("mypacman:portalr", { }) minetest.register_node("mypacman:portall", { description = "Portall ", - drawtype = "allfaces", + drawtype = "glasslike", tiles = {"mypacman_portal.png"}, paramtype = "light", sunlight_propagates = true, light_source = 14, + alpha = 150, paramtype2 = "facedir", walkable = false, is_ground_content = false, |