public DNAColorModifier(DNAColorModifier other)
 {
     R = new DNAColorComponent(other.R);
     G = new DNAColorComponent(other.G);
     B = new DNAColorComponent(other.B);
     A = new DNAColorComponent(other.A);
 }
 public DNAColorSet(DNAColorSet other)
 {
     mode           = other.mode;
     targetName     = other.targetName;
     textureChannel = other.textureChannel;
     colorModifier  = new DNAColorModifier(other.colorModifier);
     modifyingDNA   = new DNAEvaluatorList(other.modifyingDNA);
 }