Skaap — 08/02/2020
Hi, hope this is the correct # for a humble feature request: Half block trap glass. Because steel trapdoors in space with holes look funny and there is nothing else to use that looks good.
Attachment file type: trapglass.png 408.04 KB
SX — 08/02/2020
@Skaap it is completely fine to ask here but correct place would be https://github.com/pandorabox-io/pandorabox.io/issues
GitHub
pandorabox-io/pandorabox.io
Pandorabox minetest server config. Contribute to pandorabox-io/pandorabox.io development by creating an account on GitHub.
and if you know right away how to add those then using github you could also actually make changes and simply request your changes to be applied on server.
BuckarooBanzai — 08/02/2020
@Skaap interesting idea, i haven't used a node in the tablesaw before that was not walkable = true before, don't know if this will cause any issues... :thinking:
Skaap — 08/02/2020
@BuckarooBanzai I did some testing the problem I run into is that paramtype2 = "colorwallmounted" or any other setting I tried didn't allow turning nodes with screwdriver be separated from changing the node color.
I tried this:
stairsplus:register_all("moreblocks", "trap_super_glow_glass", "moreblocks:trap_super_glow_glass", {
description = "Trap Super Glow Glass",
tiles = { "stained_glass.png" },
palette = "unifieddyes_palette_extended.png",
paramtype = "light",
paramtype2 = "colorwallmounted",
sunlight_propagates = true,
use_texture_alpha = true,
is_ground_content = false,
light_source = default.LIGHT_MAX,
walkable = false,
groups = {snappy=2, cracky = 3, oddly_breakable_by_hand = 3, ud_param2_colorable = 1},
sounds = default.sound_glass,
})
Skaap — 08/02/2020 Hi, hope this is the correct # for a humble feature request: Half block trap glass. Because steel trapdoors in space with holes look funny and there is nothing else to use that looks good. Attachment file type: trapglass.png 408.04 KB
SX — 08/02/2020 @Skaap it is completely fine to ask here but correct place would be https://github.com/pandorabox-io/pandorabox.io/issues GitHub pandorabox-io/pandorabox.io Pandorabox minetest server config. Contribute to pandorabox-io/pandorabox.io development by creating an account on GitHub. and if you know right away how to add those then using github you could also actually make changes and simply request your changes to be applied on server.
BuckarooBanzai — 08/02/2020 @Skaap interesting idea, i haven't used a node in the tablesaw before that was not walkable = true before, don't know if this will cause any issues... :thinking:
Skaap — 08/02/2020 @BuckarooBanzai I did some testing the problem I run into is that paramtype2 = "colorwallmounted" or any other setting I tried didn't allow turning nodes with screwdriver be separated from changing the node color. I tried this: stairsplus:register_all("moreblocks", "trap_super_glow_glass", "moreblocks:trap_super_glow_glass", { description = "Trap Super Glow Glass", tiles = { "stained_glass.png" }, palette = "unifieddyes_palette_extended.png", paramtype = "light", paramtype2 = "colorwallmounted", sunlight_propagates = true, use_texture_alpha = true, is_ground_content = false, light_source = default.LIGHT_MAX, walkable = false, groups = {snappy=2, cracky = 3, oddly_breakable_by_hand = 3, ud_param2_colorable = 1}, sounds = default.sound_glass, })