midnight_stories opened this issue on Feb 23, 2011 · 9 posts
midnight_stories posted Wed, 23 February 2011 at 5:11 AM
OK here’s a curly one for you CR2 geniuses !
What I’m trying to do is combine 2 morphs with the one dial.
It’s for a winged figure where a positive value will use a Wing-Bend-Up
And a Negative value will use a Wing-Bend-Down. I also figure you need to
Put one a zero limit on the negative value of each individual morph. Don’t worry I haven’t zeroed out the figure that’s why it’s Figure 5. Here the code below what am I doing wrong.
groupNode Vertex Morphs
{
parmNode Wings-Flap
parmNode Wing-Bend-Up
parmNode Wing-Bend-Down
parmNode Tail-Curl-Front
parmNode Tail-Curl-Back
parmNode Tail-Bend-Up
parmNode Tail-Bend-Down
parmNode Feathers-Grow
parmNode Feathers-Curl-Out
parmNode Feathers-Blend-Up
parmNode Feathers-Blend-Down
}
groupNode Trans Morphs
{
parmNode Tail-Front-Back
parmNode Tips-Front-Back
parmNode Wings-Front-Back
parmNode Small-Blades-Front-Back
}
}
valueParm Wings-Flap
{
name Wings-Flap
initValue 0
hidden 0
forceLimits 0
min -1
max 1
trackingScale .02
keys
{
static 0
k 0 0
}
interpStyleLocked 0
valueOpDeltaAdd // Identifies the following as the controller
Figure 5 // Control Figure
BODY:5 // Control Group
Wing-Bend-Up // Control Channel
deltaAddDelta 1.0 // Control Ratio
valueOpDeltaAdd // Identifies the following as the controller
Figure 5 // Control Figure
BODY:5 // Control Group
Wing-Bend-Down // Control Channel
deltaAddDelta -1.0 // Control Ratio
}
I guess I don't really expect any answers but it's worth a shot.