pjz99 opened this issue on Oct 19, 2007 ยท 8 posts
lesbentley posted Fri, 19 October 2007 at 10:06 AM
Glad to be of service.
From the above postes it should be evident how to write a MOR (morph dial) pose. For a pp2 that only uses one geometry, in P5 or up, you could use 'actor $CURRENT' something like this:
{
version
{
number 6
}
{
channels
{
targetGeom Morph-01
{
keys
{
k 0 1.000
}
}
targetGeom Morph-02
{
keys
{
k 0 0.500
}
}
}
}
}
If it needs to work in P4, or if there are multiple parts in the pp2, you will have to use this type of syntax: {
version
{
number 6
}
box_1
{
channels
{
targetGeom Morph-01
{
keys
{
k 0 1.000
}
}
}
}
box_2
{
channels
{
targetGeom Morph-01
{
keys
{
k 0 0.500
}
}
}
}
}