22i / amc

quickly test - how the Minecraft mobs look like in Minetest
https://github.com/22i/minecraft-voxel-blender-models
GNU General Public License v3.0
12 stars 2 forks source link

Wield Items #1

Open MarkuBu opened 7 years ago

MarkuBu commented 7 years ago

I really like your models. But I have a suggestion. You add items to the models like the bow from the skeleton. Can you add something like the wieldview from 3d armor instead?

https://github.com/stujones11/minetest-3d_armor/tree/master/wieldview

I want to create a new mod for mobs and want to be able to give mobs different items

22i commented 7 years ago

@MarkuBu i have no idea how to do that - we better ask @stujones11 how to add wieldview support to blender models?

MarkuBu commented 7 years ago

I think you can do it the same way like in wield view

22i commented 7 years ago

@MarkuBu same as in wield view? Do you mean add it in blender - multiple panels stacked very close together to give the illusion of a 3d extrusion https://forum.minetest.net/viewtopic.php?f=11&t=4654&p=265890&sid=f3a87c89b3990c174209df51fcb10fac#p265965

MarkuBu commented 7 years ago

I don't exactly know how it works. I don't know if it is a good solution. Maybe there is a better way

maikerumine commented 7 years ago

Hi guys! I have been doing this with all my mobs for some time, you need to use 3d character mesh with texture and item. See my code in the zombie pigman: https://github.com/maikerumine/grieftest 26 visual = "mesh", 27 mesh = "3d_armor_character.b3d", 28 textures = {{"Original_Zombiepig_Man_by_Fedora_P.png", 29 "3d_armor_trans.png", 30 minetest.registered_items["default:sword_mese"].inventory_image, 31 }},

Hope this helped