How to Put Splatoon 2 Clothing on Splatoon 3 Player Models (2024)

Jasper7438

How to Put Splatoon 2 Clothing on Splatoon 3 Player Models (1)


Jasperkins
How to Put Splatoon 2 Clothing on Splatoon 3 Player Models (2)How to Put Splatoon 2 Clothing on Splatoon 3 Player Models (3)How to Put Splatoon 2 Clothing on Splatoon 3 Player Models (4)
How to Put Splatoon 2 Clothing on Splatoon 3 Player Models (5)

Posts: 96
Threads: 4
Joined: Jan 2019

How to Put Splatoon 2 Clothing on Splatoon 3 Player Models (7)

How to Put Splatoon 2 Clothing on Splatoon 3 Player Models (8)

How to Put Splatoon 2 Clothing on Splatoon 3 Player Models (9)


#1

10-31-2022, 03:29 AM (This post was last modified: 10-08-2023, 01:01 PM by Jasper7438.)

I'm sorry if this post is in the wrong section, if there is a better section for this type of post, please tell me!

Trying to put on Splatoon 2 clothing on Splatoon 3 character models doesn't work automatically because they changed the bone names / # of bones between games. Here is how you can do it!

The process involves renaming all of the S2 vertex groups to match the S3 bone names + combining vertex groups when needed.

Note that the S2/S3 player models havedifferent bone placement which can make the S2 clothes deform weirdlywith the S3 armature. To fix that, you can manually move the S3 bones in edit mode to match the S2 bone placement. Do thisbefore moving on to the next steps.


First, import the S2 clothing that you want to attach to a S3 player model. Position it where you want it on the player model and scale it to fit. Once you are happy with the scale and placement of the clothing, press CTRL+A on the clothing to apply transforms. DO NOT DELETE THE ARMATURE!

Do not worry about clipping too much, to make the clipping parts invisible you can use the gear alpha masks provided in the S3 player model downloador make your own.

How to Put Splatoon 2 Clothing on Splatoon 3 Player Models (10)


Second, you have to combine some bone weights since S2 player armatures have more bones than S3 player armatures, I combine the Chest and Spine2 vertex groups and the Crotch vertex groups with their corresponding Leg1 vertex groups using Vertex Weight Mix modifiers. Your clothing model may not contain all of these bones. After combining the weights, the unneeded vertex groups should be removed.

To use the vertex weight mix modifier:

  1. Select the clothing model
  2. Open the modifier tab
  3. Add a "Vertex Weight Mix Modifier" [you may may need up to three of these]
  4. Set the "A" group as the vertex group being added to, and the "B" group as the vertex group that will be removed
  5. Set the "Vertex Set" as "All" and the "Mix Mode" to "Add"

How to Put Splatoon 2 Clothing on Splatoon 3 Player Models (11)

Apply the modifiers then remove the unneeded vertex groups.

How to Put Splatoon 2 Clothing on Splatoon 3 Player Models (12)


Third, you need to rename all of the Splatoon 2 vertex group names to the Splatoon 3 vertex group names.

I have edited a script I found online to make the renaming bones part easy. The script is included below.

Code:

## This script renames Splatoon clothing model bone names/vertex groups to match those of Splatoon 3 clothing models.
## To use this script, select the armature of a S2 clothing model, then run the script.
## This script is based on this script: https://blender.stackexchange.com/questions/69505/renaming-bones-with-python.

import bpy

def rename_bones():

dict = {


'root': 'Root',

'head': 'Head',

'neck': 'Neck',

'ear_L': 'Ear_L', 'ear_R': 'Ear_R',

## Merge Chest with Spine2 vertex group, then remove Chest vertex group

'spine2': 'Spine_3',

'spine1': 'Spine_2',

'hip': 'Waist',

'joint_root': 'Spine_1',


'thumb_L': 'Finger_A_1_L', 'thumb_R': 'Finger_A_1_R',

'fingerA1_L': 'Finger_B_1_L', 'fingerA1_R': 'Finger_B_1_R',

'fingerA2_L': 'Finger_B_2_L', 'fingerA2_R': 'Finger_B_2_R',

'fingerB1_L': 'Finger_D_1_L', 'fingerB1_R': 'Finger_D_1_R',

'fingerB2_L': 'Finger_D_2_L', 'fingerB2_R': 'Finger_D_2_R',

'hand_L': 'Wrist_L', 'hand_R': 'Wrist_R',

'arm2sub_L': 'Wrist_Assist_L', 'arm2sub_R': 'Wrist_Assist_R',

'arm2_L': 'Arm_2_L', 'arm2_R': 'Arm_2_R',

'arm1sub_L': 'Arm_Assist_L', 'arm1sub_R': 'Arm_Assist_R',

'arm1_L': 'Arm_1_L', 'arm1_R': 'Arm_1_R',

'shoulder_L': 'Clavicle_L', 'shoulder_R': 'Clavicle_R',


## Merge Crotch vertex groups with respective Leg1 vertex groups, then remove Crotch vertex groups

'leg1_L': 'Leg_1_L', 'leg1_R': 'Leg_1_R',

'leg1sub_L': 'Leg_Assist_L', 'leg1sub_R': 'Leg_Assist_R',

'leg2_L': 'Leg_2_L', 'leg2_R': 'Leg_2_R',

'leg2sub_L': 'Ankle_Assist_L', 'leg2sub_R': 'Ankle_Assist_R',

'foot_L': 'Ankle_L', 'foot_R': 'Ankle_R',

'toe_L': 'Toe_L', 'toe_R': 'Toe_R',

}

for b in bpy.context.object.data.bones:
if b.name in dict.keys():
b.name = dict[b.name]

rename_bones()

To run the script:

  1. Open the scripting workspace
  2. Press new, then paste the above script
  3. Click run
  4. This should automatically rename the bones and their corresponding vertex groups to their S3 equivalents.

Note: Only run scripts that you trust!

How to Put Splatoon 2 Clothing on Splatoon 3 Player Models (13)

How to Put Splatoon 2 Clothing on Splatoon 3 Player Models (14)

You should now be able to do the steps I have explained here to connectthe S2 clothes to the S3 player model: https://www.vg-resource.com/thread-40995.html[How to put clothes/hair models on Splatoon 2/3 player models in Blender].

In the end, the clothes may look somewhat strange or deform weirdly, there is only so much you can do about that without extensive editing. After all, the clothing made for S2 player models, not S3 player models.

I hope that helps you!

~ Jasper

Attached FilesThumbnail(s)

Hey, I'm Jasper! I am an avid model ripper, I also like Splatoon and Vocaloid.

Currently ripping from:N/A

Reply

Thanked by:

BlueDJ

How to Put Splatoon 2 Clothing on Splatoon 3 Player Models (20)


Junior Member
How to Put Splatoon 2 Clothing on Splatoon 3 Player Models (21)

Posts: 1
Threads: 0
Joined: Oct 2022


#2

02-19-2023, 02:27 PM

Is there also a method for headgear?

Reply

Thanked by:

#3

02-26-2023, 03:45 AM

How to Put Splatoon 2 Headgear on Splatoon 3 Player Models

1. Import Splatoon 2 headgear model.

2. Set the headgear armature's scale to "1.0".

3. Change the rotation of the headgear armature's "Root" bone to face the same direction as the Splatoon 3 Player's armature's "Head" bone. The headgear armature's "Root" bone roll will also have to be set to 90°.

4. Add a "Copy Transforms" bone constraint to the headgear armature's "Root" bone, "Target" should be set to the Splatoon 3 player armature and "Bone" should be set to theSplatoon 3 player armature's "Head" bone.

5. Select the headgear mesh and scale/position it to your content.

6. Once completed, apply transforms for the headgear mesh and armature.

Video Tutorial Version :https://drive.google.com/file/d/1cvrq1k_RRwxpGPjVABsO7TlC3Wtsj8kE/view?usp=sharing

Hey, I'm Jasper! I am an avid model ripper, I also like Splatoon and Vocaloid.

Currently ripping from:N/A

Reply

Thanked by: toonsplats

WNN

How to Put Splatoon 2 Clothing on Splatoon 3 Player Models (32)


Junior Member
How to Put Splatoon 2 Clothing on Splatoon 3 Player Models (33)

Posts: 1
Threads: 0
Joined: Sep 2020


#4

04-23-2023, 02:50 PM

I've been trying to place Splatoon 2 shoes on a Splatoon 3 model but with no success. Do you know a method to fix this? Thank you!

Reply

Thanked by:

nathan240535

How to Put Splatoon 2 Clothing on Splatoon 3 Player Models (35)


Junior Member
How to Put Splatoon 2 Clothing on Splatoon 3 Player Models (36)

Posts: 1
Threads: 0
Joined: Jun 2024


#5

06-16-2024, 08:20 AM

(10-31-2022, 03:29 AM)Jasper7438 Wrote: I'm sorry if this post is in the wrong section, if there is a better section for this type of post, please tell me!

Trying to put on Splatoon 2 clothing on Splatoon 3 character models doesn't work automatically because they changed the bone names / # of bones between games. Here is how you can do it!

The process involves renaming all of the S2 vertex groups to match the S3 bone names + combining vertex groups when needed.

Note that the S2/S3 player models havedifferent bone placement which can make the S2 clothes deform weirdlywith the S3 armature. To fix that, you can manually move the S3 bones in edit mode to match the S2 bone placement. Do thisbefore moving on to the next steps.


First, import the S2 clothing that you want to attach to a S3 player model. Position it where you want it on the player model and scale it to fit. Once you are happy with the scale and placement of the clothing, press CTRL+A on the clothing to apply transforms. DO NOT DELETE THE ARMATURE!

Do not worry about clipping too much, to make the clipping parts invisible you can use the gear alpha masks provided in the S3 player model downloador make your own.

How to Put Splatoon 2 Clothing on Splatoon 3 Player Models (38)


Second, you have to combine some bone weights since S2 player armatures have more bones than S3 player armatures, I combine the Chest and Spine2 vertex groups and the Crotch vertex groups with their corresponding Leg1 vertex groups using Vertex Weight Mix modifiers. Your clothing model may not contain all of these bones. After combining the weights, the unneeded vertex groups should be removed.

To use the vertex weight mix modifier:

  1. Select the clothing model
  2. Open the modifier tab
  3. Add a "Vertex Weight Mix Modifier" [you may may need up to three of these]
  4. Set the "A" group as the vertex group being added to, and the "B" group as the vertex group that will be removed
  5. Set the "Vertex Set" as "All" and the "Mix Mode" to "Add"

How to Put Splatoon 2 Clothing on Splatoon 3 Player Models (39)

Apply the modifiers then remove the unneeded vertex groups.

How to Put Splatoon 2 Clothing on Splatoon 3 Player Models (40)


Third, you need to rename all of the Splatoon 2 vertex group names to the Splatoon 3 vertex group names.

I have edited a script I found online to make the renaming bones part easy. The script is included below.

Code:

## This script renames Splatoon clothing model bone names/vertex groups to match those of Splatoon 3 clothing models.
## To use this script, select the armature of a S2 clothing model, then run the script.
## This script is based on this script: https://blender.stackexchange.com/questions/69505/renaming-bones-with-python.

import bpy

def rename_bones():

dict = {


'root': 'Root',

'head': 'Head',

'neck': 'Neck',

'ear_L': 'Ear_L', 'ear_R': 'Ear_R',

## Merge Chest with Spine2 vertex group, then remove Chest vertex group

'spine2': 'Spine_3',

'spine1': 'Spine_2',

'hip': 'Waist',

'joint_root': 'Spine_1',


'thumb_L': 'Finger_A_1_L', 'thumb_R': 'Finger_A_1_R',

'fingerA1_L': 'Finger_B_1_L', 'fingerA1_R': 'Finger_B_1_R',

'fingerA2_L': 'Finger_B_2_L', 'fingerA2_R': 'Finger_B_2_R',

'fingerB1_L': 'Finger_D_1_L', 'fingerB1_R': 'Finger_D_1_R',

'fingerB2_L': 'Finger_D_2_L', 'fingerB2_R': 'Finger_D_2_R',

'hand_L': 'Wrist_L', 'hand_R': 'Wrist_R',

'arm2sub_L': 'Wrist_Assist_L', 'arm2sub_R': 'Wrist_Assist_R',

'arm2_L': 'Arm_2_L', 'arm2_R': 'Arm_2_R',

'arm1sub_L': 'Arm_Assist_L', 'arm1sub_R': 'Arm_Assist_R',

'arm1_L': 'Arm_1_L', 'arm1_R': 'Arm_1_R',

'shoulder_L': 'Clavicle_L', 'shoulder_R': 'Clavicle_R',


## Merge Crotch vertex groups with respective Leg1 vertex groups, then remove Crotch vertex groups

'leg1_L': 'Leg_1_L', 'leg1_R': 'Leg_1_R',

'leg1sub_L': 'Leg_Assist_L', 'leg1sub_R': 'Leg_Assist_R',

'leg2_L': 'Leg_2_L', 'leg2_R': 'Leg_2_R',

'leg2sub_L': 'Ankle_Assist_L', 'leg2sub_R': 'Ankle_Assist_R',

'foot_L': 'Ankle_L', 'foot_R': 'Ankle_R',

'toe_L': 'Toe_L', 'toe_R': 'Toe_R',

}

for b in bpy.context.object.data.bones:
if b.name in dict.keys():
b.name = dict[b.name]

rename_bones()


To run the script:
  1. Open the scripting workspace
  2. Press new, then paste the above script
  3. Click run
  4. This should automatically rename the bones and their corresponding vertex groups to their S3 equivalents.

Note: Only run scripts that you trust!

How to Put Splatoon 2 Clothing on Splatoon 3 Player Models (41)

How to Put Splatoon 2 Clothing on Splatoon 3 Player Models (42)


You should now be able to do the steps I have explained here to connectthe S2 clothes to the S3 player model: https://www.vg-resource.com/thread-40995.html[How to put clothes/hair models on Splatoon 2/3 player models in Blender].

In the end, the clothes may look somewhat strange or deform weirdly, there is only so much you can do about that without extensive editing. After all, the clothing made for S2 player models, not S3 player models.

I hope that helps you!

~ Jasper

Do you know is there video how to do it

Reply

Thanked by:

How to Put Splatoon 2 Clothing on Splatoon 3 Player Models (2024)
Top Articles
Latest Posts
Article information

Author: Mr. See Jast

Last Updated:

Views: 6186

Rating: 4.4 / 5 (55 voted)

Reviews: 86% of readers found this page helpful

Author information

Name: Mr. See Jast

Birthday: 1999-07-30

Address: 8409 Megan Mountain, New Mathew, MT 44997-8193

Phone: +5023589614038

Job: Chief Executive

Hobby: Leather crafting, Flag Football, Candle making, Flying, Poi, Gunsmithing, Swimming

Introduction: My name is Mr. See Jast, I am a open, jolly, gorgeous, courageous, inexpensive, friendly, homely person who loves writing and wants to share my knowledge and understanding with you.