Blender is still a miracle for me. Even I made some progress with it, many things are still too hard for me.
What I want to do is giving a zarchton the golden crown from Log 1 on the head. The crown model is included in the LoG2 assets pack ("golden_crown") and the problem for me is not to add it to the zarchton-model itself but to connect it in the right way, that it moves together with the head of the monster.
Is there someone who could do this for me?
Skuggasveinn was so kind to help me with another model - but I don't want to ask him again. I must not take advantage of him until the very end.
So if anyone could help me, I would be very happy...
Is there someone willing to help me with a model?
Re: Is there someone willing to help me with a model?
Instead of editing it into the model, add a ModelComponent that's just the crown model and use the parentNode property to attach it to the head node. Then you just need to find a good offset and rotation.
Code: Select all
{
class = "Model",
name = "crown",
model = "assets/models/items/golden_crown.fbx",
parentNode = "head",
-- change these two
offset = vec(0,0,0),
rotation = vec(0,0,0),
}Grimrock 1 dungeon
Grimrock 2 resources
I no longer answer scripting questions in private messages. Please ask in a forum topic or this Discord server.
Grimrock 2 resources
I no longer answer scripting questions in private messages. Please ask in a forum topic or this Discord server.
Re: Is there someone willing to help me with a model?
what a weired solution - and it works perfect!
thank you
and thanks to bongobeat who tried scripting this and shared his result with me via PM
thank you
and thanks to bongobeat who tried scripting this and shared his result with me via PM
Re: Is there someone willing to help me with a model?
It's also a developer suggested solution.THOM wrote:what a weired solution - and it works perfect!
viewtopic.php?f=22&t=7951&hilit=hudPrin ... 720#p96537