Forum: Poser - OFFICIAL


Subject: -Inj. & -rem. files question

NemesisT opened this issue on Jan 21, 2007 ยท 10 posts


lesbentley posted Sun, 21 January 2007 at 11:43 AM

Attached Link: Morphography Utilities Page

Above is a link to a place where you can download Morph Manager 4

You can make a REM pose in a text editor. The simplest form of REM pose just uses 'indexes 0' to remove the deltas from the specified channel(s), eg: { version { number 3.00 }

actor leftEye
        {
        channels
                {
                targetGeom PBMCC_01
                        {
                        
                        }
                }
        }
figure
        {
        }
}

'indexes 0' does the work, most of the rest of the file is just there to tell Poser where to apply 'indexes 0'. I like my REM files to do more then just delete the deltas, I like to set the dial name to "-", hide the channel, and zero the dial. Here is an example of the syntax I use. This pz2 REMs two morph channels in the head and one in the chest: { //"MyREM.pz2" version { number 3.00 }

actor head
        {
        channels
                {
                targetGeom PBMCC_01
                        {
                        
                        }
                targetGeom PBMCC_02
                        {
                        
                        }
                }
        }
actor chest
        {
        channels
                {
                targetGeom PBMCC_01
                        {
                        
                        }
                }
        }
figure
        {
        }
}