Corrected initialization values for the chroma key node when it is created.

This commit is contained in:
Robert Holcomb
2007-01-14 03:52:55 +00:00
parent 4d56baa8da
commit 8903169218

View File

@@ -868,21 +868,21 @@ bNode *nodeAddNodeType(bNodeTree *ntree, int type, bNodeTree *ngroup)
else if(type==CMP_NODE_COLOR_SPILL){
NodeChroma *c= MEM_callocN(sizeof(NodeChroma), "node chroma");
node->storage=c;
c->t1= 30.0f;
c->t2= 10.0f;
c->t3= 0.0f;
c->fsize= 0.0f;
c->fstrength= 1.0f;
node->custom1= 1; /* red channel */
}
else if(type==CMP_NODE_CHROMA){
NodeChroma *c= MEM_callocN(sizeof(NodeChroma), "node chroma");
node->storage= c;
c->t1= 0.0f;
c->t2= 0.0f;
c->t3= 0.0f;
c->fsize= 0.0f;
c->fstrength= 0.0f;
node->custom1= 2; /* green channel */
}
else if(type==CMP_NODE_CHROMA){
NodeChroma *c= MEM_callocN(sizeof(NodeChroma), "node chroma");
node->storage= c;
c->t1= 30.0f;
c->t2= 10.0f;
c->t3= 0.0f;
c->fsize= 0.0f;
c->fstrength= 1.0f;
}
else if(type==CMP_NODE_CHANNEL_MATTE){
NodeChroma *c= MEM_callocN(sizeof(NodeChroma), "node chroma");