Example #1
0
 public override Property GetSubpropValue(Property baseProp, string subpropName)
 {
     CondLength val = baseProp.GetCondLength();
     return val.GetComponent(subpropName);
 }
Example #2
0
 protected override Property SetSubprop(Property baseProp, string subpropName, Property subProp)
 {
     CondLength val = baseProp.GetCondLength();
     val.SetComponent(subpropName, subProp, false);
     return baseProp;
 }