1:
I am modelling 3d guns for minetest. I want to know if player can actually hold it or not?
He is talking about models not craft items or tools
If you do a text search on the page, you will find the word "tool" first on my post, and craft / items on your under :P
2: you can use nodes as tools, tools / craft items cant use models so why not use the nodes? the problem will be solved in a simple way.
add "stack_max = 1" to make it work like a tool (can only wear 1 in a slot)
and this to make it unplaceable
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
- Code: Select all
on_place=function(itemstack, user, pointed_thing)
return itemstack
end,