works just fine on my end, just downloaded the zip, added the extracted zip folder and imported and edit in godot.
Manipulating bones
xyz didnt you read my TLDR?
kuligs2 TLDR:
Cannot chain bones if you want to deform mesh
Remember to add last sacrificial bone in blender because godot is too based to import it.
In blender, create bones that are Z-aligned (call em Z-bones) Z- axis in godot, in blender it could be either x or yNote:
So for deformation in godot, you want to create separate armature that is based on the things i mentioned above.Next:
Try to create idle animation for the mesh, then deform bones in godot and see how animation looks after deform.Next - to last:
Try to save deform bone transforms to import them from either file or memory and apply it to the current session.
- Edited
kuligs2 Umm, too much stuff for me. I'm not interested in playing. If you have a specific problem - ask. Otherwise, I'm leaving you to your tinkering.
If you want each bone to behave something like Maya's cluster deformer then of course there's no point in making the hierarchy. Just parent them all to some root transform and edit vertex weights for each. No big deal.
- Edited
Tomcat Well, you are right. This is the correct way to go on about for character creation. Now i need to find a good workflow that i could apply to character making..
How did i came to this conclusion?
Well..
First i created the cube with bones and added animation, animating bones. then i imported to my godot (blend file) and with the ball nodes tried to move bones into position, and then play animation. and it reset bone positions.
For this to work i would have to calculate the animation bone transforms relative to what i set the deform to, but that is outside my abilities.
While you could do what maths pros like @xyz does and calculate their way out of situations, i just go the least resistance path ..
So the least resistance would be to deform enough the character mesh parts,, create necessary shape keys, animate char like usual with rig and then import the glft file, blend file does not import shape keys, annd use the same bone animation along with shape key values.
Now i need to figure out if you can go above 1.0 value in godot. In blender you can.
EDIT:
This oldschool video shows little bit about how to use blender shapekeys in godot
You dont need that escn importer/exporter, gltf/glb file can do that too. Atleast in blender 4.2.1 and godot 4.3
- Edited
kuligs2 This oldschool video shows little bit about how to use blender shapekeys in godot
Well, thanks for the tons of ads! Can you tell me in a nutshell how this is different from my tutorial?
Now i need to figure out if you can go above 1.0 value in godot. In blender you can.
Why? Make the shape for max change, so you don't need more than 1.
For this to work i would have to calculate the animation bone transforms relative to what i set the deform to
It's enough to bind the change bones of the mesh (make them children) to the bones of the model's rig, so that they move together. Here is an example, when boobs and butt are controlled by bones attached to the skeleton.
As far as I understand, this is roughly the method used in the first animations — moving vertices, before the invention of the rig. Now they are coming back to this idea (kind of like surface animation). But the question arises — how many such bones are needed to control the mesh? Ideally, probably as many as there are nodes on the mesh. Something too much turns out.
Tomcat Well, thanks for the tons of ads! Can you tell me in a nutshell how this is different from my tutorial?
not sure what ads you talking about. And your tutorial seems pretty software specifit as it generates predefined meshes with predefined structure. I was talking in general terms. Its not necesarily used for characters. You could bind the shapekeys to objects etc..
Also Like i said, that blend file is not exporting shapekeys for some reason. Maybe it worked in godot 3.4 and blender 3.2 but not in godot 4.3 and blender 4.2. You ahve to export to gltf file to get access to blend shapes.
Tomcat Why? Make the shape for max change, so you don't need more than 1.
To have faces like this:
Tomcat It's enough to bind the change bones of the mesh (make them children) to the bones of the model's rig, so that they move together. Here is an example, when boobs and butt are controlled by bones attached to the skeleton.
this implies you need to add more bones to the rig. while this is possible, im not sure how this is going to be in production.. i mean im no pro when it comes to these things.. i try not to get too complex otherwise ill set myself up for a failure to deliver something .
Also this looks super crazy..
Crazy ass rig
And face
But it deforms so beautifully
kuligs2 not sure what ads you talking about.
Oh, come on, there.
In our country now slow down YouTube and cut off VPN — you can watch only through TOR. And waiting for the ads to load (usually at the beginning) — the pleasure is much below average.
You could bind the shapekeys to objects etc..
It's not a good idea.
To have faces like this:
Oh, gross! It's a bug, not a feature. And if you need to do randomization of characters, will such monsters run all over the world? The process has to be controlled. Morph shape = maximum variation. If you need special deviations, make the morph accordingly. But again up to 1.
this implies you need to add more bones to the rig.
Yep.
Also this looks super crazy..
Yep again. Full customization is a real nightmare.
Morgan's proportions were not customizable afaik. Those are all animation bones but it's likely a multitude of different skeletons and bone sets that are turned on/off in realtime as needed in the game context.
Tomcat In our country now slow down YouTube and cut off VPN — you can watch only through TOR. And waiting for the ads to load (usually at the beginning) — the pleasure is much below average.
any invidious instance should help, you can copy and paste the yt link inside it and watch there, https://iv.nowhere.moe/
Tomcat It's a bug, not a feature.
To each their own.
xyz Morgan's proportions were not customizable afaik.
I know, i just wanted to show an example of crazy bones.
Right now im trying to rig a simple face mesh, animate it a bit, and then see what kind of bones i can attach and where to make some morphs work and keep the morph when its animating..
Thankfully blender offers ready made assets https://www.blender.org/download/demo-files/
Continuing, ive come to a result which seems more doable with my skillset.
Stumble upon this Starts @ 254s
It boils down to this:
Face with interactable areas
Hovering mouse over the area highlights the are you can adjust
Guy even went so far to add colorpicker for that area
This is all done with blendshapes, so you dont lose the rigged character animations.
Now my question to myself is how to set up the blendshapes so that the modifying in the character creation feels natural?...