Hello everyone,
I’m currently working on a game in Unreal Engine 5 where the player can change the heroine’s clothes.
I’m still learning how character customization and clothing systems work, and I’ve been struggling to understand the proper workflow. I’d really appreciate some advice from people who have experience with this.
Currently, my workflow is roughly like this:
-
I create and rig the character in Blender using the Auto-Rig Pro addon.
-
I purchase clothing assets, such as dresses, and fit them to the character in Blender.
-
I recently wanted to add a school uniform as another outfit.
-
I fit the uniform to the character’s body in Blender.
-
Then I delete the character’s body and try to keep/inherit the same armature/bones for the uniform.
-
I export the uniform and import it into UE5 as a Skeletal Mesh.
However, when I try to use the uniform with my existing character in UE5, I get an error when trying to merge the meshes.
At this point, I’m less interested in fixing the specific error and more concerned that my overall workflow may be inefficient or incorrect.
I’m wondering how other developers normally handle clothing swaps in UE5.
For example, is the recommended workflow something like this?
In Blender:
-
Create and rig the character once.
-
Use the same character skeleton/armature for all clothing.
-
Fit each clothing item to the character.
-
Skin/weight the clothing to the same skeleton.
-
Export only the clothing as a Skeletal Mesh.
In UE5:
-
Import the character body as one Skeletal Mesh.
-
Import each clothing item as a separate Skeletal Mesh.
-
Make sure all clothing uses the same Skeleton.
-
Then use Blueprint to show/hide or swap the clothing meshes at runtime.
For example:
SKEL_Heroine
├── SK_Heroine_Body
├── SK_Uniform
├── SK_Dress
├── SK_Casual
└── SK_Coat
And then in the character Blueprint, I would have something like:
BP_Heroine
├── Body
├── Hair
├── Clothes_Top
├── Clothes_Bottom
└── Shoes
and change the Skeletal Mesh of each clothing component depending on the player’s choice.
Is this generally the correct approach?
Also, should I be using something like Leader Pose / Copy Pose / Modular Characters / Skeletal Mesh Merge for this kind of system? I’m a little confused about which approach is most appropriate.
Another thing I’m unsure about is the Blender workflow.
When creating a new outfit, should I always start with the original character and its existing Auto-Rig Pro armature, fit the new clothes to the body, and then export only the clothes?
Or is there a better way to create and prepare clothing assets so that I don’t have to repeat a lot of work every time I add a new outfit?
For example, would a good workflow be:
Blender
Character + Armature
↓
Create/Fit Clothing
↓
Skin/Weight Clothing to the Same Armature
↓
Export Clothing Only
↓
UE5
↓
Use the Existing Character Skeleton
↓
Add Clothing as a Separate Skeletal Mesh
↓
Swap Clothing in Blueprint
I’m currently studying this subject and have been trying to understand it for several days, but I’m still having trouble understanding the correct workflow.
I’d really appreciate it if someone could explain the recommended workflow step-by-step, especially from Blender/Auto-Rig Pro → FBX → UE5 → Blueprint.
I’m working on a relatively small project, so I’m looking for a practical and efficient workflow rather than an overly complicated AAA-style solution.
Thank you very much for your help!