Phoenix Garden
Tutorial: How to add custom morphs to body addons - Printable Version

+- Phoenix Garden (https://roysforum.com)
+-- Forum: VX game and content (some content are compatible with V7.5) (https://roysforum.com/forum-4.html)
+--- Forum: Tutorials/Utilities/Software/Audio (https://roysforum.com/forum-105.html)
+--- Thread: Tutorial: How to add custom morphs to body addons (/thread-582.html)



Tutorial: How to add custom morphs to body addons - xxpy02 - 11-15-2023



Requirements
  • [To see links please log-in or register here]


Script file path

Quote:{ADDON}\Scripts\Shared\Person\CcPersonDefaultBody_{ADDON}.bs

Script template for custom customizer settings

Quote:CustomParameter :Parameter_CustomMorph1 . {
    .ParamID I32(0);
    .CategoryID :Cat_Body;
    .Enable :EnableFemale;
    .ParamType CustomParamType .Slider;
    .ParamName "CustomMorph1";
    .ParamDescription "Custom Morph 1:";
    .IconID I32(4);
    .SliderDefault F32(0);
    .PoseBlendNameArray [ "Person" + :person + "Body:custom_morph_1"];
    .PoseBlendMulAddArray [ ( F32(1) , F32(0) )];
    .PoseBlendClampArray [ ( F32(0) , F32(1) ) ];
    .LookAt "Person" + :person + "Anim:Model01:root";
    .LookAtID :LookAtNone;
};



RE: Tutorial: How to add custom morphs to body addons - Richter Belmont - 11-16-2023

(11-15-2023, 06:09 PM)xxpy02 Wrote:

[To see links please log-in or register here]



Requirements
  • [To see links please log-in or register here]


Script file path

Quote:{ADDON}\Scripts\Shared\Person\CcPersonDefaultBody_{ADDON}.bs

Script template for custom customizer settings

Quote:CustomParameter :Parameter_CustomMorph1 . {
    .ParamID I32(0);
    .CategoryID :Cat_Body;
    .Enable :EnableFemale;
    .ParamType CustomParamType .Slider;
    .ParamName "CustomMorph1";
    .ParamDescription "Custom Morph 1:";
    .IconID I32(4);
    .SliderDefault F32(0);
    .PoseBlendNameArray [ "Person" + :person + "Body:custom_morph_1"];
    .PoseBlendMulAddArray [ ( F32(1) , F32(0) )];
    .PoseBlendClampArray [ ( F32(0) , F32(1) ) ];
    .LookAt "Person" + :person + "Anim:Model01:root";
    .LookAtID :LookAtNone;
};


This will be really useful for the community, thank you so much, in the name of all TEAM MEMBERS! ^^
Good work, we apreciate this a lot!

[To see links please log-in or register here]




RE: Tutorial: How to add custom morphs to body addons - xxpy02 - 11-16-2023

(11-16-2023, 01:53 PM)Richter Belmont Wrote:

[To see links please log-in or register here]

This will be really useful for the community, thank you so much, in the name of all TEAM MEMBERS! ^^
Good work, we apreciate this a lot!

No worries, I am glad I can be of help. I really want TK17 community to grow and see folks creating/sharing amazing content.
Any feedback on how the tutorials can be improved is welcomed, be it an enhancement suggestion or easier/better ways to achieve the same results.


RE: Tutorial: How to add custom morphs to body addons - daspex - 11-24-2023

(11-16-2023, 01:59 PM)xxpy02 Wrote:

[To see links please log-in or register here]

(11-16-2023, 01:53 PM)Richter Belmont Wrote:

[To see links please log-in or register here]

This will be really useful for the community, thank you so much, in the name of all TEAM MEMBERS! ^^
Good work, we apreciate this a lot!

No worries, I am glad I can be of help. I really want TK17 community to grow and see folks creating/sharing amazing content.
Any feedback on how the tutorials can be improved is welcomed, be it an enhancement suggestion or easier/better ways to achieve the same results.

First attempt to mod a female body failed.(Invalid token)
Maybe I did something wrong.


RE: Tutorial: How to add custom morphs to body addons - xxpy02 - 11-25-2023

(11-24-2023, 11:26 PM)Daspex Wrote:

[To see links please log-in or register here]

First attempt to mod a female body failed.(Invalid token)
Maybe I did something wrong.

Can you share the BS file you tried to import? I'll try and find out what went wrong with it.


RE: Tutorial: How to add custom morphs to body addons - daspex - 11-25-2023

Hi,

I think it is on my side,last night I noticed that something is wrong with
my game or my RAM.Im checking my system while Im writing this message.
I'll be back later and report what I figured out.Thanks for the fast respond.


RE: Tutorial: How to add custom morphs to body addons - Shoko Sugimoto - 12-11-2023

Thanks for this great Addon utility dear @xxpy02!
I tried the process of adding a custom morph to a body mod in TK17 v7.5 but it didn't show up in the game.
I used the exact process in the video.


RE: Tutorial: How to add custom morphs to body addons - xxpy02 - 12-11-2023

(12-11-2023, 03:02 AM)Shoko Sugimoto Wrote:

[To see links please log-in or register here]

Thanks for this great Addon utility dear @xxpy02!
I tried the process of adding a custom morph to a body mod in TK17 v7.5 but it didn't show up in the game.
I used the exact process in the video.

You have to make sure to not use any spaces or dots in the file name or the game won't read the custom morphs. That's why I usually name it "FitFemme" and not "Fit Femme" or "Fit.Femme", etc.
If that doesn't work, share your {ADDON}\Scripts\Shared\Person\CcPersonDefaultBody_{ADDON}.bs file and I'll take a look.