forked from Mirrorlandia_minetest/mesecons
Make load times faster by avoiding inventorycube and wielditem creation in technical blocks such as active wires and various piston orientations.
This commit is contained in:
parent
4714c908ac
commit
5b5e919683
@ -128,6 +128,10 @@ for zmy=0, 1 do
|
|||||||
description = "Wire ID:"..nodeid,
|
description = "Wire ID:"..nodeid,
|
||||||
drawtype = "nodebox",
|
drawtype = "nodebox",
|
||||||
tiles = tiles_on,
|
tiles = tiles_on,
|
||||||
|
-- inventory_image = "wires_inv.png",
|
||||||
|
-- wield_image = "wires_inv.png",
|
||||||
|
inventory_image = "jeija_mesecon_off.png",
|
||||||
|
wield_image = "jeija_mesecon_off.png",
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
paramtype2 = "facedir",
|
paramtype2 = "facedir",
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
|
@ -153,6 +153,8 @@ minetest.register_node("mesecons_pistons:piston_normal_on", {
|
|||||||
"mesecons_piston_back.png",
|
"mesecons_piston_back.png",
|
||||||
"mesecons_piston_on_front.png"
|
"mesecons_piston_on_front.png"
|
||||||
},
|
},
|
||||||
|
inventory_image = "mesecons_piston_top.png",
|
||||||
|
wield_image = "mesecons_piston_top.png",
|
||||||
groups = {cracky = 3, not_in_creative_inventory = 1},
|
groups = {cracky = 3, not_in_creative_inventory = 1},
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
paramtype2 = "facedir",
|
paramtype2 = "facedir",
|
||||||
@ -230,6 +232,8 @@ minetest.register_node("mesecons_pistons:piston_sticky_on", {
|
|||||||
"mesecons_piston_back.png",
|
"mesecons_piston_back.png",
|
||||||
"mesecons_piston_on_front.png"
|
"mesecons_piston_on_front.png"
|
||||||
},
|
},
|
||||||
|
inventory_image = "mesecons_piston_top.png",
|
||||||
|
wield_image = "mesecons_piston_top.png",
|
||||||
groups = {cracky = 3, not_in_creative_inventory = 1},
|
groups = {cracky = 3, not_in_creative_inventory = 1},
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
paramtype2 = "facedir",
|
paramtype2 = "facedir",
|
||||||
@ -303,6 +307,8 @@ minetest.register_node("mesecons_pistons:piston_up_normal_off", {
|
|||||||
"mesecons_piston_bottom.png",
|
"mesecons_piston_bottom.png",
|
||||||
"mesecons_piston_top.png^[transformR180",
|
"mesecons_piston_top.png^[transformR180",
|
||||||
},
|
},
|
||||||
|
inventory_image = "mesecons_piston_top.png",
|
||||||
|
wield_image = "mesecons_piston_top.png",
|
||||||
groups = {cracky = 3, not_in_creative_inventory = 1},
|
groups = {cracky = 3, not_in_creative_inventory = 1},
|
||||||
paramtype2 = "facedir",
|
paramtype2 = "facedir",
|
||||||
drop = "mesecons_pistons:piston_normal_off",
|
drop = "mesecons_pistons:piston_normal_off",
|
||||||
@ -323,6 +329,8 @@ minetest.register_node("mesecons_pistons:piston_up_normal_on", {
|
|||||||
"mesecons_piston_bottom.png",
|
"mesecons_piston_bottom.png",
|
||||||
"mesecons_piston_top.png^[transformR180",
|
"mesecons_piston_top.png^[transformR180",
|
||||||
},
|
},
|
||||||
|
inventory_image = "mesecons_piston_top.png",
|
||||||
|
wield_image = "mesecons_piston_top.png",
|
||||||
groups = {cracky = 3, not_in_creative_inventory = 1},
|
groups = {cracky = 3, not_in_creative_inventory = 1},
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
paramtype2 = "facedir",
|
paramtype2 = "facedir",
|
||||||
@ -379,6 +387,8 @@ minetest.register_node("mesecons_pistons:piston_up_sticky_off", {
|
|||||||
"mesecons_piston_top.png^[transformR180",
|
"mesecons_piston_top.png^[transformR180",
|
||||||
"mesecons_piston_tb.png"
|
"mesecons_piston_tb.png"
|
||||||
},
|
},
|
||||||
|
inventory_image = "mesecons_piston_top.png",
|
||||||
|
wield_image = "mesecons_piston_top.png",
|
||||||
groups = {cracky = 3, not_in_creative_inventory = 1},
|
groups = {cracky = 3, not_in_creative_inventory = 1},
|
||||||
paramtype2 = "facedir",
|
paramtype2 = "facedir",
|
||||||
drop = "mesecons_pistons:piston_sticky_off",
|
drop = "mesecons_pistons:piston_sticky_off",
|
||||||
@ -399,6 +409,8 @@ minetest.register_node("mesecons_pistons:piston_up_sticky_on", {
|
|||||||
"mesecons_piston_bottom.png",
|
"mesecons_piston_bottom.png",
|
||||||
"mesecons_piston_top.png^[transformR180",
|
"mesecons_piston_top.png^[transformR180",
|
||||||
},
|
},
|
||||||
|
inventory_image = "mesecons_piston_top.png",
|
||||||
|
wield_image = "mesecons_piston_top.png",
|
||||||
groups = {cracky = 3, not_in_creative_inventory = 1},
|
groups = {cracky = 3, not_in_creative_inventory = 1},
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
paramtype2 = "facedir",
|
paramtype2 = "facedir",
|
||||||
@ -473,6 +485,8 @@ minetest.register_node("mesecons_pistons:piston_down_normal_off", {
|
|||||||
"mesecons_piston_bottom.png^[transformR180",
|
"mesecons_piston_bottom.png^[transformR180",
|
||||||
"mesecons_piston_top.png",
|
"mesecons_piston_top.png",
|
||||||
},
|
},
|
||||||
|
inventory_image = "mesecons_piston_top.png",
|
||||||
|
wield_image = "mesecons_piston_top.png",
|
||||||
groups = {cracky = 3, not_in_creative_inventory = 1},
|
groups = {cracky = 3, not_in_creative_inventory = 1},
|
||||||
paramtype2 = "facedir",
|
paramtype2 = "facedir",
|
||||||
drop = "mesecons_pistons:piston_normal_off",
|
drop = "mesecons_pistons:piston_normal_off",
|
||||||
@ -493,6 +507,8 @@ minetest.register_node("mesecons_pistons:piston_down_normal_on", {
|
|||||||
"mesecons_piston_bottom.png^[transformR180",
|
"mesecons_piston_bottom.png^[transformR180",
|
||||||
"mesecons_piston_top.png",
|
"mesecons_piston_top.png",
|
||||||
},
|
},
|
||||||
|
inventory_image = "mesecons_piston_top.png",
|
||||||
|
wield_image = "mesecons_piston_top.png",
|
||||||
groups = {cracky = 3, not_in_creative_inventory = 1},
|
groups = {cracky = 3, not_in_creative_inventory = 1},
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
paramtype2 = "facedir",
|
paramtype2 = "facedir",
|
||||||
@ -545,6 +561,8 @@ minetest.register_node("mesecons_pistons:piston_down_sticky_off", {
|
|||||||
"mesecons_piston_bottom.png^[transformR180",
|
"mesecons_piston_bottom.png^[transformR180",
|
||||||
"mesecons_piston_top.png",
|
"mesecons_piston_top.png",
|
||||||
},
|
},
|
||||||
|
inventory_image = "mesecons_piston_top.png",
|
||||||
|
wield_image = "mesecons_piston_top.png",
|
||||||
groups = {cracky = 3, not_in_creative_inventory = 1},
|
groups = {cracky = 3, not_in_creative_inventory = 1},
|
||||||
paramtype2 = "facedir",
|
paramtype2 = "facedir",
|
||||||
drop = "mesecons_pistons:piston_sticky_off",
|
drop = "mesecons_pistons:piston_sticky_off",
|
||||||
@ -565,6 +583,8 @@ minetest.register_node("mesecons_pistons:piston_down_sticky_on", {
|
|||||||
"mesecons_piston_bottom.png^[transformR180",
|
"mesecons_piston_bottom.png^[transformR180",
|
||||||
"mesecons_piston_top.png",
|
"mesecons_piston_top.png",
|
||||||
},
|
},
|
||||||
|
inventory_image = "mesecons_piston_top.png",
|
||||||
|
wield_image = "mesecons_piston_top.png",
|
||||||
groups = {cracky = 3, not_in_creative_inventory = 1},
|
groups = {cracky = 3, not_in_creative_inventory = 1},
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
paramtype2 = "facedir",
|
paramtype2 = "facedir",
|
||||||
|
Loading…
Reference in New Issue
Block a user