Forum: Poser - OFFICIAL


Subject: How do you build an REM injection?

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

}

If you observe carefully the create needs to be replaced with Remove as well the Inject.
This is a simple example if the Morph is build in the root of the parameter dials, if you have placed your Morph in a subcategory it might look a little different and more complex but basically you just need to remove the one morph you added the way I understand. the sample consists of 6 morphs.

Make a copy of your Inj file and rename it Rem open both in Notepad++ search for create replace with remove on top replace the inject with remove and save ... then give it a try in poser if it does not works well.