This commit is contained in:
Thomas Rudin
2018-09-24 14:13:59 +02:00
부모 4bbb5071ff
커밋 8a0ea36a18
2개의 변경된 파일30개의 추가작업 그리고 0개의 파일을 삭제

파일 보기

@@ -1250,3 +1250,10 @@ minetest.register_craft({
}
})
-- https://forum.minetest.net/viewtopic.php?f=10&t=13125&p=261481#p261481
minetest.register_craft({
output = 'scifi_nodes:windowpanel 4',
recipe = {
{"scifi_nodes:glass","",""}
}
})

파일 보기

@@ -1220,3 +1220,26 @@ minetest.register_node("scifi_nodes:tallscreen", {
},
groups = {cracky=1, oddly_breakable_by_hand=1}
})
-- https://forum.minetest.net/viewtopic.php?f=10&t=13125&p=261481#p261481
minetest.register_node("scifi_nodes:windowpanel", {
description = "strong window panel",
tiles = {
"scifi_nodes_glass.png",
},
drawtype = "nodebox",
paramtype = "light",
use_texture_alpha = true,
sunlight_propagates = true,
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.0625, -0.5, -0.5, 0.0625, 0.5, 0.5}, -- NodeBox11
}
},
groups = {cracky=1},
on_place = minetest.rotate_node,
sounds = default.node_sound_glass_defaults(),
})