Attachment:
x1.jpg [ 110.89 KiB | Viewed 27559 times ]
This is bathing suit for Saiko. It include state files to start in poses STAND SIT KNEEL.
To use unzip into pack and edit init.dat for Saiko. For dungeon: pack_dungeon\init\stories\dungeon\chars\saiko\init.dat
Add this with other cloth_item entry.
Code:
cloth_item[3] {
name = "BathingSuit";
file_name = "scenes/character6/BathingSuitShape.obj";
}
Add this with other cloth_elem entry.
Code:
cloth_elem[+] {
cloth_type = BATHING_SUIT;
pose_type = STAND;
pose_id = 0;
show_glasses = true;
show_shoes = false;
items[0] {
item = 3;
state = "state/saiko/bathingSuitStand_0.dat";
}
}
cloth_elem[+] {
cloth_type = BATHING_SUIT;
pose_type = SIT;
pose_id = 0;
show_glasses = true;
show_shoes = false;
items[0] {
item = 3;
state = "state/saiko/bathingSuitSit_0.dat";
}
}
cloth_elem[+] {
cloth_type = BATHING_SUIT;
pose_type = KNEEL;
pose_id = 0;
show_glasses = true;
show_shoes = false;
items[0] {
item = 3;
state = "state/saiko/bathingSuitKneel_0.dat";
}
}
Set cloth_type in code or change in pose section of init.dat from CASUAL to BATHING_SUIT.