Bastep opened this issue on Nov 07, 2023 ยท 15 posts
JustBeCause posted Tue, 07 November 2023 at 1:32 PM
I assume that you used the built in Export morph option in Poser ?! There are quiet some different way's to do the Inj and Rem files, so assuming you made a Pmd Inject witch would be how poser 11-up saves internally the costume morphs then you will or can build the rem file using Notepad ++ you will have to open the Inj script and alter it a little.
Alternatives would be using the D3D Binary Morph app's or Poser tools MorphInj , there are several older apps that write the appropriate Inj Rem files but as sail they are quiet old and most are probably not sold any longer, as for new ones i doubt that there are any.
I will try to make it as simple as possible .... your Inj script should look somehow like this
{
version
{
number ??
}
injectPMDFileMorphs :Runtime:Geometries:!! AAA:Bend FIX.pmd
createFullBodyMorph BEND BASE
createFullBodyMorph closebutt
createFullBodyMorph BEND FAT
createFullBodyMorph inflate
createFullBodyMorph BEND SIZE1
createFullBodyMorph BEND SIZE2
}
Now you wish having a remove script for the Pmd Inj you made then it should be looking like this .... ( As far for this example )
{
version
{
number ??
}
removePMDFileMorphs :Runtime:Geometries:!! AAA:Bend FIX.pmd
removeFullBodyMorph BEND BASE
removeFullBodyMorph closebutt
removeFullBodyMorph BEND FAT
removeFullBodyMorph inflate
removeFullBodyMorph BEND SIZE1
removeFullBodyMorph BEND SIZE2
}