コード例 #1
0
 public DNAColorModifier(DNAColorModifier other)
 {
     R = new DNAColorComponent(other.R);
     G = new DNAColorComponent(other.G);
     B = new DNAColorComponent(other.B);
     A = new DNAColorComponent(other.A);
 }
コード例 #2
0
 public DNAColorComponent(DNAColorComponent other)
 {
     enable         = other.enable;
     adjustmentType = other.adjustmentType;
     useDNAValue    = other.useDNAValue;
     value          = other.value;
     adjustValue    = other.adjustValue;
     multiplier     = other.multiplier;
 }