diff options
author | FaceDeer <derksenmobile@gmail.com> | 2017-01-10 22:59:11 -0700 |
---|---|---|
committer | FaceDeer <derksenmobile@gmail.com> | 2017-01-10 22:59:11 -0700 |
commit | e682130266799f7b320a9b56964963bb348cc1cb (patch) | |
tree | 701802e1013c2d1cd623c73fdfa1fd944202e1aa /node_storage.lua | |
parent | 38e1cbc41e470ec1fdfca7036056acc1297bcd1c (diff) |
convert all the textures to transparent overlays on digtron_plate to allow easier reskinning
Diffstat (limited to 'node_storage.lua')
-rw-r--r-- | node_storage.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/node_storage.lua b/node_storage.lua index e24fa98..3362258 100644 --- a/node_storage.lua +++ b/node_storage.lua @@ -8,7 +8,7 @@ minetest.register_node("digtron:inventory", sounds = digtron.metal_sounds, paramtype2= "facedir", is_ground_content = false, - tiles = {"digtron_inventory.png"}, + tiles = {"digtron_plate.png^digtron_inventory.png"}, on_construct = function(pos) local meta = minetest.get_meta(pos) @@ -67,7 +67,7 @@ minetest.register_node("digtron:fuelstore", sounds = digtron.metal_sounds, paramtype2= "facedir", is_ground_content = false, - tiles = {"digtron_fuelstore.png"}, + tiles = {"digtron_plate.png^digtron_fuelstore.png"}, on_construct = function(pos) local meta = minetest.get_meta(pos) @@ -146,7 +146,7 @@ minetest.register_node("digtron:combined_storage", sounds = digtron.metal_sounds, paramtype2= "facedir", is_ground_content = false, - tiles = {"digtron_combined_storage.png"}, + tiles = {"digtron_plate.png^digtron_combined_storage.png"}, on_construct = function(pos) local meta = minetest.get_meta(pos) |