Search found 2 matches
- Sat Dec 19, 2020 16:31
- Forum: Modding Discussion
- Topic: Overriding a registration of a block
- Replies: 2
- Views: 142
Overriding a registration of a block
Hi, I am trying to change the texture of a default block and I need to override a registration. According to this: https://forum.minetest.net/viewtopic.php?t=4418, your supposed to register the item normally with a colon before it like this: minetest.register_node(":default:dirt", { drawty...
- Sun Nov 29, 2020 21:38
- Forum: Modding Discussion
- Topic: [Question] How can I get a nodes images to create a new node?
- Replies: 1
- Views: 154
[Question] How can I get a nodes images to create a new node?
Hi, I am trying to create a tool that will add a mask to a node but I am having trouble getting the clicked nodes images so that I can register and place a new node. My basic idea is that I would get the node's position and name using the on_place value of the node that I am creating, then use those...