facedir
I cannot make this work. If creating a simpleblock, with drawtype chest like, paramtype2 = 'facedir' and legacy_facedir_simple = true. It still does not affect the face directory.
FOSS gamedev and creative worlds
https://forums.minetest.org/
minetest.register_node("yourmod:invblock", {
description = "InvBlock",
tile_images = {"default_wood.png", "default_wood.png", "default_lava.png",
"default_water.png", "default_lava.png", "default_gravel.png"},
paramtype2 = "facedir",
metadata_name = "chest",
groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2},
legacy_facedir_simple = true,
})